1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
<?php
/**
* The class provides methods for the realization of messages and replies.
*
* @author Philipp Kiszka <info@o-dyn.de>
* @name message
* @version 1.0
* @package Collabtive
* @link http://www.o-dyn.de
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License v3 or later
*/
class message {
public $mylog;
/**
* Konstruktor
* Initialisiert den Eventlog
*/
function __construct()
{
$this->mylog = new mylog;
}
/**
* Creates a new message or a reply to a message
*
* @param int $project Project ID the message belongs to
* @param string $title Title/Subject of the message
* @param string $text Textbody of the message
* @param string $tags Tags for the message
* @param int $user User ID of the user adding the message
* @param string $username Name of the user adding the message
* @param int $replyto ID of the message this message is replying to. Standardmessage: 0
* @return bool
*/
function add($project, $title, $text, $user, $username, $replyto, $milestone)
{
global $conn;
$insStmt = $conn->prepare("INSERT INTO messages (`project`,`title`,`text`,`posted`,`user`,`username`,`replyto`,`milestone`) VALUES (?, ?, ?, ?, ?, ?, ?, ? )");
$ins = $insStmt->execute(array((int) $project, $title, $text, time(), (int) $user, $username, (int) $replyto, (int) $milestone));
$insid = $conn->lastInsertId();
if ($ins) {
$this->mylog->add($title, 'message', 1, $project);
return $insid;
} else {
return false;
}
}
/**
* Edits a message
*
* @param int $id Eindeutige Nummer der Nachricht
* @param string $title Titel der Nachricht
* @param string $text Text der Nachricht
* @param string $tags Tags for the message
* @return bool
*/
function edit($id, $title, $text)
{
global $conn;
$updStmt = $conn->prepare("UPDATE `messages` SET `title`=?, `text`=? WHERE ID = ?");
$upd = $updStmt->execute(array($title, $text, (int) $id));
if ($upd) {
$qry = $conn->query("SELECT project FROM messages WHERE ID = $id");
if ($qry) {
$proj = $qry->fetch();
$proj = $proj[0];
}
$this->mylog->add($title, 'message', 2, $proj);
return true;
} else {
return false;
}
}
/**
* Deletes a message and all dependent messages
*
* @param int $id Eindeutige Nummer der Nachricht
* @return bool
*/
function del($id)
{
global $conn;
$id = (int) $id;
$qry = $conn->query("SELECT title,project FROM messages WHERE ID = $id");
if ($qry) {
$msg = $qry->fetch();
}
$del = $conn->query("DELETE FROM messages WHERE ID = $id LIMIT 1");
$del2 = $conn->query("DELETE FROM messages WHERE replyto = $id");
$del3 = $conn->query("DELETE FROM files_attached WHERE message = $id");
if ($del) {
$this->mylog->add($msg[0], 'message', 3, $msg[1]);
return true;
} else {
return false;
}
}
/**
* Return a message including its answers
*
* @param int $id Eindeutige Nummer der Nachricht
* @return array $message Eigenschaften der Nachricht
*/
function getMessage($id)
{
global $conn;
$id = (int) $id;
$qry = $conn->query("SELECT * FROM messages WHERE ID = $id LIMIT 1");
if ($qry) {
$message = $qry->fetch();
}
$milesobj = new milestone();
if (!empty($message)) {
$qry = $conn->query("SELECT COUNT(*) FROM messages WHERE replyto = $id");
if ($qry) {
$replies = $qry->fetch();
$replies = $replies[0];
}
$user = new user();
$avatar = $user->getAvatar($message["user"]);
$qry = $conn->query("SELECT gender FROM user WHERE ID = $message[user]");
if ($qry) {
$ds = $qry->fetch();
$gender = $ds[0];
$message["gender"] = $gender;
}
$qry = $conn->query("SELECT name FROM projekte WHERE ID = $message[project]");
if ($qry) {
$project = $qry->fetch();
$message["pname"] = $project[0];
}
$posted = date(CL_DATEFORMAT . " - H:i", $message["posted"]);
$message["postdate"] = $posted;
$message["endstring"] = $posted;
$message["replies"] = $replies;
$message["avatar"] = $avatar;
$message["title"] = stripslashes($message["title"]);
$message["text"] = stripslashes($message["text"]);
$message["username"] = stripslashes($message["username"]);
$attached = $this->getAttachedFiles($message["ID"]);
$message["files"] = $attached;
if ($message["milestone"] > 0) {
$miles = $milesobj->getMilestone($message["milestone"]);
} else {
$miles = array();
}
$message["milestones"] = $miles;
return $message;
} else {
return false;
}
}
/**
* Return all answers to a given message
*
* @param int $id Eindeutige Nummer der Nachricht
* @return array $replies Antworten zur Nachricht
*/
function getReplies($id)
{
global $conn;
$id = (int) $id;
$sel = $conn->query("SELECT ID FROM messages WHERE replyto = $id ORDER BY posted DESC");
$replies = array();
$milesobj = new milestone();
$user = new user();
while ($sel and $reply = $sel->fetch()) {
if (!empty($reply)) {
$thereply = $this->getMessage($reply["ID"]);
array_push($replies, $thereply);
}
}
if (!empty($replies)) {
return $replies;
} else {
return false;
}
}
/**
* Returns the most recent messages of a user, from the projects he is assigned to
*
* @param int $limit Limits the number of messages to return.
* @return array $message Eigenschaften der Nachricht
*/
function getLatestMessages($limit = 25)
{
global $conn;
$limit = (int) $limit;
// Get the id of the logged in user and get his projects
$userid = $_SESSION["userid"];
$sel3 = $conn->query("SELECT projekt FROM projekte_assigned WHERE user = $userid");
// Assemble a string of project IDs the user belongs to for IN() query.
$prstring = "";
while ($sel3 and $upro = $sel3->fetch()) {
$projekt = $upro[0];
$prstring .= $projekt . ",";
}
$prstring = substr($prstring, 0, strlen($prstring)-1);
if ($prstring) {
$sel1 = $conn->query("SELECT ID FROM messages WHERE project IN($prstring) ORDER BY posted DESC LIMIT $limit ");
$messages = array();
$milesobj = new milestone();
while ($sel1 and $message = $sel1->fetch()) {
$themessage = $this->getMessage($message["ID"]);
array_push($messages, $themessage);
}
}
if (!empty($messages)) {
return $messages;
} else {
return false;
}
}
/**
* Returns all messages belonging to a project (without answers)
*
* @param int $project Eindeutige Nummer des Projekts
* @return array $messages Nachrichten zum Projekt
*/
function getProjectMessages($project)
{
global $conn;
$project = (int) $project;
$messages = array();
$sel1 = $conn->query("SELECT ID FROM messages WHERE project = $project AND replyto = 0 ORDER BY posted DESC");
$milesobj = new milestone();
while ($sel1 and $message = $sel1->fetch()) {
$themessage = $this->getMessage($message["ID"]);
array_push($messages, $themessage);
}
if (!empty($messages)) {
return $messages;
} else {
return false;
}
}
/**
* Attach a file to a message
*
* @param int $fid ID of the file to be attached
* @param int $mid ID of the message where the file will be attached
* @param int $id optional param denoting the project ID where the file will be uploaded to (if so)
* @return bool
*/
function attachFile($fid, $mid, $id = 0)
{
global $conn;
$fid = (int) $fid;
$mid = (int) $mid;
$id = (int) $id;
$myfile = new datei();
// If a file ID is given, the given file will be attached
// If no file ID is given, the file will be uploaded to the project defined by $id and then attached
if ($fid > 0) {
$ins = $conn->query("INSERT INTO files_attached (ID,file,message) VALUES ('',$fid,$mid)");
} else {
$num = $_POST["numfiles"];
$chk = 0;
$insStmt = $conn->prepare("INSERT INTO files_attached (ID,file,message) VALUES ('',?,?)");
for($i = 1;$i <= $num;$i++) {
$fid = $myfile->upload("userfile$i", "files/" . CL_CONFIG . "/$id", $id);
$ins = $insStmt->execute(array($fid, $mid));
}
}
if ($ins) {
return true;
} else {
return false;
}
}
/**
* Get files attached to a message
*
* @param int $msg ID of the message
* @return array $files Attached files
*/
private function getAttachedFiles($msg)
{
global $conn;
$msg = (int) $msg;
$files = array();
$sel = $conn->query("SELECT file FROM files_attached WHERE message = $msg");
while ($sel and $file = $sel->fetch()) {
$sel2 = $conn->query("SELECT * FROM files WHERE ID = $file[0]");
$thisfile = array();
if ($sel2) {
$thisfile = $sel2->fetch();
$thisfile["type"] = str_replace("/", "-", $thisfile["type"]);
}
$set = new settings();
$settings = $set->getSettings();
// Construct the path to the MIME-type icon
$myfile = "./templates/" . $settings["template"] . "/theme/" . $settings["theme"] . "/images/files/" . $thisfile['type'] . ".png";
if (!file_exists($myfile)) {
$thisfile['type'] = "none";
}
// Determine if it is an image or text file or some other kind of file (required for lightbox)
if (stristr($thisfile['type'], "image")) {
$thisfile['imgfile'] = 1;
} elseif (stristr($thisfile['type'], "text")) {
$thisfile['imgfile'] = 2;
} else {
$thisfile['imgfile'] = 0;
}
array_push($files, $thisfile);
}
if (!empty($files)) {
return $files;
} else {
return false;
}
}
}
?>
|