5 define(
"IL_NOTE_PRIVATE", 1);
6 define(
"IL_NOTE_PUBLIC", 2);
8 define(
"IL_NOTE_UNLABELED", 0);
9 define(
"IL_NOTE_IMPORTANT", 1);
10 define(
"IL_NOTE_QUESTION", 2);
11 define(
"IL_NOTE_PRO", 3);
12 define(
"IL_NOTE_CONTRA", 4);
83 $this->db = $DIC->database();
85 $this->access = $DIC->access();
120 public function setObject($a_obj_type, $a_rep_obj_id, $a_obj_id = 0, $a_news_id = 0)
122 $this->rep_obj_id = $a_rep_obj_id;
123 $this->obj_id = $a_obj_id;
124 $this->obj_type = $a_obj_type;
125 $this->news_id = $a_news_id;
132 return array(
"rep_obj_id" => $this->rep_obj_id,
133 "obj_id" => $this->obj_id,
134 "obj_type" => $this->obj_type,
135 "news_id" => $this->news_id);
146 $this->type = $a_type;
166 $this->author = $a_user_id;
176 return $this->author;
186 $this->text = $a_text;
206 $this->subject = $a_subject;
216 return $this->subject;
226 $this->creation_date = $a_date;
236 return $this->creation_date;
246 $this->update_date = $a_date;
256 return $this->update_date;
267 return $this->label = $a_label;
288 $this->news_id = $a_val;
308 return $this->no_repository = !(bool) $a_value;
321 public function create($a_use_provided_creation_date =
false)
325 $cd = ($a_use_provided_creation_date)
329 $this->
id =
$ilDB->nextId(
"note");
331 $ilDB->insert(
"note", array(
332 "id" => array(
"integer", $this->
id),
333 "rep_obj_id" => array(
"integer", (
int) $this->rep_obj_id),
334 "obj_id" => array(
"integer", (
int) $this->obj_id),
335 "obj_type" => array(
"text", (
string) $this->obj_type),
336 "news_id" => array(
"integer", (
int) $this->news_id),
337 "type" => array(
"integer", (
int) $this->type),
338 "author" => array(
"integer", (
int) $this->author),
339 "note_text" => array(
"clob", (
string) $this->text),
340 "subject" => array(
"text", (
string) $this->subject),
341 "label" => array(
"integer", (
int) $this->label),
342 "creation_date" => array(
"timestamp", $cd),
343 "no_repository" => array(
"integer", $this->no_repository)
355 $ilDB->update(
"note", array(
356 "rep_obj_id" => array(
"integer", (
int) $this->rep_obj_id),
357 "obj_id" => array(
"integer", (
int) $this->obj_id),
358 "news_id" => array(
"integer", (
int) $this->news_id),
359 "obj_type" => array(
"text", (
string) $this->obj_type),
360 "type" => array(
"integer", (
int) $this->type),
361 "author" => array(
"integer", (
int) $this->author),
362 "note_text" => array(
"clob", (
string) $this->text),
363 "subject" => array(
"text", (
string) $this->subject),
364 "label" => array(
"integer", (
int) $this->label),
365 "update_date" => array(
"timestamp",
ilUtil::now()),
366 "no_repository" => array(
"integer", $this->no_repository)
368 "id" => array(
"integer", $this->
getId())
380 $q =
"SELECT * FROM note WHERE id = " .
381 $ilDB->quote((
int) $this->
getId(),
"integer");
382 $set =
$ilDB->query($q);
383 $note_rec =
$ilDB->fetchAssoc($set);
390 public function delete()
394 $q =
"DELETE FROM note WHERE id = " .
395 $ilDB->quote((
int) $this->
getId(),
"integer");
396 $ilDB->manipulate($q);
404 $this->
setId($a_note_rec[
"id"]);
406 $a_note_rec[
"obj_type"],
407 $a_note_rec[
"rep_obj_id"],
408 $a_note_rec[
"obj_id"],
409 $a_note_rec[
"news_id"]
411 $this->
setType($a_note_rec[
"type"]);
413 $this->
setText($a_note_rec[
"note_text"]);
415 $this->
setLabel($a_note_rec[
"label"]);
428 $ilDB = $DIC->database();
430 $q =
"SELECT * FROM note WHERE id = " .
431 $ilDB->quote((
int) $a_id,
"integer");
432 $set =
$ilDB->query($q);
433 $note_rec =
$ilDB->fetchAssoc($set);
435 return $note_rec[
"creation_date"];
445 $ilDB = $DIC->database();
447 $q =
"SELECT * FROM note WHERE id = " .
448 $ilDB->quote((
int) $a_id,
"integer");
449 $set =
$ilDB->query($q);
450 $note_rec =
$ilDB->fetchAssoc($set);
452 return $note_rec[
"update_date"];
466 $a_repository_mode =
true,
467 $a_sort_ascending =
false,
472 $ilDB = $DIC->database();
476 ?
" AND author = " .
$ilDB->quote((
int)
$ilUser->getId(),
"integer")
479 $sub_where = (!$a_incl_sub)
480 ?
" AND obj_id = " .
$ilDB->quote((
int) $a_obj_id,
"integer") .
481 " AND obj_type = " .
$ilDB->quote((
string) $a_obj_type,
"text")
485 " AND news_id = " .
$ilDB->quote((
int) $a_news_id,
"integer");
488 $sub_where .=
" AND no_repository = " .
$ilDB->quote(!$a_repository_mode,
"integer");
490 $q =
"SELECT * FROM note WHERE " .
491 " rep_obj_id = " .
$ilDB->quote((
int) $a_rep_obj_id,
"integer") .
493 " AND type = " .
$ilDB->quote((
int) $a_type,
"integer") .
496 " ORDER BY creation_date ";
498 $q .= ((bool) $a_sort_ascending) ?
"ASC" :
"DESC";
500 $set =
$ilDB->query($q);
502 while ($note_rec =
$ilDB->fetchAssoc($set)) {
503 if ($a_filter !=
"") {
504 if (!is_array($a_filter)) {
505 $a_filter = array($a_filter);
507 if (!in_array($note_rec[
"id"], $a_filter)) {
511 $cnt = count($notes);
512 $notes[$cnt] =
new ilNote();
513 $notes[$cnt]->setAllData($note_rec);
526 $a_sort_ascending =
false,
531 $ilDB = $DIC->database();
533 $sub_where = (!$a_incl_sub)
534 ?
" AND obj_id = " .
$ilDB->quote((
int) 0,
"integer") :
"";
536 if ($a_since !=
"") {
537 $sub_where .=
" AND creation_date > " .
$ilDB->quote($a_since,
"timestamp");
540 $sub_where .=
" AND no_repository = " .
$ilDB->quote(0,
"integer");
542 $q =
"SELECT * FROM note WHERE " .
543 " rep_obj_id = " .
$ilDB->quote((
int) $a_rep_obj_id,
"integer") .
545 " AND type = " .
$ilDB->quote((
int) $a_type,
"integer") .
546 " ORDER BY creation_date ";
548 $q .= ((bool) $a_sort_ascending) ?
"ASC" :
"DESC";
549 $set =
$ilDB->query($q);
551 while ($note_rec =
$ilDB->fetchAssoc($set)) {
552 $cnt = count($notes);
553 $notes[$cnt] =
new ilNote();
554 $notes[$cnt]->setAllData($note_rec);
566 $ilDB = $DIC->database();
569 $q =
"SELECT * FROM note WHERE " .
571 " AND author = " .
$ilDB->quote((
int)
$ilUser->getId(),
"integer") .
572 " AND (no_repository IS NULL OR no_repository < " .
$ilDB->quote(1,
"integer") .
")" .
573 " ORDER BY creation_date DESC";
576 $set =
$ilDB->query($q);
578 while ($note_rec =
$ilDB->fetchAssoc($set)) {
579 $cnt = count($notes);
580 $notes[$cnt] =
new ilNote();
581 $notes[$cnt]->setAllData($note_rec);
596 $ilDB = $DIC->database();
598 $tree = $DIC->repositoryTree();
601 $q =
"SELECT DISTINCT rep_obj_id FROM note WHERE " .
603 " AND author = " .
$ilDB->quote(
$ilUser->getId(),
"integer") .
604 " AND (no_repository IS NULL OR no_repository < " .
$ilDB->quote(1,
"integer") .
")" .
605 " ORDER BY rep_obj_id";
608 $set =
$ilDB->query($q);
610 while ($rep_rec =
$ilDB->fetchAssoc($set)) {
613 $reps[] = array(
"rep_obj_id" => $rep_rec[
"rep_obj_id"]);
618 $q =
"SELECT DISTINCT rep_obj_id FROM note WHERE " .
620 " AND author = " .
$ilDB->quote(
$ilUser->getId(),
"integer") .
621 " AND (no_repository IS NULL OR no_repository < " .
$ilDB->quote(1,
"integer") .
")" .
622 " ORDER BY rep_obj_id";
624 $set =
$ilDB->query($q);
626 while ($rep_rec =
$ilDB->fetchAssoc($set)) {
630 $reps[] = array(
"rep_obj_id" => $rep_rec[
"rep_obj_id"]);
637 $dis = $fav_rep->getFavouritesOfUser(
$ilUser->getId());
639 foreach ($dis as $di) {
640 $obj_ids[] = $di[
"obj_id"];
642 if (count($obj_ids) > 0) {
643 $q =
"SELECT DISTINCT rep_obj_id FROM note WHERE " .
644 $ilDB->in(
"rep_obj_id", $obj_ids,
false,
"integer") .
645 " AND (no_repository IS NULL OR no_repository < " .
$ilDB->quote(1,
"integer") .
")";
647 $set =
$ilDB->query($q);
648 while ($rec =
$ilDB->fetchAssoc($set)) {
651 foreach ($reps as $r) {
652 if ($r[
"rep_obj_id"] == $rec[
"rep_obj_id"]) {
659 $reps[] = array(
"rep_obj_id" => $rec[
"rep_obj_id"]);
669 foreach ($reps as $idx => $rep) {
670 $has_active_ref =
false;
675 $reps[$idx][
"ref_ids"] = array_values($ref_ids);
677 foreach ($ref_ids as $ref_id) {
678 if (!$tree->isDeleted($ref_id)) {
679 $has_active_ref =
true;
685 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
686 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceAccessHandler.php";
690 $reps[$idx][
"wsp_id"] = $node_id;
692 $has_active_ref =
true;
696 if (!$has_active_ref) {
716 $ilDB = $DIC->database();
718 $set =
$ilDB->queryF(
719 "SELECT count(DISTINCT author) cnt FROM note WHERE " .
720 "rep_obj_id = %s AND obj_id = %s AND obj_type = %s",
721 array(
"integer",
"integer",
"text"),
722 array((
int) $a_rep_obj_id, (
int) $a_obj_id, (
string) $a_type)
724 $rec =
$ilDB->fetchAssoc($set);
725 return (
int) $rec[
"cnt"];
738 $ilDB = $DIC->database();
741 $q =
"SELECT count(id) c, rep_obj_id, type FROM note WHERE " .
743 "author = " .
$ilDB->quote((
int)
$ilUser->getId(),
"integer") .
") OR " .
745 $ilDB->in(
"rep_obj_id", $a_rep_obj_ids,
false,
"integer");
747 if ($a_no_sub_objs) {
748 $q .=
" AND obj_id = " .
$ilDB->quote(0,
"integer");
751 $q .=
" GROUP BY rep_obj_id, type ";
754 $set =
$ilDB->query($q);
755 while ($rec =
$ilDB->fetchAssoc($set)) {
756 $cnt[$rec[
"rep_obj_id"]][$rec[
"type"]] = $rec[
"c"];
770 $a_sub_obj_id = null,
776 $ilDB = $DIC->database();
779 $q =
"SELECT count(id) c, rep_obj_id, type FROM note WHERE " .
781 "author = " .
$ilDB->quote((
int)
$ilUser->getId(),
"integer") .
") OR " .
783 " rep_obj_id = " .
$ilDB->quote($a_rep_obj_id,
"integer");
785 if ($a_sub_obj_id !== null) {
786 $q .=
" AND obj_id = " .
$ilDB->quote($a_sub_obj_id,
"integer");
787 $q .=
" AND obj_type = " .
$ilDB->quote($a_obj_type,
"text");
790 $q .=
" AND news_id = " .
$ilDB->quote($a_news_id,
"integer");
792 $q .=
" GROUP BY rep_obj_id, type ";
795 $set =
$ilDB->query($q);
796 while ($rec =
$ilDB->fetchAssoc($set)) {
797 $cnt[$rec[
"rep_obj_id"]][$rec[
"type"]] = $rec[
"c"];
809 public static function activateComments($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_activate =
true)
813 $ilDB = $DIC->database();
815 if ($a_obj_type ==
"") {
819 "SELECT * FROM note_settings " .
820 " WHERE rep_obj_id = " .
$ilDB->quote((
int) $a_rep_obj_id,
"integer") .
821 " AND obj_id = " .
$ilDB->quote((
int) $a_obj_id,
"integer") .
822 " AND obj_type = " .
$ilDB->quote($a_obj_type,
"text")
824 if ($rec =
$ilDB->fetchAssoc($set)) {
825 if (($rec[
"activated"] == 0 && $a_activate) ||
826 ($rec[
"activated"] == 1 && !$a_activate)) {
828 "UPDATE note_settings SET " .
829 " activated = " .
$ilDB->quote((
int) $a_activate,
"integer") .
830 " WHERE rep_obj_id = " .
$ilDB->quote((
int) $a_rep_obj_id,
"integer") .
831 " AND obj_id = " .
$ilDB->quote((
int) $a_obj_id,
"integer") .
832 " AND obj_type = " .
$ilDB->quote($a_obj_type,
"text")
837 $q =
"INSERT INTO note_settings " .
838 "(rep_obj_id, obj_id, obj_type, activated) VALUES (" .
839 $ilDB->quote((
int) $a_rep_obj_id,
"integer") .
"," .
840 $ilDB->quote((
int) $a_obj_id,
"integer") .
"," .
841 $ilDB->quote($a_obj_type,
"text") .
"," .
842 $ilDB->quote(1,
"integer") .
844 $ilDB->manipulate($q);
859 $ilDB = $DIC->database();
861 if ($a_news_id > 0) {
865 if ($a_obj_type ==
"") {
869 "SELECT * FROM note_settings " .
870 " WHERE rep_obj_id = " .
$ilDB->quote((
int) $a_rep_obj_id,
"integer") .
871 " AND obj_id = " .
$ilDB->quote((
int) $a_obj_id,
"integer") .
872 " AND obj_type = " .
$ilDB->quote($a_obj_type,
"text")
874 $rec =
$ilDB->fetchAssoc($set);
875 return $rec[
"activated"];
888 $ilDB = $DIC->database();
890 $set =
$ilDB->query(
"SELECT * FROM note_settings " .
891 " WHERE " .
$ilDB->in(
"rep_obj_id", $a_rep_obj_ids,
false,
"integer") .
893 $activations = array();
894 while ($rec =
$ilDB->fetchAssoc($set)) {
895 if ($rec[
"activated"]) {
896 $activations[$rec[
"rep_obj_id"]][$rec[
"obj_type"]] =
true;
917 $recipients =
$ilSetting->get(
"comments_noti_recip");
918 $recipients = explode(
",", $recipients);
929 $sub_obj_id = $obj[
"obj_id"];
930 $type = $obj[
"obj_type"];
932 include_once(
"./Services/Language/classes/class.ilLanguageFactory.php");
933 include_once(
"./Services/User/classes/class.ilUserUtil.php");
934 include_once(
"./Services/Mail/classes/class.ilMail.php");
938 if (($sub_obj_id == 0 and
$type !=
"blp") ||
939 in_array(
$type, array(
"pg",
"wpg"))) {
941 $type_lv =
"obj_" .
$type;
945 if (
$type ==
"wpg") {
946 $type_lv =
"obj_wiki";
951 if (
$type ==
"blp") {
953 $type_lv =
"obj_blog";
955 if (
$type ==
"pfpg") {
957 $type_lv =
"portfolio";
959 if (
$type ==
"dcl") {
961 $type_lv =
"obj_dcl";
964 include_once(
"./Services/Link/classes/class.ilLink.php");
965 foreach ($recipients as $r) {
969 foreach ($ref_ids as $r) {
970 if ($ilAccess->checkAccessOfUser($user_id,
"read",
"", $r)) {
971 if ($sub_obj_id == 0 and
$type !=
"blog") {
973 } elseif (
$type ==
"wpg") {
974 include_once(
"./Modules/Wiki/classes/class.ilWikiPage.php");
975 include_once(
"./Modules/Wiki/classes/class.ilWikiUtil.php");
983 } elseif (
$type ==
"pg") {
984 $link = ILIAS_HTTP_PATH .
'/goto.php?client_id=' .
CLIENT_ID .
"&target=pg_" . $sub_obj_id .
"_" . $r;
988 if (
$type ==
"blp") {
991 if (
$type ==
"pfpg") {
997 $ulng->loadLanguageModule(
'note');
1000 $subject = sprintf($ulng->txt(
'note_comment_notification_subjectc'), $obj_title .
" (" . $ulng->txt($type_lv) .
")");
1002 $subject = sprintf($ulng->txt(
'note_comment_notification_subject'), $obj_title .
" (" . $ulng->txt($type_lv) .
")");
1008 $message .= $this->
getText() .
"\n\n";
1011 $message .= $ulng->txt(
'note_comment_notification_link') .
": " . $link .
"\n\n";
1014 $message .= $ulng->txt(
'note_comment_notification_reason') .
"\n\n";
1017 $mail_obj->appendInstallationSignature(
true);
static _lookupLogin($a_user_id)
lookup login
static lookupTitle($a_page_id)
Checks whether a page with given title exists.
create($a_use_provided_creation_date=false)
static commentsActivated($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_news_id=0)
Are comments activated for object?
setSubject($a_subject)
set subject
static _lookupUpdateDate($a_id)
lookup update date of note
static _lookupFullname($a_user_id)
Lookup Full Name.
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
setAllData($a_note_rec)
set all note data by record array
static _getAllNotesOfSingleRepObject( $a_rep_obj_id, $a_type=IL_NOTE_PRIVATE, $a_incl_sub=false, $a_sort_ascending=false, $a_since="")
get all notes related to a single repository object
static _lookupId($a_user_str)
Lookup id by login.
setCreationDate($a_date)
set creation date
static _lookupTitle($a_id)
lookup object title
static _getNotesOfObject( $a_rep_obj_id, $a_obj_id, $a_obj_type, $a_type=IL_NOTE_PRIVATE, $a_incl_sub=false, $a_filter="", $a_all_public="y", $a_repository_mode=true, $a_sort_ascending=false, $a_news_id=0)
get all notes related to a specific object
getUpdateDate()
get update date
static now()
Return current timestamp in Y-m-d H:i:s format.
sendNotifications($a_changed=false)
Send notifications.
setAuthor($a_user_id)
set author
static _getAllReferences($a_id)
get all reference ids of object
Tree handler for personal workspace.
static getUserCount($a_rep_obj_id, $a_obj_id, $a_type)
How many users have attached a note/comment to a given object?
static _lookupCreationDate($a_id)
lookup creation date of note
static _countNotesAndComments( $a_rep_obj_id, $a_sub_obj_id=null, $a_obj_type="", $a_news_id=0)
Get all notes related to a specific object.
static makeUrlTitle($a_par)
Set page parameter for Url Embedding.
static getRepObjActivation($a_rep_obj_ids)
Get activation for repository objects.
setLabel($a_label)
set label
static _getRelatedObjectsOfUser($a_mode)
get all related objects for user
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setObject($a_obj_type, $a_rep_obj_id, $a_obj_id=0, $a_news_id=0)
set assigned object
getCreationDate()
get creation date
lookupNodeId($a_obj_id)
Get node id for object id.
static _lookupType($a_id, $a_reference=false)
lookup object type
__construct($a_id=0)
constructor
static _getLanguageOfUser($a_usr_id)
Get language object of user.
setNewsId($a_val)
Set news id.
static activateComments($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_activate=true)
Activate notes feature.
setInRepository($a_value)
set repository object status
setUpdateDate($a_date)
set update date
static _getLastNotesOfUser()
get last notes of current user
isInRepository()
belongs note to repository object?
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static _countNotesAndCommentsMultiple($a_rep_obj_ids, $a_no_sub_objs=false)
Get all notes related to multiple objcts.