ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjBlog.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
24 class ilObjBlog extends ilObject2
25 {
26  public const NAV_MODE_LIST = 1;
27  public const NAV_MODE_MONTH = 2;
28  public const ABSTRACT_DEFAULT_SHORTEN_LENGTH = 500;
29  public const ABSTRACT_DEFAULT_IMAGE_WIDTH = 144;
30  public const ABSTRACT_DEFAULT_IMAGE_HEIGHT = 144;
31  public const NAV_MODE_LIST_DEFAULT_POSTINGS = 10;
34  protected \ILIAS\Style\Content\DomainService $content_style_domain;
35  protected \ILIAS\Notes\Service $notes_service;
36 
37  protected bool $notes = false;
38  protected bool $style = false;
39 
40  public function __construct(
41  int $a_id = 0,
42  bool $a_reference = true
43  ) {
44  global $DIC;
45 
46  $this->notes_service = $DIC->notes();
47  parent::__construct($a_id, $a_reference);
48  $this->rbac_review = $DIC->rbac()->review();
49 
50  $this->content_style_domain = $DIC
51  ->contentStyle()
52  ->domain();
53  $this->settings_manager = $DIC->blog()->internal()->domain()->blogSettings();
54  if ($this->getId() > 0) {
55  $this->blog_settings = $this->settings_manager->getByObjId($this->getId());
56  }
57  }
58 
59  protected function initType(): void
60  {
61  $this->type = "blog";
62  }
63 
64  protected function doRead(): void
65  {
66  // #14661
67  $this->setNotesStatus(
68  $this->notes_service->domain()->commentsActive($this->id)
69  );
70  $this->blog_settings = $this->settings_manager->getByObjId($this->getId());
71  }
72 
73  protected function doCreate(bool $clone_mode = false): void
74  {
75  $ilDB = $this->db;
76 
77  $this->createMetaData();
78 
79  $ilDB->manipulate("INSERT INTO il_blog (id,ppic,rss_active,approval" .
80  ",abs_shorten,abs_shorten_len,abs_image,abs_img_width,abs_img_height" .
81  ",keywords,authors,nav_mode,nav_list_mon_with_post,ov_post) VALUES (" .
82  $ilDB->quote($this->id, "integer") . "," .
83  $ilDB->quote(true, "integer") . "," .
84  $ilDB->quote(true, "integer") . "," .
85  $ilDB->quote(false, "integer") . "," .
86  $ilDB->quote(false, "integer") . "," .
87  $ilDB->quote(0, "integer") . "," .
88  $ilDB->quote(false, "integer") . "," .
89  $ilDB->quote(0, "integer") . "," .
90  $ilDB->quote(0, "integer") . "," .
91  $ilDB->quote(true, "integer") . "," .
92  $ilDB->quote(false, "integer") . "," .
93  $ilDB->quote(self::NAV_MODE_LIST, "integer") . "," .
94  $ilDB->quote(5, "integer") . "," .
95  $ilDB->quote(5, "integer") .
96  ")");
97 
98  // #14661
99  $this->notes_service->domain()->activateComments($this->id);
100  }
101 
102  protected function doDelete(): void
103  {
104  $ilDB = $this->db;
105 
106  $this->deleteMetaData();
107 
109 
110  // remove all notifications
112 
113  $ilDB->manipulate("DELETE FROM il_blog" .
114  " WHERE id = " . $ilDB->quote($this->id, "integer"));
115  }
116 
117  protected function doUpdate(): void
118  {
119  $this->updateMetaData();
120 
121  if ($this->id) {
122  // #14661
123  $this->notes_service->domain()->activateComments(
124  $this->id,
125  $this->getNotesStatus()
126  );
127  }
128  }
129 
130  protected function doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id = null): void
131  {
132  assert($new_obj instanceof ilObjBlog);
133 
134  $new_obj->setNotesStatus($this->getNotesStatus());
135  $new_obj->update();
136 
137  $this->settings_manager->clone($this->getId(), $new_obj->getId());
138 
139  // set/copy stylesheet
140  $this->content_style_domain->styleForObjId($this->getId())->cloneTo($new_obj->getId());
141 
142  $this->cloneMetaData($new_obj);
143  }
144 
145  public function getNotesStatus(): bool
146  {
147  return $this->notes;
148  }
149 
150  public function setNotesStatus(bool $a_status): void
151  {
152  $this->notes = $a_status;
153  }
154 
155  public static function sendNotification(
156  string $a_action,
157  bool $a_in_wsp,
158  int $a_blog_node_id,
159  int $a_posting_id,
160  ?string $a_comment = null
161  ): void {
162  global $DIC;
163 
164  $ilUser = $DIC->user();
165 
166  // get blog object id (repository or workspace)
167  if ($a_in_wsp) {
168  $tree = new ilWorkspaceTree($ilUser->getId()); // owner of tree is irrelevant
169  $blog_obj_id = $tree->lookupObjectId($a_blog_node_id);
170  $access_handler = new ilWorkspaceAccessHandler($tree);
171  } else {
172  $blog_obj_id = ilObject::_lookupObjId($a_blog_node_id);
173  $access_handler = null;
174  }
175  if (!$blog_obj_id) {
176  return;
177  }
178 
179  $posting = new ilBlogPosting($a_posting_id);
180 
181  // #11138
182  $ignore_threshold = ($a_action === "comment");
183 
184  $admin_only = false;
185 
186  // approval handling
187  if (!$posting->isApproved()) {
188  $blog_settings = $DIC->blog()->internal()->domain()->blogSettings()->getByObjId($blog_obj_id);
189  if ($blog_settings?->getApproval()) {
190  switch ($a_action) {
191  case "update":
192  // un-approved posting was updated - no notifications
193  return;
194 
195  case "new":
196  // un-approved posting was activated - admin-only notification
197  $admin_only = true;
198  $ignore_threshold = true;
199  $a_action = "approve";
200  break;
201  }
202  }
203  }
204 
205  // create/update news item (only in repository)
206  if (!$a_in_wsp &&
207  in_array($a_action, array("update", "new"))) {
208  $posting->handleNews(($a_action === "update"));
209  }
210 
211  // recipients
214  $blog_obj_id,
215  $a_posting_id,
216  $ignore_threshold
217  );
218  if (!count($users)) {
219  return;
220  }
221 
222  $ntf = new ilSystemNotification($a_in_wsp);
223  $ntf->setLangModules(array("blog"));
224  $ntf->setRefId($a_blog_node_id);
225  $ntf->setChangedByUserId($ilUser->getId());
226  $ntf->setSubjectLangId('blog_change_notification_subject');
227  $ntf->setIntroductionLangId('blog_change_notification_body_' . $a_action);
228  $ntf->addAdditionalInfo('blog_posting', $posting->getTitle());
229  if ($a_comment) {
230  $ntf->addAdditionalInfo('comment', $a_comment, true);
231  }
232  $ntf->setGotoLangId('blog_change_notification_link');
233  $ntf->setReasonLangId('blog_change_notification_reason');
234 
235  $abstract = $posting->getNotificationAbstract();
236  if ($abstract) {
237  $ntf->addAdditionalInfo('content', $abstract, true);
238  }
239 
240  $notified = $ntf->sendMailAndReturnRecipients(
241  $users,
242  "_" . $a_posting_id,
243  ($admin_only ? "write" : "read")
244  );
245 
246  // #14387
247  if (count($notified)) {
248  ilNotification::updateNotificationTime(ilNotification::TYPE_BLOG, $blog_obj_id, $notified, $a_posting_id);
249  }
250  }
251 
255  public static function deliverRSS(string $a_wsp_id): void
256  {
257  global $DIC;
258 
259  $ilSetting = $DIC->settings();
260 
261  if (!$ilSetting->get('enable_global_profiles')) {
262  return;
263  }
264 
265  // #10827
266  if (!str_ends_with($a_wsp_id, "_cll")) {
267  $wsp_id = new ilWorkspaceTree(0);
268  $obj_id = $wsp_id->lookupObjectId((int) $a_wsp_id);
269  $is_wsp = "_wsp";
270  $pl = $DIC->blog()->internal()->gui()->permanentLink(0, (int) $a_wsp_id);
271  } else {
272  $a_wsp_id = substr($a_wsp_id, 0, -4);
273  $obj_id = ilObject::_lookupObjId((int) $a_wsp_id);
274  $is_wsp = null;
275  $pl = $DIC->blog()->internal()->gui()->permanentLink((int) $a_wsp_id);
276  }
277  if (!$obj_id) {
278  return;
279  }
280 
281  $blog_settings = $DIC->blog()->internal()->domain()->blogSettings()
282  ->getByObjId($obj_id);
283  if (!$blog_settings?->getRSS()) {
284  return;
285  }
286 
287  $blog = new self($obj_id, false);
288  $feed = new ilFeedWriter();
289 
290  $url = $pl->getPermanentLink();
291  $url = str_replace("&", "&amp;", $url);
292 
293  // #11870
294  $feed->setChannelTitle(str_replace("&", "&amp;", $blog->getTitle()));
295  $feed->setChannelDescription(str_replace("&", "&amp;", $blog->getDescription()));
296  $feed->setChannelLink($url);
297 
298  // needed for blogpostinggui / pagegui
299  $tpl = new ilGlobalTemplate("tpl.main.html", true, true);
300 
301  foreach (ilBlogPosting::getAllPostings($obj_id) as $item) {
302  $id = $item["id"];
303 
304  // only published items
305  $is_active = ilBlogPosting::_lookupActive($id, "blp");
306  if (!$is_active) {
307  continue;
308  }
309 
310  // #16434
311  $snippet = strip_tags(ilBlogPostingGUI::getSnippet($id), "<br><br/><div><p>");
312  $snippet = str_replace("&", "&amp;", $snippet);
313  $snippet = "<![CDATA[" . $snippet . "]]>";
314 
315  $url = $pl->getPermanentLink((int) $id);
316  $url = str_replace("&", "&amp;", $url);
317 
318  $feed_item = new ilFeedItem();
319  $feed_item->setTitle(str_replace("&", "&amp;", $item["title"])); // #16022
320  $feed_item->setDate($item["created"]->get(IL_CAL_DATETIME));
321  $feed_item->setDescription($snippet);
322  $feed_item->setLink($url);
323  $feed_item->setAbout($url);
324  $feed->addItem($feed_item);
325  }
326 
327  $feed->showFeed();
328  exit();
329  }
330 
331  public function initDefaultRoles(): void
332  {
334  'il_blog_contributor_' . $this->getRefId(),
335  "Contributor of blog obj_no." . $this->getId(),
336  'il_blog_contributor',
337  $this->getRefId()
338  );
339 
341  'il_blog_editor_' . $this->getRefId(),
342  "Editor of blog obj_no." . $this->getId(),
343  'il_blog_editor',
344  $this->getRefId()
345  );
346  }
347 
348  public function getLocalContributorRole(int $a_node_id): int
349  {
350  foreach ($this->rbac_review->getLocalRoles($a_node_id) as $role_id) {
351  if (str_starts_with(ilObject::_lookupTitle($role_id), "il_blog_contributor")) {
352  return $role_id;
353  }
354  }
355  return 0;
356  }
357 
358  public function getLocalEditorRole(int $a_node_id): int
359  {
360  foreach ($this->rbac_review->getLocalRoles($a_node_id) as $role_id) {
361  if (strpos(ilObject::_lookupTitle($role_id), "il_blog_editor") === 0) {
362  return $role_id;
363  }
364  }
365  return 0;
366  }
367 
368  public function getAllLocalRoles(int $a_node_id): array
369  {
370  $res = array();
371  foreach ($this->rbac_review->getLocalRoles($a_node_id) as $role_id) {
373  }
374 
375  asort($res);
376  return $res;
377  }
378 
379  public function getRolesWithContributeOrRedact(int $a_node_id): array
380  {
381  $contr_op_id = ilRbacReview::_getOperationIdByName("contribute");
382  $redact_op_id = ilRbacReview::_getOperationIdByName("redact");
383  $contr_role_id = $this->getLocalContributorRole($a_node_id);
384  $editor_role_id = $this->getLocalEditorRole($a_node_id);
385 
386  $res = array();
387  foreach ($this->rbac_review->getParentRoleIds($a_node_id) as $role_id => $role) {
388  if ($role_id != $contr_role_id &&
389  $role_id != $editor_role_id) {
390  $all_ops = $this->rbac_review->getActiveOperationsOfRole($a_node_id, $role_id);
391  if (in_array($contr_op_id, $all_ops) ||
392  in_array($redact_op_id, $all_ops)) {
393  $res[$role_id] = ilObjRole::_getTranslation($role["title"]);
394  }
395  }
396  }
397 
398  return $res;
399  }
400 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ABSTRACT_DEFAULT_IMAGE_WIDTH
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
$res
Definition: ltiservices.php:66
Settings $blog_settings
const NAV_MODE_LIST_DEFAULT_POSTINGS
Class ilBlogPosting.
const IL_CAL_DATETIME
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
cloneMetaData(ilObject $target_obj)
special template class to simplify handling of ITX/PEAR
SettingsManager $settings_manager
getLocalContributorRole(int $a_node_id)
getRolesWithContributeOrRedact(int $a_node_id)
ILIAS Style Content DomainService $content_style_domain
ilTree $tree
setNotesStatus(bool $a_status)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const NAV_MODE_LIST
static createDefaultRole(string $a_title, string $a_description, string $a_tpl_name, int $a_ref_id)
$url
Definition: shib_logout.php:66
getAllLocalRoles(int $a_node_id)
static getSnippet(int $a_id, bool $a_truncate=false, int $a_truncate_length=500, string $a_truncate_sign="...", bool $a_include_picture=false, int $a_picture_width=144, int $a_picture_height=144, ?string $a_export_directory=null)
Get first text paragraph of page.
const ABSTRACT_DEFAULT_SHORTEN_LENGTH
static getNotificationsForObject(int $type, int $id, ?int $page_id=null, bool $ignore_threshold=false)
Get all users/recipients for given object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deleteAllBlogPostings(int $a_blog_id)
Delete all postings for blog.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(int $a_id=0, bool $a_reference=true)
static sendNotification(string $a_action, bool $a_in_wsp, int $a_blog_node_id, int $a_posting_id, ?string $a_comment=null)
static _lookupTitle(int $obj_id)
const ABSTRACT_DEFAULT_IMAGE_HEIGHT
static _getTranslation(string $a_role_title)
ilDBInterface $db
global $DIC
Definition: shib_login.php:22
static deliverRSS(string $a_wsp_id)
Deliver blog as rss feed.
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=null)
static updateNotificationTime(int $type, int $id, array $user_ids, ?int $page_id=null, bool $activate_new_entries=true)
Update the last mail timestamp for given object and users.
static _getOperationIdByName(string $a_operation)
get operation id by name of operation
global $ilSetting
Definition: privfeed.php:31
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
getLocalEditorRole(int $a_node_id)
static removeForObject(int $type, int $id)
Remove all notifications for given object.
const NAV_MODE_MONTH
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
doCreate(bool $clone_mode=false)
ILIAS Notes Service $notes_service