51 protected int $id = 0;
79 $this->main_tpl = $DIC->ui()->mainTemplate();
81 $this->db = $DIC->database();
82 $this->tree = $DIC->repositoryTree();
83 $this->
access = $DIC->access();
84 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
85 $this->
user = $DIC->user();
86 $this->
lng = $DIC->language();
87 $this->
ctrl = $DIC->ctrl();
92 $this->limitation =
true;
93 $this->log = $DIC->logger()->news();
96 public function setId(
int $a_id): void
108 $this->title = $a_title;
118 $this->content = $a_content;
128 $this->context_obj_id = $a_context_obj_id;
138 $this->context_obj_type = $a_context_obj_type;
148 $this->context_sub_obj_id = $a_context_sub_obj_id;
158 $this->context_sub_obj_type = $a_context_sub_obj_type;
168 $this->content_type = $a_content_type;
178 $this->creation_date = $a_creation_date;
188 $this->update_date = $a_update_date;
198 $this->user_id = $a_user_id;
208 $this->update_user_id = $a_val;
220 string $a_visibility =
"users" 222 $this->visibility = $a_visibility;
235 $this->content_long = $a_content_long;
245 $this->priority = $a_priority;
254 bool $a_content_is_lang_var =
false 256 $this->content_is_lang_var = $a_content_is_lang_var;
266 $this->mob_id = $a_mob_id;
279 $this->playtime = $a_playtime;
292 $this->limitation = $a_limitation;
302 $this->content_text_is_lang_var = $a_val;
312 $this->mob_cnt_play = $a_val;
322 $this->mob_cnt_download = $a_val;
332 $this->content_html = $a_val;
348 $query =
"SELECT * FROM il_news_item WHERE id = " .
350 $set =
$ilDB->query($query);
351 if ($rec =
$ilDB->fetchAssoc($set)) {
352 $this->
setTitle((
string) $rec[
"title"]);
368 $this->
setMobId((
int) $rec[
"mob_id"]);
386 $ilDB->insert(
"il_news_item", [
387 "id" => [
"integer", $this->
getId()],
388 "title" => [
"text", $this->
getTitle()],
398 "user_id" => [
"integer", $this->
getUserId()],
405 "mob_id" => [
"integer", $this->
getMobId()],
411 $max_items = $news_set->get(
"max_items");
412 if ($max_items <= 0) {
419 $query =
"SELECT count(*) cnt " .
420 "FROM il_news_item " .
427 $set =
$ilDB->query($query);
428 $rec =
$ilDB->fetchAssoc($set);
432 $query =
"SELECT * " .
433 "FROM il_news_item " .
439 " ORDER BY creation_date ASC";
441 $ilDB->setLimit($rec[
"cnt"] - $max_items, 0);
442 $del_set =
$ilDB->query($query);
443 while ($del_item =
$ilDB->fetchAssoc($del_set)) {
444 $del_news =
new ilNewsItem((
int) $del_item[
"id"]);
457 public function update(
bool $a_as_new =
false): void
462 "title" => [
"text", $this->
getTitle()],
470 "user_id" => [
"integer", $this->
getUserId()],
477 "mob_id" => [
"integer", $this->
getMobId()],
485 $fields[
"creation_date"] = [
"timestamp", $now];
487 $fields[
"update_date"] = [
"timestamp", $now];
489 $ilDB->update(
"il_news_item", $fields, [
490 "id" => [
"integer", $this->
getId()]
501 bool $a_only_public =
false,
502 bool $a_prevent_aggregation =
false,
505 bool $no_auto_generated =
false,
506 array $excluded = [],
511 $ilAccess = $DIC->access();
523 $pd_items = $fav_rep->getFavouritesOfUser($a_user_id);
524 foreach ($pd_items as $item) {
525 if (!in_array($item[
"ref_id"], $ref_ids)) {
526 $ref_ids[] = (
int) $item[
"ref_id"];
533 $items = array_merge($crs_mbs, $grp_mbs);
534 foreach ($items as $i) {
536 if (is_array($item_references) && count($item_references)) {
537 foreach ($item_references as
$ref_id) {
538 if (!in_array($ref_id, $ref_ids)) {
548 foreach ($ref_ids as
$ref_id) {
549 if (!$a_only_public) {
551 $acc = $ilAccess->checkAccessOfUser($a_user_id,
"read",
"", $ref_id);
557 if (self::getPrivateFeedId() > 0) {
560 $rbacsystem = $DIC->rbac()->system();
561 $acc = $rbacsystem->checkAccessOfUser(self::getPrivateFeedId(),
"read", $ref_id);
570 $news = $news_item->getNewsForRefId(
575 $a_prevent_aggregation,
585 if (!is_null($a_cnt)) {
586 $a_cnt[
$ref_id] = count($news);
595 array_splice(
$data, $a_limit);
610 bool $a_only_public =
false,
611 bool $a_stopnesting =
false,
613 bool $a_prevent_aggregation =
true,
614 bool $a_forum_group_sequences =
false,
615 bool $a_no_auto_generated =
false,
616 bool $a_ignore_date_filter =
false,
617 int $a_user_id = null,
619 array $a_excluded = []
626 if ($obj_type ===
"grp" || $obj_type ===
"crs") {
647 "hide_news_per_date",
651 if ($hide_news_per_date && !$a_ignore_date_filter) {
661 if ($obj_type ===
"cat" && !$a_stopnesting) {
666 $a_prevent_aggregation,
668 $a_no_auto_generated,
671 } elseif (($obj_type ===
"grp" || $obj_type ===
"crs") &&
677 $a_prevent_aggregation,
679 $a_no_auto_generated,
686 $news_item->setContextObjId($obj_id);
687 $news_item->setContextObjType($obj_type);
688 $news = $news_item->queryNewsForContext(
692 $a_no_auto_generated,
698 foreach ($news as $k => $v) {
699 if (!$a_only_public || $v[
"visibility"] ==
NEWS_PUBLIC ||
700 ($v[
"priority"] == 0 &&
703 "public_notifications",
707 $news[$k][
"ref_id"] = $a_ref_id;
712 foreach ($unset as $un) {
717 if (!$a_prevent_aggregation) {
719 } elseif ($a_forum_group_sequences) {
733 bool $a_only_public =
false,
735 bool $a_prevent_aggregation =
false,
736 string $a_starting_date =
"",
737 bool $a_no_auto_generated =
false,
738 int $a_user_id = null,
740 array $a_exclude = []
763 foreach ($nodes as $node) {
764 $ref_ids[] = (
int) $node[
"child"];
765 $obj_ids[] = (
int) $node[
"obj_id"];
768 $ilObjDataCache->preloadReferenceCache($ref_ids);
769 if (!$a_only_public) {
774 $news_obj_ids = self::filterObjIdsPerNews($obj_ids, $a_time_period, $a_starting_date);
779 foreach ($nodes as $node) {
781 if (!in_array($node[
"obj_id"], $news_obj_ids)) {
785 if (!$a_only_public) {
787 $acc = $ilAccess->checkAccess(
"read",
"", (
int) $node[
"child"]);
789 $acc = $ilAccess->checkAccessOfUser(
801 $ref_id[$node[
"obj_id"]] = $node[
"child"];
803 "obj_id" => $node[
"obj_id"],
804 "obj_type" => $node[
"type"]
814 $a_no_auto_generated,
821 foreach ($news as $k => $v) {
822 $news[$k][
"ref_id"] =
$ref_id[$v[
"context_obj_id"]];
828 if (!$a_prevent_aggregation) {
840 bool $a_group_posting_sequence =
false 844 $last_aggregation_forum = 0;
847 foreach ($news as $k => $v) {
848 if ($a_group_posting_sequence && $last_aggregation_forum > 0 &&
849 $last_aggregation_forum != $v[
"context_obj_id"]) {
850 $forums[$last_aggregation_forum] = null;
853 if ($v[
"context_obj_type"] ===
"frm") {
854 if (!isset($forums[$v[
"context_obj_id"]])) {
856 $forums[$v[
"context_obj_id"]] = $k;
857 $last_aggregation_forum = $v[
"context_obj_id"];
862 $news[$k][
"no_context_title"] =
true;
865 $news[$forums[$news[$k][
"context_obj_id"]]][
"aggregation"][$k]
867 $news[$k][
"agg_ref_id"]
868 = $news[$k][
"ref_id"];
869 $news[$k][
"content"] =
"";
870 $news[$k][
"content_long"] =
"";
875 foreach ($to_del as $k) {
892 foreach ($news as $k => $v) {
894 if ($v[
"context_obj_type"] ===
"file") {
895 if ($first_file ===
"") {
900 $news[$first_file][
"aggregation"][$k] = $v;
901 $news[$first_file][
"agg_ref_id"] = $a_ref_id;
902 $news[$first_file][
"ref_id"] = $a_ref_id;
906 foreach ($to_del as $v) {
920 bool $a_only_public =
false,
921 int $a_time_period = 0,
922 bool $a_prevent_aggregation =
false,
923 string $a_starting_date =
"",
924 bool $a_no_auto_generated =
false,
925 array $a_excluded = []
938 $a_no_auto_generated,
944 foreach (
$data as $k => $v) {
945 $data[$k][
"ref_id"] = $a_ref_id;
953 foreach ($nodes as $node) {
954 $obj_ids[] = $node[
"obj_id"];
956 $news_obj_ids = self::filterObjIdsPerNews($obj_ids, $a_time_period, $a_starting_date);
961 foreach ($nodes as $node) {
963 if (!in_array($node[
"obj_id"], $news_obj_ids)) {
967 if (!$a_only_public && !$ilAccess->checkAccess(
"read",
"", (
int) $node[
"child"])) {
970 $ref_id[$node[
"obj_id"]] = $node[
"child"];
972 "obj_id" => $node[
"obj_id"],
973 "obj_type" => $node[
"type"]
982 $a_no_auto_generated,
987 foreach ($news as $k => $v) {
988 $news[$k][
"ref_id"] =
$ref_id[$v[
"context_obj_id"]];
995 if (!$a_prevent_aggregation) {
1008 int $a_sub_obj_id = 0,
1009 string $a_sub_obj_type =
"" 1024 if (is_numeric($a_time_period)) {
1025 if ($a_time_period > 0) {
1026 return date(
'Y-m-d H:i:s', time() - ($a_time_period * 24 * 60 * 60));
1030 elseif (preg_match(
"/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/", $a_time_period)) {
1031 return $a_time_period;
1042 bool $a_for_rss_use =
false,
1044 string $a_starting_date =
"",
1045 bool $a_no_auto_generated =
false,
1046 bool $a_oldest_first =
false,
1048 array $a_exclude = []
1054 if ($a_time_period > 0) {
1055 $limit_ts = self::handleTimePeriod($a_time_period);
1056 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1059 if ($a_starting_date !==
"") {
1060 $and .=
" AND creation_date > " .
$ilDB->quote($a_starting_date,
"timestamp") .
" ";
1063 if ($a_no_auto_generated) {
1064 $and .=
" AND priority = 1 AND content_type = " .
$ilDB->quote(
"text",
"text") .
" ";
1073 if (count($a_exclude) > 0) {
1074 $and .=
" AND " .
$ilDB->in(
"id", $a_exclude,
true,
"integer") .
" ";
1077 $ordering = ($a_oldest_first)
1078 ?
" creation_date ASC, id ASC " 1079 :
" creation_date DESC, id DESC ";
1081 if ($a_for_rss_use && self::getPrivateFeedId() === 0) {
1082 $query =
"SELECT * " .
1083 "FROM il_news_item " .
1088 " ORDER BY " . $ordering;
1089 } elseif (self::getPrivateFeedId() > 0) {
1090 $query =
"SELECT il_news_item.* " .
1091 ", il_news_read.user_id user_read " .
1092 "FROM il_news_item LEFT JOIN il_news_read " .
1093 "ON il_news_item.id = il_news_read.news_id AND " .
1094 " il_news_read.user_id = " .
$ilDB->quote(self::getPrivateFeedId(),
"integer") .
1099 " ORDER BY " . $ordering;
1101 $query =
"SELECT il_news_item.* " .
1102 ", il_news_read.user_id as user_read " .
1103 "FROM il_news_item LEFT JOIN il_news_read " .
1104 "ON il_news_item.id = il_news_read.news_id AND " .
1105 " il_news_read.user_id = " .
$ilDB->quote($ilUser->getId(),
"integer") .
1107 "context_obj_id = " .
$ilDB->quote($this->getContextObjId(),
"integer") .
1108 " AND context_obj_type = " .
$ilDB->quote($this->getContextObjType(),
"text") .
1110 " ORDER BY " . $ordering;
1113 $set =
$ilDB->query($query);
1115 while ($rec =
$ilDB->fetchAssoc($set)) {
1116 if ($a_limit > 0 && count($result) >= $a_limit) {
1119 if (!$a_for_rss_use || (self::getPrivateFeedId() > 0) || ($rec[
"visibility"] ===
NEWS_PUBLIC ||
1120 ((
int) $rec[
"priority"] === 0 &&
1123 "public_notifications",
1125 (
int) $rec[
"context_obj_id"]
1127 $result[$rec[
"id"]] = $rec;
1136 if ($a_time_period && $a_for_rss_use) {
1143 if ($keep_rss_min > 0) {
1148 $a_no_auto_generated,
1150 (
int) $keep_rss_min,
1167 $ilDB = $DIC->database();
1169 $set =
$ilDB->query(
"SELECT * FROM il_news_item " .
1170 " WHERE " .
$ilDB->in(
"id", $a_news_ids,
false,
"integer"));
1171 while ($rec =
$ilDB->fetchAssoc($set)) {
1172 $news[$rec[
"id"]] = $rec;
1190 $this->log->debug(
"time period: " . $a_time_period);
1191 $limit_ts = self::handleTimePeriod($a_time_period);
1194 $query =
$ilDB->query(
$q =
"SELECT id,context_obj_id,context_obj_type" .
1195 " FROM il_news_item" .
1196 " WHERE " .
$ilDB->in(
"context_obj_id", array_keys($objects),
false,
"integer") .
1197 " AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp"));
1198 $this->log->debug(
$q);
1199 while ($rec =
$ilDB->fetchAssoc($query)) {
1200 if ($objects[$rec[
"context_obj_id"]][
"type"] == $rec[
"context_obj_type"]) {
1201 $all[] = (
int) $rec[
"id"];
1214 bool $a_for_rss_use =
false,
1216 string $a_starting_date =
"",
1217 bool $a_no_auto_generated =
false,
1218 int $a_user_id = null,
1220 array $a_exclude = []
1226 if ($a_time_period > 0) {
1227 $limit_ts = self::handleTimePeriod($a_time_period);
1228 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1231 if ($a_starting_date !==
"") {
1232 $and .=
" AND creation_date > " .
$ilDB->quote($a_starting_date,
"timestamp") .
" ";
1235 if ($a_no_auto_generated) {
1236 $and .=
" AND priority = 1 AND content_type = " .
$ilDB->quote(
"text",
"text") .
" ";
1240 $ilDB->setLimit($a_limit, 0);
1243 if (is_array($a_exclude) && count($a_exclude) > 0) {
1244 $and .=
" AND " .
$ilDB->in(
"id", $a_exclude,
true,
"integer") .
" ";
1250 foreach ($a_contexts as $cont) {
1251 $ids[] = $cont[
"obj_id"];
1252 $type[$cont[
"obj_id"]] = $cont[
"obj_type"];
1255 if ($a_for_rss_use && self::getPrivateFeedId() === 0) {
1256 $query =
"SELECT * " .
1257 "FROM il_news_item " .
1259 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1261 " ORDER BY creation_date DESC ";
1262 } elseif (self::getPrivateFeedId() > 0) {
1263 $query =
"SELECT il_news_item.* " .
1264 ", il_news_read.user_id as user_read " .
1265 "FROM il_news_item LEFT JOIN il_news_read " .
1266 "ON il_news_item.id = il_news_read.news_id AND " .
1267 " il_news_read.user_id = " .
$ilDB->quote(self::getPrivateFeedId(),
"integer") .
1269 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1271 " ORDER BY creation_date DESC ";
1274 $user_id = $a_user_id;
1276 $user_id = $ilUser->getId();
1278 $query =
"SELECT il_news_item.* " .
1279 ", il_news_read.user_id as user_read " .
1280 "FROM il_news_item LEFT JOIN il_news_read " .
1281 "ON il_news_item.id = il_news_read.news_id AND " .
1282 " il_news_read.user_id = " .
$ilDB->quote($user_id,
"integer") .
1284 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1286 " ORDER BY creation_date DESC ";
1289 $set =
$ilDB->query($query);
1291 while ($rec =
$ilDB->fetchAssoc($set)) {
1292 if ($type[$rec[
"context_obj_id"]] == $rec[
"context_obj_type"]) {
1293 if (!$a_for_rss_use || self::getPrivateFeedId() > 0 || ($rec[
"visibility"] ===
NEWS_PUBLIC ||
1294 ((
int) $rec[
"priority"] === 0 &&
1297 "public_notifications",
1299 (
int) $rec[
"context_obj_id"]
1301 $result[$rec[
"id"]] = $rec;
1320 $ilDB = $DIC->database();
1321 $ilAppEventHandler = $DIC[
"ilAppEventHandler"];
1326 "user_id" => [
"integer", $a_user_id],
1327 "news_id" => [
"integer", $a_news_id]
1332 $ilAppEventHandler->raise(
1335 [
"user_id" => $a_user_id,
"news_ids" => [$a_news_id]]
1349 $ilDB = $DIC->database();
1350 $ilAppEventHandler = $DIC[
"ilAppEventHandler"];
1352 $ilDB->manipulate(
"DELETE FROM il_news_read (user_id, news_id) VALUES (" .
1353 " WHERE user_id = " .
$ilDB->quote($a_user_id,
"integer") .
1354 " AND news_id = " .
$ilDB->quote($a_news_id,
"integer"));
1356 $ilAppEventHandler->raise(
1359 [
"user_id" => $a_user_id,
"news_ids" => [$a_news_id]]
1371 foreach ($n2 as $id => $news) {
1386 $tree = $DIC->repositoryTree();
1389 $default_visibility = ($news_set->get(
"default_visibility") !=
"")
1390 ? $news_set->get(
"default_visibility")
1397 if (!in_array($row[
"type"], [
"root",
"cat",
"crs",
"fold",
"grp"],
true)) {
1403 "default_visibility",
1405 (
int) $row[
"obj_id"]
1408 if ($visibility !=
"") {
1414 return $default_visibility;
1422 public function delete():
void 1427 $ilDB->manipulate(
"DELETE FROM il_news_read " .
1428 " WHERE news_id = " .
$ilDB->quote($this->getId(),
"integer"));
1434 $query =
"DELETE FROM il_news_item" .
1435 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
1436 $ilDB->manipulate($query);
1451 int $a_context_obj_id,
1452 string $a_context_obj_type,
1453 int $a_context_sub_obj_id = 0,
1454 string $a_context_sub_obj_type =
"" 1458 $ilDB = $DIC->database();
1461 if ($a_context_obj_id === 0 || $a_context_obj_type ===
"") {
1465 if ($a_context_sub_obj_id > 0) {
1466 $and =
" AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1467 " AND context_sub_obj_type = " .
$ilDB->quote($a_context_sub_obj_type,
"text");
1471 $query =
"SELECT id FROM il_news_item" .
1472 " WHERE context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1473 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1476 $news_set =
$ilDB->query($query);
1479 while ($news =
$ilDB->fetchAssoc($news_set)) {
1480 $news_arr[] =
new ilNewsItem((
int) $news[
"id"]);
1490 int $a_context_obj_id,
1491 string $a_context_obj_type,
1492 int $a_context_sub_obj_id = 0,
1493 string $a_context_sub_obj_type =
"" 1495 foreach (self::getNewsOfContext(
1497 $a_context_obj_type,
1498 $a_context_sub_obj_id,
1499 $a_context_sub_obj_type
1513 $ilDB = $DIC->database();
1515 $query =
"SELECT title FROM il_news_item WHERE id = " .
1516 $ilDB->quote($a_news_id,
"integer");
1517 $set =
$ilDB->query($query);
1518 $rec =
$ilDB->fetchAssoc($set);
1519 return $rec[
"title"] ??
'';
1530 $ilDB = $DIC->database();
1532 $query =
"SELECT visibility FROM il_news_item WHERE id = " .
1533 $ilDB->quote($a_news_id,
"integer");
1534 $set =
$ilDB->query($query);
1535 $rec =
$ilDB->fetchAssoc($set);
1548 $ilDB = $DIC->database();
1550 $query =
"SELECT mob_id FROM il_news_item WHERE id = " .
1551 $ilDB->quote($a_news_id,
"integer");
1552 $set =
$ilDB->query($query);
1553 $rec =
$ilDB->fetchAssoc($set);
1554 return (
int) ($rec[
"mob_id"] ?? 0);
1566 string $a_starting_date =
"",
1567 string $a_ending_date =
'',
1568 bool $ignore_period =
false 1572 $ilDB = $DIC->database();
1575 if ($a_time_period > 0) {
1576 $limit_ts = self::handleTimePeriod($a_time_period);
1577 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1580 if ($a_starting_date !==
"") {
1581 $and .=
" AND creation_date >= " .
$ilDB->quote($a_starting_date,
"timestamp");
1584 $query =
"SELECT DISTINCT(context_obj_id) AS obj_id FROM il_news_item" .
1585 " WHERE " .
$ilDB->in(
"context_obj_id", $a_obj_ids,
false,
"integer") .
" " . $and;
1588 $set =
$ilDB->query($query);
1590 while ($rec =
$ilDB->fetchAssoc($set)) {
1591 $objs[] = $rec[
"obj_id"];
1602 int $a_agg_ref_id = 0,
1603 array $a_aggregation = []
1607 $ilDB = $DIC->database();
1609 $query =
"SELECT context_obj_type, content_is_lang_var, title FROM il_news_item WHERE id = " .
1610 $ilDB->quote($a_news_id,
"integer");
1611 $set =
$ilDB->query($query);
1612 $rec =
$ilDB->fetchAssoc($set);
1614 return self::determineNewsTitle(
1615 $rec[
"context_obj_type"],
1617 $rec[
"content_is_lang_var"],
1628 string $a_context_obj_type,
1630 bool $a_content_is_lang_var,
1631 int $a_agg_ref_id = 0,
1632 array $a_aggregation = [],
1637 if (is_null($lng)) {
1638 $lng = $DIC->language();
1640 $obj_definition = $DIC[
"objDefinition"];
1643 if ($a_agg_ref_id > 0) {
1644 $cnt = count($a_aggregation);
1647 if ($a_context_obj_type ===
"frm") {
1649 return sprintf($lng->
txt(
"news_x_postings"), $cnt);
1652 return $lng->
txt(
"news_1_postings");
1656 $up_cnt = $cr_cnt = 0;
1657 foreach ($a_aggregation as $item) {
1658 if ($item[
"title"] ===
"file_updated") {
1665 if ($cr_cnt === 1) {
1666 $tit = $lng->
txt(
"news_1_file_created");
1668 } elseif ($cr_cnt > 1) {
1669 $tit = sprintf($lng->
txt(
"news_x_files_created"), $cr_cnt);
1672 if ($up_cnt === 1) {
1673 $tit .= $sep . $lng->
txt(
"news_1_file_updated");
1674 } elseif ($up_cnt > 1) {
1675 $tit .= $sep . sprintf($lng->
txt(
"news_x_files_updated"), $up_cnt);
1680 if ($a_content_is_lang_var) {
1681 if ($obj_definition->isPlugin($a_context_obj_type)) {
1684 return $lng->
txt($a_title);
1695 string $a_context_obj_type,
1697 bool $a_is_lang_var,
1702 if (is_null($lng)) {
1703 $lng = $DIC->language();
1705 $obj_definition = $DIC[
"objDefinition"];
1707 if ($a_is_lang_var) {
1708 if ($obj_definition->isPlugin($a_context_obj_type)) {
1712 return $lng->
txt($a_content);
1723 int $a_context_obj_id,
1724 string $a_context_obj_type,
1725 int $a_context_sub_obj_id = 0,
1726 string $a_context_sub_obj_type =
"" 1730 $ilDB = $DIC->database();
1733 $query =
"SELECT id " .
1734 "FROM il_news_item " .
1736 "context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1737 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1738 " AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1739 " AND " .
$ilDB->equals(
"context_sub_obj_type", $a_context_sub_obj_type,
"text",
true);
1741 $set =
$ilDB->query($query);
1742 $rec =
$ilDB->fetchAssoc($set);
1744 return (
int) ($rec[
"id"] ?? 0);
1752 int $a_context_obj_id,
1753 string $a_context_obj_type,
1754 int $a_context_sub_obj_id = 0,
1755 string $a_context_sub_obj_type =
"",
1756 bool $a_only_today =
false 1760 $ilDB = $DIC->database();
1763 $query =
"SELECT id, update_date " .
1764 "FROM il_news_item " .
1766 "context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1767 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1768 " AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1769 " AND " .
$ilDB->equals(
"context_sub_obj_type", $a_context_sub_obj_type,
"text",
true) .
1770 " ORDER BY update_date DESC";
1772 $ilDB->setLimit(1, 0);
1773 $set =
$ilDB->query($query);
1775 if ($rec =
$ilDB->fetchAssoc($set)) {
1776 $id = (
int) $rec[
"id"];
1777 if ($a_only_today) {
1779 if (strpos($rec[
"update_date"], substr($now, 0, 10)) !== 0) {
1797 $ilDB = $DIC->database();
1799 $query =
"SELECT id " .
1800 "FROM il_news_item " .
1802 " mob_id = " .
$ilDB->quote($a_mob_id,
"integer");
1805 $set =
$ilDB->query($query);
1806 while ($rec =
$ilDB->fetchAssoc($set)) {
1807 $usages[$rec[
"id"]] = [
"type" =>
"news",
"id" => $rec[
"id"]];
1821 $ilDB = $DIC->database();
1823 $query =
"SELECT context_obj_id " .
1824 "FROM il_news_item " .
1826 " id = " .
$ilDB->quote($a_news_id,
"integer");
1827 $set =
$ilDB->query($query);
1828 $rec =
$ilDB->fetchAssoc($set);
1830 return $rec[
"context_obj_id"];
1839 $per = $news_set->get(
"pd_period");
1840 if ((
int) $per === 0) {
1853 $allow_shorter_periods = $news_set->get(
"allow_shorter_periods");
1854 $allow_longer_periods = $news_set->get(
"allow_longer_periods");
1855 $default_per = self::_lookupDefaultPDPeriod();
1866 (!$allow_shorter_periods && ($per < $default_per)) ||
1867 (!$allow_longer_periods && ($per > $default_per))
1869 $per = $default_per;
1881 $rss_period = $news_set->get(
"rss_period");
1882 if ((
int) $rss_period === 0) {
1893 self::$privFeedId = $a_userId;
1901 return self::$privFeedId;
1909 string $a_purpose =
"Standard",
1910 bool $a_increase_download_cnt =
false 1917 if (!$mob->hasPurposeItem($a_purpose)) {
1921 $m_item = $mob->getMediaItem($a_purpose);
1922 if ($m_item->getLocationType() !==
"Reference") {
1923 $file = $mob_dir .
"/" . $m_item->getLocation();
1924 if (file_exists($file) && is_file($file)) {
1925 if ($a_increase_download_cnt) {
1932 $this->main_tpl->setOnScreenMessage(
'failure',
"File not found!",
true);
1936 if ($a_increase_download_cnt) {
1956 "UPDATE il_news_item SET " .
1957 " mob_cnt_download = " .
$ilDB->quote($cnt,
"integer") .
1958 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer")
1975 "UPDATE il_news_item SET " .
1976 " mob_cnt_play = " .
$ilDB->quote($cnt,
"integer") .
1977 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer")
1989 $ilDB = $DIC->database();
1992 $news_ids = array_keys(
$data);
1993 $set =
$ilDB->query(
"SELECT id FROM il_news_item " .
1994 " WHERE " .
$ilDB->in(
"id", $news_ids,
false,
"integer"));
1996 while ($rec =
$ilDB->fetchAssoc($set)) {
1997 $existing_ids[] = (
int) $rec[
"id"];
2000 $existing_news = [];
2001 foreach (
$data as $k => $v) {
2002 if (in_array($k, $existing_ids)) {
2003 $existing_news[$k] = $v;
2007 return $existing_news;
update(bool $a_as_new=false)
Update item in database.
static getNewsOfContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Get all news of a context.
static determineNewsContent(string $a_context_obj_type, string $a_content, bool $a_is_lang_var, ?ilLanguage $lng=null)
Determine new content.
checkNewsExistsForObjects(array $objects, $a_time_period=1)
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
static _lookupUserPDPeriod(int $a_user_id)
static _getDefaultVisibilityForRefId(int $a_ref_id)
Get default visibility for reference id.
static _lookupRSSPeriod()
static deleteNewsOfContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Delete all news of a context.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
string $context_sub_obj_type
static getLastNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="", bool $a_only_today=false)
Get last news id of news set related to a certain context.
static determineNewsTitleByNewsId(int $a_news_id, int $a_agg_ref_id=0, array $a_aggregation=[])
Determine title for news item entry.
ilGlobalTemplateInterface $main_tpl
getAggregatedChildNewsData(int $a_ref_id, bool $a_only_public=false, int $a_time_period=0, bool $a_prevent_aggregation=false, string $a_starting_date="", bool $a_no_auto_generated=false, array $a_excluded=[])
Get news aggregation for child objects (e.g.
static handleTimePeriod($a_time_period)
Convert time period for DB-queries.
static _getNewsItemsOfUser(int $a_user_id, bool $a_only_public=false, bool $a_prevent_aggregation=false, int $a_per=0, array &$a_cnt=[], bool $no_auto_generated=false, array $excluded=[], int $a_limit=0)
Get all news items for a user.
setContentLong(string $a_content_long)
static filterObjIdsPerNews(array $a_obj_ids, $a_time_period=0, string $a_starting_date="", string $a_ending_date='', bool $ignore_period=false)
Checks whether news are available for.
increaseDownloadCounter()
Increase download counter.
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
setContextSubObjId(int $a_context_sub_obj_id)
setLimitation(bool $a_limitation)
Set Limitation for number of items.
static _getAllReferences(int $id)
get all reference ids for object ID
static mergeNews(array $n1, array $n2)
Merges two sets of news.
getNewsForRefId(int $a_ref_id, bool $a_only_public=false, bool $a_stopnesting=false, $a_time_period=0, bool $a_prevent_aggregation=true, bool $a_forum_group_sequences=false, bool $a_no_auto_generated=false, bool $a_ignore_date_filter=false, int $a_user_id=null, int $a_limit=0, array $a_excluded=[])
Get News For Ref Id.
isInTree(?int $a_node_id)
get all information of a node.
setUpdateUserId(int $a_val)
setPlaytime(string $a_playtime)
static setPrivateFeedId(int $a_userId)
setContentHtml(bool $a_val)
read()
Read item from database.
setContextObjType(string $a_context_obj_type)
setVisibility(string $a_visibility="users")
loadLanguageModule(string $a_module)
Load language module.
static _lookupPref(int $a_usr_id, string $a_keyword)
setContextSubObjType(?string $a_context_sub_obj_type)
static _lookupTitle(int $a_news_id)
Lookup News Title.
getContentTextIsLangVar()
static now()
Return current timestamp in Y-m-d H:i:s format.
bool $content_is_lang_var
setMobDownloadCounter(int $a_val)
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
static _lookupContainerSetting(int $a_id, string $a_keyword, string $a_default_value=null)
static queryNewsByIds(array $a_news_ids)
Query news data by news ids.
static _lookupObjId(int $ref_id)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
getAggregatedNewsData(int $a_ref_id, bool $a_only_public=false, $a_time_period=0, bool $a_prevent_aggregation=false, string $a_starting_date="", bool $a_no_auto_generated=false, int $a_user_id=null, int $a_limit=0, array $a_exclude=[])
Get news aggregation (e.g.
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static _lookup(string $a_type, string $a_setting, int $a_user=0, int $a_block_id=0)
Lookup setting from database.
queryNewsForContext(bool $a_for_rss_use=false, $a_time_period=0, string $a_starting_date="", bool $a_no_auto_generated=false, bool $a_oldest_first=false, int $a_limit=0, array $a_exclude=[])
Query news for a context.
static _setUnread(int $a_user_id, int $a_news_id)
Set item unread.
setContentType(string $a_content_type="text")
setTitle(string $a_title)
static _lookupVisibility(int $a_news_id)
Lookup News Visibility.
static preloadData(array $ref_ids)
Preload data to internal cache.
const NEWS_NOTICE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static determineNewsTitle(string $a_context_obj_type, string $a_title, bool $a_content_is_lang_var, int $a_agg_ref_id=0, array $a_aggregation=[], ?ilLanguage $lng=null)
Determine title for news item entry.
deliverMobFile(string $a_purpose="Standard", bool $a_increase_download_cnt=false)
Deliver mob file.
setContent(string $a_content)
setContextObjId(int $a_context_obj_id)
setCreationDate(string $a_creation_date)
aggregateFiles(array $news, int $a_ref_id)
static _lookupMobId(int $a_news_id)
Lookup mob id.
static lookupTxtById(string $plugin_id, string $lang_var)
static redirect(string $a_script)
setUserId(int $a_user_id)
A news item can be created by different sources.
static getPrivateFeedId()
bool $content_text_is_lang_var
static getFirstNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Get first new id of news set related to a certain context.
static prepareNewsDataFromCache(array $a_cres)
Prepare news data from cache.
setMobPlayCounter(int $a_val)
queryNewsForMultipleContexts(array $a_contexts, bool $a_for_rss_use=false, $a_time_period=0, string $a_starting_date="", bool $a_no_auto_generated=false, int $a_user_id=null, int $a_limit=0, array $a_exclude=[])
setContentTextIsLangVar(bool $a_val=false)
static _setRead(int $a_user_id, int $a_news_id)
Set item read.
static _lookupMediaObjectUsages(int $a_mob_id)
Lookup media object usage(s)
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
static _getMembershipByType(int $a_usr_id, array $a_type, bool $a_only_member_role=false)
get membership by type Get course or group membership
static _lookupType(int $id, bool $reference=false)
setContentIsLangVar(bool $a_content_is_lang_var=false)
setPriority(int $a_priority=1)
ilObjectDataCache $obj_data_cache
setContext(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id=0, string $a_sub_obj_type="")
Set context for news.
static _lookupContextObjId(int $a_news_id)
Context Object ID.
setUpdateDate(string $a_update_date)
static _lookupDefaultPDPeriod()
increasePlayCounter()
Increase play counter.
aggregateForums(array $news, bool $a_group_posting_sequence=false)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)