3 declare(strict_types=1);
28 protected \ilDBInterface
$db;
44 $id = $db->nextId(
"note");
46 $db->insert(
"note", array(
47 "id" => array(
"integer",
$id),
48 "rep_obj_id" => array(
"integer",
$context->getObjId()),
49 "obj_id" => array(
"integer",
$context->getSubObjId()),
50 "obj_type" => array(
"text",
$context->getType()),
51 "news_id" => array(
"integer",
$context->getNewsId()),
52 "type" => array(
"integer", $note->
getType()),
53 "author" => array(
"integer", $note->
getAuthor()),
54 "note_text" => array(
"clob", $note->
getText()),
56 "no_repository" => array(
"integer", (
int) !
$context->getInRepository())
64 $q =
"DELETE FROM note WHERE id = " .
65 $db->
quote($id,
"integer");
76 $db->update(
"note", array(
77 "note_text" => array(
"clob", $text),
78 "update_date" => array(
"timestamp", $update_date),
80 "id" => array(
"integer", $id)
94 "SELECT * FROM note " .
99 if ($rec = $db->fetchAssoc($set)) {
107 return $this->data->note(
109 $this->data->context(
110 (
int) $rec[
"rep_obj_id"],
111 (
int) $rec[
"obj_id"],
113 (
int) $rec[
"news_id"],
114 !$rec[
"no_repository"]
116 (string) $rec[
"note_text"],
117 (
int) $rec[
"author"],
119 $rec[
"creation_date"],
131 bool $incl_sub =
false,
133 bool $ascending =
false,
137 string $search_text =
"" 141 $author_where = ($author > 0)
142 ?
" AND author = " . $db->
quote($author,
"integer")
146 ?
" rep_obj_id = " . $db->quote($context->
getObjId(),
"integer")
147 :
" " . $db->in(
"rep_obj_id", $obj_ids,
false,
"integer");
149 $sub_where .= ($context && !$incl_sub)
150 ?
" AND note.obj_id = " . $db->quote($context->
getSubObjId(),
"integer") .
151 " AND note.obj_type = " . $db->quote($context->
getType(),
"text")
155 $sub_where .=
" AND creation_date > " . $db->quote($since,
"timestamp");
161 " AND news_id = " . $db->quote($context->
getNewsId(),
"integer");
163 $sub_where .=
" AND no_repository = " . $db->quote(!$context->
getInRepository(),
"integer");
168 if ($search_text !==
"") {
169 $sub_where .=
" AND (" . $db->like(
"note_text",
"text",
"%" . $search_text .
"%");
170 $join =
" JOIN usr_data ud ON (author = ud.usr_id)";
171 $join .=
" LEFT JOIN object_data od ON (rep_obj_id = od.obj_id)";
172 $sub_where .=
" OR " . $db->like(
"ud.lastname",
"text",
"%" . $search_text .
"%");
173 $sub_where .=
" OR " . $db->like(
"ud.firstname",
"text",
"%" . $search_text .
"%");
174 $sub_where .=
" OR " . $db->like(
"ud.login",
"text",
"%" . $search_text .
"%");
175 $sub_where .=
" OR " . $db->like(
"od.title",
"text",
"%" . $search_text .
"%");
179 $fields = $count ?
"count(*) cnt" :
"note.*";
180 $query =
"SELECT $fields FROM note $join WHERE " .
182 " AND note.type = " . $db->quote(
$type,
"integer") .
185 " ORDER BY creation_date ";
186 $query .= ($ascending) ?
"ASC" :
"DESC";
197 bool $incl_sub =
false,
199 bool $ascending =
false,
201 string $search_text =
"" 217 $set = $db->query(
$query);
219 while ($note_rec = $db->fetchAssoc($set)) {
232 bool $incl_sub =
false,
234 bool $ascending =
false,
236 string $search_text =
"" 252 $set = $db->query(
$query);
254 while ($note_rec = $db->fetchAssoc($set)) {
263 bool $incl_sub =
false,
277 $set = $db->query(
$query);
278 $rec = $db->fetchAssoc($set);
279 return (
int) $rec[
"cnt"];
291 $q =
"SELECT DISTINCT rep_obj_id FROM note WHERE " .
292 " type = " . $db->
quote($type,
"integer") .
293 " AND author = " . $db->quote($user_id,
"integer") .
294 " AND (no_repository IS NULL OR no_repository < " . $db->quote(1,
"integer") .
")";
296 $set = $db->query($q);
298 while ($rec = $db->fetchAssoc($set)) {
299 $ids[] = (
int) $rec[
"rep_obj_id"];
312 $q =
"SELECT DISTINCT rep_obj_id FROM note WHERE " .
313 $db->
in(
"rep_obj_id", $obj_ids,
false,
"integer") .
314 " AND type = " . $db->quote($type,
"integer") .
315 " AND (no_repository IS NULL OR no_repository < " . $db->quote(1,
"integer") .
")";
317 $set = $db->query($q);
319 while ($rec = $db->fetchAssoc($set)) {
320 $ids[] = (
int) $rec[
"rep_obj_id"];
336 "SELECT count(DISTINCT author) cnt FROM note WHERE " .
337 "rep_obj_id = %s AND obj_id = %s AND obj_type = %s",
338 array(
"integer",
"integer",
"text"),
339 array($obj_id, $sub_obj_id, $obj_type)
341 $rec = $db->fetchAssoc($set);
342 return (
int) $rec[
"cnt"];
353 bool $no_sub_objs =
false 357 $q =
"SELECT count(id) c, rep_obj_id, type FROM note WHERE " .
359 "author = " . $db->quote($user_id,
"integer") .
") OR " .
360 " type = " . $db->quote(
Note::PUBLIC,
"integer") .
") AND " .
361 $db->in(
"rep_obj_id", $obj_ids,
false,
"integer");
364 $q .=
" AND obj_id = " . $db->quote(0,
"integer");
367 $q .=
" GROUP BY rep_obj_id, type ";
370 $set = $db->query($q);
371 while ($rec = $db->fetchAssoc($set)) {
372 $cnt[$rec[
"rep_obj_id"]][$rec[
"type"]] = $rec[
"c"];
getQuery(?Context $context, int $type=Note::PRIVATE, bool $incl_sub=false, int $author=0, bool $ascending=false, bool $count=false, string $since="", array $obj_ids=[], string $search_text="")
Get query.
__construct(InternalDataService $data, \ilDBInterface $db)
getById(int $id)
Get note by id.
quote($value, string $type)
static now()
Return current timestamp in Y-m-d H:i:s format.
Repository internal data service.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRelatedObjIdsOfUser(int $user_id, int $type)
getNoteFromRecord(array $rec)
queryF(string $query, array $types, array $values)
getNotesForObjIds(array $obj_ids, int $type=Note::PRIVATE, bool $incl_sub=false, int $author=0, bool $ascending=false, string $since="", string $search_text="")
Get all notes related to a specific object.
in(string $field, array $values, bool $negate=false, string $type="")
updateNoteText(int $id, string $text)
getNrOfNotesForContext(Context $context, int $type=Note::PRIVATE, bool $incl_sub=false, int $author=0)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getNotesForContext(Context $context, int $type=Note::PRIVATE, bool $incl_sub=false, int $author=0, bool $ascending=false, string $since="", string $search_text="")
Get all notes related to a specific object.
countNotesAndCommentsMultipleObjects(array $obj_ids, int $user_id, bool $no_sub_objs=false)
Get all notes related to multiple repository objects.
InternalDataService $data
filterObjectsWithNotes(array $obj_ids, int $type)
getUserCount(int $obj_id, int $sub_obj_id, string $obj_type)
How many users have attached a note/comment to a given object?