54 protected int $id = 0;
82 $this->main_tpl = $DIC->ui()->mainTemplate();
84 $this->db = $DIC->database();
85 $this->tree = $DIC->repositoryTree();
86 $this->
access = $DIC->access();
87 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
88 $this->
user = $DIC->user();
89 $this->
lng = $DIC->language();
90 $this->
ctrl = $DIC->ctrl();
95 $this->limitation =
true;
96 $this->log = $DIC->logger()->news();
97 $this->media_manager = $DIC->mediaObjects()->internal()->domain()->mediaObject();
100 public function setId(
int $a_id): void
112 $this->title = $a_title;
122 $this->content = $a_content;
132 $this->context_obj_id = $a_context_obj_id;
142 $this->context_obj_type = $a_context_obj_type;
152 $this->context_sub_obj_id = $a_context_sub_obj_id;
162 $this->context_sub_obj_type = $a_context_sub_obj_type;
172 $this->content_type = $a_content_type;
182 $this->creation_date = $a_creation_date;
192 $this->update_date = $a_update_date;
202 $this->user_id = $a_user_id;
212 $this->update_user_id = $a_val;
224 string $a_visibility =
"users" 226 $this->visibility = $a_visibility;
239 $this->content_long = $a_content_long;
249 $this->priority = $a_priority;
258 bool $a_content_is_lang_var =
false 260 $this->content_is_lang_var = $a_content_is_lang_var;
270 $this->mob_id = $a_mob_id;
283 $this->playtime = $a_playtime;
296 $this->limitation = $a_limitation;
306 $this->content_text_is_lang_var = $a_val;
316 $this->mob_cnt_play = $a_val;
326 $this->mob_cnt_download = $a_val;
336 $this->content_html = $a_val;
352 $query =
"SELECT * FROM il_news_item WHERE id = " .
354 $set =
$ilDB->query($query);
355 if ($rec =
$ilDB->fetchAssoc($set)) {
356 $this->
setTitle((
string) $rec[
"title"]);
372 $this->
setMobId((
int) $rec[
"mob_id"]);
390 $ilDB->insert(
"il_news_item", [
391 "id" => [
"integer", $this->
getId()],
392 "title" => [
"text", $this->
getTitle()],
402 "user_id" => [
"integer", $this->
getUserId()],
409 "mob_id" => [
"integer", $this->
getMobId()],
415 $max_items = $news_set->get(
"max_items");
416 if ($max_items <= 0) {
423 $query =
"SELECT count(*) cnt " .
424 "FROM il_news_item " .
431 $set =
$ilDB->query($query);
432 $rec =
$ilDB->fetchAssoc($set);
436 $query =
"SELECT * " .
437 "FROM il_news_item " .
443 " ORDER BY creation_date ASC";
445 $ilDB->setLimit($rec[
"cnt"] - $max_items, 0);
446 $del_set =
$ilDB->query($query);
447 while ($del_item =
$ilDB->fetchAssoc($del_set)) {
448 $del_news =
new ilNewsItem((
int) $del_item[
"id"]);
461 public function update(
bool $a_as_new =
false): void
466 "title" => [
"text", $this->
getTitle()],
474 "user_id" => [
"integer", $this->
getUserId()],
481 "mob_id" => [
"integer", $this->
getMobId()],
489 $fields[
"creation_date"] = [
"timestamp", $now];
491 $fields[
"update_date"] = [
"timestamp", $now];
493 $ilDB->update(
"il_news_item", $fields, [
494 "id" => [
"integer", $this->
getId()]
505 bool $a_only_public =
false,
506 bool $a_prevent_aggregation =
false,
509 bool $no_auto_generated =
false,
510 array $excluded = [],
515 $ilAccess = $DIC->access();
527 $pd_items = $fav_rep->getFavouritesOfUser($a_user_id);
528 foreach ($pd_items as $item) {
529 if (!in_array($item[
"ref_id"], $ref_ids)) {
530 $ref_ids[] = (
int) $item[
"ref_id"];
537 $items = array_merge($crs_mbs, $grp_mbs);
538 foreach ($items as $i) {
540 if (is_array($item_references) && count($item_references)) {
541 foreach ($item_references as
$ref_id) {
542 if (!in_array($ref_id, $ref_ids)) {
552 foreach ($ref_ids as
$ref_id) {
553 if (!$a_only_public) {
555 $acc = $ilAccess->checkAccessOfUser($a_user_id,
"read",
"", $ref_id);
561 if (self::getPrivateFeedId() > 0) {
564 $rbacsystem = $DIC->rbac()->system();
565 $acc = $rbacsystem->checkAccessOfUser(self::getPrivateFeedId(),
"read", $ref_id);
574 $news = $news_item->getNewsForRefId(
579 $a_prevent_aggregation,
589 if (!is_null($a_cnt)) {
590 $a_cnt[
$ref_id] = count($news);
599 array_splice(
$data, $a_limit);
614 bool $a_only_public =
false,
615 bool $a_stopnesting =
false,
617 bool $a_prevent_aggregation =
true,
618 bool $a_forum_group_sequences =
false,
619 bool $a_no_auto_generated =
false,
620 bool $a_ignore_date_filter =
false,
621 ?
int $a_user_id =
null,
623 array $a_excluded = []
630 if ($obj_type ===
"grp" || $obj_type ===
"crs") {
651 "hide_news_per_date",
655 if ($hide_news_per_date && !$a_ignore_date_filter) {
665 if ($obj_type ===
"cat" && !$a_stopnesting) {
670 $a_prevent_aggregation,
672 $a_no_auto_generated,
675 } elseif (($obj_type ===
"grp" || $obj_type ===
"crs") &&
681 $a_prevent_aggregation,
683 $a_no_auto_generated,
690 $news_item->setContextObjId($obj_id);
691 $news_item->setContextObjType($obj_type);
692 $news = $news_item->queryNewsForContext(
696 $a_no_auto_generated,
702 foreach ($news as $k => $v) {
703 if (!$a_only_public || $v[
"visibility"] ==
NEWS_PUBLIC ||
704 ($v[
"priority"] == 0 &&
707 "public_notifications",
711 $news[$k][
"ref_id"] = $a_ref_id;
716 foreach ($unset as $un) {
721 if (!$a_prevent_aggregation) {
723 } elseif ($a_forum_group_sequences) {
737 bool $a_only_public =
false,
739 bool $a_prevent_aggregation =
false,
740 string $a_starting_date =
"",
741 bool $a_no_auto_generated =
false,
742 ?
int $a_user_id =
null,
744 array $a_exclude = []
767 foreach ($nodes as $node) {
768 $ref_ids[] = (
int) $node[
"child"];
769 $obj_ids[] = (
int) $node[
"obj_id"];
772 $ilObjDataCache->preloadReferenceCache($ref_ids);
773 if (!$a_only_public) {
778 $news_obj_ids = self::filterObjIdsPerNews($obj_ids, $a_time_period, $a_starting_date);
783 foreach ($nodes as $node) {
785 if (!in_array($node[
"obj_id"], $news_obj_ids)) {
789 if (!$a_only_public) {
791 $acc = $ilAccess->checkAccess(
"read",
"", (
int) $node[
"child"]);
793 $acc = $ilAccess->checkAccessOfUser(
805 $ref_id[$node[
"obj_id"]] = $node[
"child"];
807 "obj_id" => $node[
"obj_id"],
808 "obj_type" => $node[
"type"]
818 $a_no_auto_generated,
825 foreach ($news as $k => $v) {
826 $news[$k][
"ref_id"] =
$ref_id[$v[
"context_obj_id"]];
832 if (!$a_prevent_aggregation) {
844 bool $a_group_posting_sequence =
false 848 $last_aggregation_forum = 0;
851 foreach ($news as $k => $v) {
852 if ($a_group_posting_sequence && $last_aggregation_forum > 0 &&
853 $last_aggregation_forum != $v[
"context_obj_id"]) {
854 $forums[$last_aggregation_forum] =
null;
857 if ($v[
"context_obj_type"] ===
"frm") {
858 if (!isset($forums[$v[
"context_obj_id"]])) {
860 $forums[$v[
"context_obj_id"]] = $k;
861 $last_aggregation_forum = $v[
"context_obj_id"];
866 $news[$k][
"no_context_title"] =
true;
869 $news[$forums[$news[$k][
"context_obj_id"]]][
"aggregation"][$k]
871 $news[$k][
"agg_ref_id"]
872 = $news[$k][
"ref_id"];
873 $news[$k][
"content"] =
"";
874 $news[$k][
"content_long"] =
"";
879 foreach ($to_del as $k) {
896 foreach ($news as $k => $v) {
898 if ($v[
"context_obj_type"] ===
"file") {
899 if ($first_file ===
"") {
904 $news[$first_file][
"aggregation"][$k] = $v;
905 $news[$first_file][
"agg_ref_id"] = $a_ref_id;
906 $news[$first_file][
"ref_id"] = $a_ref_id;
910 foreach ($to_del as $v) {
924 bool $a_only_public =
false,
925 int $a_time_period = 0,
926 bool $a_prevent_aggregation =
false,
927 string $a_starting_date =
"",
928 bool $a_no_auto_generated =
false,
929 array $a_excluded = []
942 $a_no_auto_generated,
948 foreach (
$data as $k => $v) {
949 $data[$k][
"ref_id"] = $a_ref_id;
957 foreach ($nodes as $node) {
958 $obj_ids[] = $node[
"obj_id"];
960 $news_obj_ids = self::filterObjIdsPerNews($obj_ids, $a_time_period, $a_starting_date);
965 foreach ($nodes as $node) {
967 if (!in_array($node[
"obj_id"], $news_obj_ids)) {
971 if (!$a_only_public && !$ilAccess->checkAccess(
"read",
"", (
int) $node[
"child"])) {
974 $ref_id[$node[
"obj_id"]] = $node[
"child"];
976 "obj_id" => $node[
"obj_id"],
977 "obj_type" => $node[
"type"]
986 $a_no_auto_generated,
991 foreach ($news as $k => $v) {
992 $news[$k][
"ref_id"] =
$ref_id[$v[
"context_obj_id"]];
999 if (!$a_prevent_aggregation) {
1012 int $a_sub_obj_id = 0,
1013 string $a_sub_obj_type =
"" 1028 if (is_numeric($a_time_period)) {
1029 if ($a_time_period > 0) {
1030 return date(
'Y-m-d H:i:s', time() - ($a_time_period * 24 * 60 * 60));
1034 elseif (preg_match(
"/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/", $a_time_period)) {
1035 return $a_time_period;
1046 bool $a_for_rss_use =
false,
1048 string $a_starting_date =
"",
1049 bool $a_no_auto_generated =
false,
1050 bool $a_oldest_first =
false,
1052 array $a_exclude = []
1058 if ($a_time_period > 0) {
1059 $limit_ts = self::handleTimePeriod($a_time_period);
1060 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1063 if ($a_starting_date !==
"") {
1064 $and .=
" AND creation_date > " .
$ilDB->quote($a_starting_date,
"timestamp") .
" ";
1067 if ($a_no_auto_generated) {
1068 $and .=
" AND priority = 1 AND content_type = " .
$ilDB->quote(
"text",
"text") .
" ";
1077 if (count($a_exclude) > 0) {
1078 $and .=
" AND " .
$ilDB->in(
"id", $a_exclude,
true,
"integer") .
" ";
1081 $ordering = ($a_oldest_first)
1082 ?
" creation_date ASC, id ASC " 1083 :
" creation_date DESC, id DESC ";
1085 if ($a_for_rss_use && self::getPrivateFeedId() === 0) {
1086 $query =
"SELECT * " .
1087 "FROM il_news_item " .
1092 " ORDER BY " . $ordering;
1093 } elseif (self::getPrivateFeedId() > 0) {
1094 $query =
"SELECT il_news_item.* " .
1095 ", il_news_read.user_id user_read " .
1096 "FROM il_news_item LEFT JOIN il_news_read " .
1097 "ON il_news_item.id = il_news_read.news_id AND " .
1098 " il_news_read.user_id = " .
$ilDB->quote(self::getPrivateFeedId(),
"integer") .
1103 " ORDER BY " . $ordering;
1105 $query =
"SELECT il_news_item.* " .
1106 ", il_news_read.user_id as user_read " .
1107 "FROM il_news_item LEFT JOIN il_news_read " .
1108 "ON il_news_item.id = il_news_read.news_id AND " .
1109 " il_news_read.user_id = " .
$ilDB->quote($ilUser->getId(),
"integer") .
1111 "context_obj_id = " .
$ilDB->quote($this->getContextObjId(),
"integer") .
1112 " AND context_obj_type = " .
$ilDB->quote($this->getContextObjType(),
"text") .
1114 " ORDER BY " . $ordering;
1117 $set =
$ilDB->query($query);
1119 while ($rec =
$ilDB->fetchAssoc($set)) {
1120 if ($a_limit > 0 && count($result) >= $a_limit) {
1123 if (!$a_for_rss_use || (self::getPrivateFeedId() > 0) || ($rec[
"visibility"] ===
NEWS_PUBLIC ||
1124 ((
int) $rec[
"priority"] === 0 &&
1127 "public_notifications",
1129 (
int) $rec[
"context_obj_id"]
1131 $result[$rec[
"id"]] = $rec;
1140 if ($a_time_period && $a_for_rss_use) {
1147 if ($keep_rss_min > 0) {
1152 $a_no_auto_generated,
1154 (
int) $keep_rss_min,
1171 $ilDB = $DIC->database();
1173 $set =
$ilDB->query(
"SELECT * FROM il_news_item " .
1174 " WHERE " .
$ilDB->in(
"id", $a_news_ids,
false,
"integer"));
1175 while ($rec =
$ilDB->fetchAssoc($set)) {
1176 $news[$rec[
"id"]] = $rec;
1194 $this->log->debug(
"time period: " . $a_time_period);
1195 $limit_ts = self::handleTimePeriod($a_time_period);
1198 $query =
$ilDB->query(
$q =
"SELECT id,context_obj_id,context_obj_type" .
1199 " FROM il_news_item" .
1200 " WHERE " .
$ilDB->in(
"context_obj_id", array_keys($objects),
false,
"integer") .
1201 " AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp"));
1202 $this->log->debug(
$q);
1203 while ($rec =
$ilDB->fetchAssoc($query)) {
1204 if ($objects[$rec[
"context_obj_id"]][
"type"] == $rec[
"context_obj_type"]) {
1205 $all[] = (
int) $rec[
"id"];
1218 bool $a_for_rss_use =
false,
1220 string $a_starting_date =
"",
1221 bool $a_no_auto_generated =
false,
1222 ?
int $a_user_id =
null,
1224 array $a_exclude = []
1230 if ($a_time_period > 0) {
1231 $limit_ts = self::handleTimePeriod($a_time_period);
1232 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1235 if ($a_starting_date !==
"") {
1236 $and .=
" AND creation_date > " .
$ilDB->quote($a_starting_date,
"timestamp") .
" ";
1239 if ($a_no_auto_generated) {
1240 $and .=
" AND priority = 1 AND content_type = " .
$ilDB->quote(
"text",
"text") .
" ";
1244 $ilDB->setLimit($a_limit, 0);
1247 if (is_array($a_exclude) && count($a_exclude) > 0) {
1248 $and .=
" AND " .
$ilDB->in(
"id", $a_exclude,
true,
"integer") .
" ";
1254 foreach ($a_contexts as $cont) {
1255 $ids[] = $cont[
"obj_id"];
1256 $type[$cont[
"obj_id"]] = $cont[
"obj_type"];
1259 if ($a_for_rss_use && self::getPrivateFeedId() === 0) {
1260 $query =
"SELECT * " .
1261 "FROM il_news_item " .
1263 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1265 " ORDER BY creation_date DESC ";
1266 } elseif (self::getPrivateFeedId() > 0) {
1267 $query =
"SELECT il_news_item.* " .
1268 ", il_news_read.user_id as user_read " .
1269 "FROM il_news_item LEFT JOIN il_news_read " .
1270 "ON il_news_item.id = il_news_read.news_id AND " .
1271 " il_news_read.user_id = " .
$ilDB->quote(self::getPrivateFeedId(),
"integer") .
1273 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1275 " ORDER BY creation_date DESC ";
1278 $user_id = $a_user_id;
1280 $user_id = $ilUser->getId();
1282 $query =
"SELECT il_news_item.* " .
1283 ", il_news_read.user_id as user_read " .
1284 "FROM il_news_item LEFT JOIN il_news_read " .
1285 "ON il_news_item.id = il_news_read.news_id AND " .
1286 " il_news_read.user_id = " .
$ilDB->quote($user_id,
"integer") .
1288 $ilDB->in(
"context_obj_id", $ids,
false,
"integer") .
" " .
1290 " ORDER BY creation_date DESC ";
1293 $set =
$ilDB->query($query);
1295 while ($rec =
$ilDB->fetchAssoc($set)) {
1296 if ($type[$rec[
"context_obj_id"]] == $rec[
"context_obj_type"]) {
1297 if (!$a_for_rss_use || self::getPrivateFeedId() > 0 || ($rec[
"visibility"] ===
NEWS_PUBLIC ||
1298 ((
int) $rec[
"priority"] === 0 &&
1301 "public_notifications",
1303 (
int) $rec[
"context_obj_id"]
1305 $result[$rec[
"id"]] = $rec;
1324 $ilDB = $DIC->database();
1325 $ilAppEventHandler = $DIC[
"ilAppEventHandler"];
1330 "user_id" => [
"integer", $a_user_id],
1331 "news_id" => [
"integer", $a_news_id]
1336 $ilAppEventHandler->raise(
1337 "components/ILIAS/News",
1339 [
"user_id" => $a_user_id,
"news_ids" => [$a_news_id]]
1353 $ilDB = $DIC->database();
1354 $ilAppEventHandler = $DIC[
"ilAppEventHandler"];
1356 $ilDB->manipulate(
"DELETE FROM il_news_read (user_id, news_id) VALUES (" .
1357 " WHERE user_id = " .
$ilDB->quote($a_user_id,
"integer") .
1358 " AND news_id = " .
$ilDB->quote($a_news_id,
"integer"));
1360 $ilAppEventHandler->raise(
1361 "components/ILIAS/News",
1363 [
"user_id" => $a_user_id,
"news_ids" => [$a_news_id]]
1375 foreach ($n2 as $id => $news) {
1390 $tree = $DIC->repositoryTree();
1393 $default_visibility = ($news_set->get(
"default_visibility") !=
"")
1394 ? $news_set->get(
"default_visibility")
1400 foreach (
$path as $key => $row) {
1401 if (!in_array($row[
"type"], [
"root",
"cat",
"crs",
"fold",
"grp"],
true)) {
1407 "default_visibility",
1409 (
int) $row[
"obj_id"]
1412 if ($visibility !=
"") {
1418 return $default_visibility;
1426 public function delete():
void 1431 $ilDB->manipulate(
"DELETE FROM il_news_read " .
1432 " WHERE news_id = " .
$ilDB->quote($this->getId(),
"integer"));
1438 $query =
"DELETE FROM il_news_item" .
1439 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
1440 $ilDB->manipulate($query);
1455 int $a_context_obj_id,
1456 string $a_context_obj_type,
1457 int $a_context_sub_obj_id = 0,
1458 string $a_context_sub_obj_type =
"" 1462 $ilDB = $DIC->database();
1465 if ($a_context_obj_id === 0 || $a_context_obj_type ===
"") {
1469 if ($a_context_sub_obj_id > 0) {
1470 $and =
" AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1471 " AND context_sub_obj_type = " .
$ilDB->quote($a_context_sub_obj_type,
"text");
1475 $query =
"SELECT id FROM il_news_item" .
1476 " WHERE context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1477 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1480 $news_set =
$ilDB->query($query);
1483 while ($news =
$ilDB->fetchAssoc($news_set)) {
1484 $news_arr[] =
new ilNewsItem((
int) $news[
"id"]);
1494 int $a_context_obj_id,
1495 string $a_context_obj_type,
1496 int $a_context_sub_obj_id = 0,
1497 string $a_context_sub_obj_type =
"" 1499 foreach (self::getNewsOfContext(
1501 $a_context_obj_type,
1502 $a_context_sub_obj_id,
1503 $a_context_sub_obj_type
1517 $ilDB = $DIC->database();
1519 $query =
"SELECT title FROM il_news_item WHERE id = " .
1520 $ilDB->quote($a_news_id,
"integer");
1521 $set =
$ilDB->query($query);
1522 $rec =
$ilDB->fetchAssoc($set);
1523 return $rec[
"title"] ??
'';
1534 $ilDB = $DIC->database();
1536 $query =
"SELECT visibility FROM il_news_item WHERE id = " .
1537 $ilDB->quote($a_news_id,
"integer");
1538 $set =
$ilDB->query($query);
1539 $rec =
$ilDB->fetchAssoc($set);
1552 $ilDB = $DIC->database();
1554 $query =
"SELECT mob_id FROM il_news_item WHERE id = " .
1555 $ilDB->quote($a_news_id,
"integer");
1556 $set =
$ilDB->query($query);
1557 $rec =
$ilDB->fetchAssoc($set);
1558 return (
int) ($rec[
"mob_id"] ?? 0);
1570 string $a_starting_date =
"",
1571 string $a_ending_date =
'',
1572 bool $ignore_period =
false 1576 $ilDB = $DIC->database();
1579 if ($a_time_period > 0) {
1580 $limit_ts = self::handleTimePeriod($a_time_period);
1581 $and =
" AND creation_date >= " .
$ilDB->quote($limit_ts,
"timestamp") .
" ";
1584 if ($a_starting_date !==
"") {
1585 $and .=
" AND creation_date >= " .
$ilDB->quote($a_starting_date,
"timestamp");
1588 $query =
"SELECT DISTINCT(context_obj_id) AS obj_id FROM il_news_item" .
1589 " WHERE " .
$ilDB->in(
"context_obj_id", $a_obj_ids,
false,
"integer") .
" " . $and;
1592 $set =
$ilDB->query($query);
1594 while ($rec =
$ilDB->fetchAssoc($set)) {
1595 $objs[] = $rec[
"obj_id"];
1606 int $a_agg_ref_id = 0,
1607 array $a_aggregation = []
1611 $ilDB = $DIC->database();
1613 $query =
"SELECT context_obj_type, content_is_lang_var, title FROM il_news_item WHERE id = " .
1614 $ilDB->quote($a_news_id,
"integer");
1615 $set =
$ilDB->query($query);
1616 $rec =
$ilDB->fetchAssoc($set);
1618 return self::determineNewsTitle(
1619 $rec[
"context_obj_type"],
1621 $rec[
"content_is_lang_var"],
1632 string $a_context_obj_type,
1634 bool $a_content_is_lang_var,
1635 int $a_agg_ref_id = 0,
1636 array $a_aggregation = [],
1641 if (is_null($lng)) {
1642 $lng = $DIC->language();
1644 $obj_definition = $DIC[
"objDefinition"];
1647 if ($a_agg_ref_id > 0) {
1648 $cnt = count($a_aggregation);
1651 if ($a_context_obj_type ===
"frm") {
1653 return sprintf($lng->
txt(
"news_x_postings"), $cnt);
1656 return $lng->
txt(
"news_1_postings");
1660 $up_cnt = $cr_cnt = 0;
1661 foreach ($a_aggregation as $item) {
1662 if ($item[
"title"] ===
"file_updated") {
1669 if ($cr_cnt === 1) {
1670 $tit = $lng->
txt(
"news_1_file_created");
1672 } elseif ($cr_cnt > 1) {
1673 $tit = sprintf($lng->
txt(
"news_x_files_created"), $cr_cnt);
1676 if ($up_cnt === 1) {
1677 $tit .= $sep . $lng->
txt(
"news_1_file_updated");
1678 } elseif ($up_cnt > 1) {
1679 $tit .= $sep . sprintf($lng->
txt(
"news_x_files_updated"), $up_cnt);
1684 if ($a_content_is_lang_var) {
1685 if ($obj_definition->isPlugin($a_context_obj_type)) {
1688 return $lng->
txt($a_title);
1699 string $a_context_obj_type,
1701 bool $a_is_lang_var,
1706 if (is_null($lng)) {
1707 $lng = $DIC->language();
1709 $obj_definition = $DIC[
"objDefinition"];
1711 if ($a_is_lang_var) {
1712 if ($obj_definition->isPlugin($a_context_obj_type)) {
1716 return $lng->
txt($a_content);
1727 int $a_context_obj_id,
1728 string $a_context_obj_type,
1729 int $a_context_sub_obj_id = 0,
1730 string $a_context_sub_obj_type =
"" 1734 $ilDB = $DIC->database();
1737 $query =
"SELECT id " .
1738 "FROM il_news_item " .
1740 "context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1741 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1742 " AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1743 " AND " .
$ilDB->equals(
"context_sub_obj_type", $a_context_sub_obj_type,
"text",
true);
1745 $set =
$ilDB->query($query);
1746 $rec =
$ilDB->fetchAssoc($set);
1748 return (
int) ($rec[
"id"] ?? 0);
1756 int $a_context_obj_id,
1757 string $a_context_obj_type,
1758 int $a_context_sub_obj_id = 0,
1759 string $a_context_sub_obj_type =
"",
1760 bool $a_only_today =
false 1764 $ilDB = $DIC->database();
1767 $query =
"SELECT id, update_date " .
1768 "FROM il_news_item " .
1770 "context_obj_id = " .
$ilDB->quote($a_context_obj_id,
"integer") .
1771 " AND context_obj_type = " .
$ilDB->quote($a_context_obj_type,
"text") .
1772 " AND context_sub_obj_id = " .
$ilDB->quote($a_context_sub_obj_id,
"integer") .
1773 " AND " .
$ilDB->equals(
"context_sub_obj_type", $a_context_sub_obj_type,
"text",
true) .
1774 " ORDER BY update_date DESC";
1776 $ilDB->setLimit(1, 0);
1777 $set =
$ilDB->query($query);
1779 if ($rec =
$ilDB->fetchAssoc($set)) {
1780 $id = (
int) $rec[
"id"];
1781 if ($a_only_today) {
1783 if (strpos($rec[
"update_date"], substr($now, 0, 10)) !== 0) {
1801 $ilDB = $DIC->database();
1803 $query =
"SELECT id " .
1804 "FROM il_news_item " .
1806 " mob_id = " .
$ilDB->quote($a_mob_id,
"integer");
1809 $set =
$ilDB->query($query);
1810 while ($rec =
$ilDB->fetchAssoc($set)) {
1811 $usages[$rec[
"id"]] = [
"type" =>
"news",
"id" => $rec[
"id"]];
1825 $ilDB = $DIC->database();
1827 $query =
"SELECT context_obj_id " .
1828 "FROM il_news_item " .
1830 " id = " .
$ilDB->quote($a_news_id,
"integer");
1831 $set =
$ilDB->query($query);
1832 $rec =
$ilDB->fetchAssoc($set);
1834 return $rec[
"context_obj_id"];
1843 $per = $news_set->get(
"pd_period");
1844 if ((
int) $per === 0) {
1857 $allow_shorter_periods = $news_set->get(
"allow_shorter_periods");
1858 $allow_longer_periods = $news_set->get(
"allow_longer_periods");
1859 $default_per = self::_lookupDefaultPDPeriod();
1870 (!$allow_shorter_periods && ($per < $default_per)) ||
1871 (!$allow_longer_periods && ($per > $default_per))
1873 $per = $default_per;
1885 $rss_period = $news_set->get(
"rss_period");
1886 if ((
int) $rss_period === 0) {
1897 self::$privFeedId = $a_userId;
1905 return self::$privFeedId;
1913 string $a_purpose =
"Standard",
1914 bool $a_increase_download_cnt =
false 1921 if (!$mob->hasPurposeItem($a_purpose)) {
1925 $m_item = $mob->getMediaItem($a_purpose);
1926 if ($m_item->getLocationType() !==
"Reference") {
1927 $this->media_manager->deliverEntry($mob->getId(),
"/" . $m_item->getLocation());
1928 if ($a_increase_download_cnt) {
1931 $this->main_tpl->setOnScreenMessage(
'failure',
"File not found!",
true);
1935 if ($a_increase_download_cnt) {
1955 "UPDATE il_news_item SET " .
1956 " mob_cnt_download = " .
$ilDB->quote($cnt,
"integer") .
1957 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer")
1974 "UPDATE il_news_item SET " .
1975 " mob_cnt_play = " .
$ilDB->quote($cnt,
"integer") .
1976 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer")
1988 $ilDB = $DIC->database();
1991 $news_ids = array_keys(
$data);
1992 $set =
$ilDB->query(
"SELECT id FROM il_news_item " .
1993 " WHERE " .
$ilDB->in(
"id", $news_ids,
false,
"integer"));
1995 while ($rec =
$ilDB->fetchAssoc($set)) {
1996 $existing_ids[] = (
int) $rec[
"id"];
1999 $existing_news = [];
2000 foreach (
$data as $k => $v) {
2001 if (in_array($k, $existing_ids)) {
2002 $existing_news[$k] = $v;
2006 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
MediaObjectManager $media_manager
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.
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)
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.
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 queryNewsByIds(array $a_news_ids)
Query news data by news ids.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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)
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=[])
static _lookupVisibility(int $a_news_id)
Lookup News Visibility.
static preloadData(array $ref_ids)
Preload data to internal cache.
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.
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.
static prepareNewsDataFromCache(array $a_cres)
Prepare news data from cache.
setMobPlayCounter(int $a_val)
setContentTextIsLangVar(bool $a_val=false)
static _setRead(int $a_user_id, int $a_news_id)
Set item read.
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
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)