ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBlogPosting.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  protected string $title = "";
29  protected ?ilDateTime $created = null;
30  protected int $blog_node_id = 0;
31  protected bool $blog_node_is_wsp = false;
32  protected int $author = 0;
33  protected bool $approved = false;
34  protected ?ilDateTime $withdrawn = null;
35 
36  public function getParentType(): string
37  {
38  return "blp";
39  }
40 
41  public function setTitle(string $a_title): void
42  {
43  $this->title = $a_title;
44  }
45 
46  public function getTitle(): string
47  {
48  return $this->title;
49  }
50 
51  public function setBlogId(int $a_id): void
52  {
53  $this->setParentId($a_id);
54  }
55 
56  public function getBlogId(): int
57  {
58  return $this->getParentId();
59  }
60 
61  public function setCreated(ilDateTime $a_date): void
62  {
63  $this->created = $a_date;
64  }
65 
66  public function getCreated(): ilDateTime
67  {
68  return $this->created;
69  }
70 
71  public function setAuthor(int $a_id): void
72  {
73  $this->author = $a_id;
74  }
75 
76  public function getAuthor(): int
77  {
78  return $this->author;
79  }
80 
81  public function setApproved(bool $a_status): void
82  {
83  $this->approved = $a_status;
84  }
85 
86  public function isApproved(): bool
87  {
88  return $this->approved;
89  }
90 
94  public function setWithdrawn(
95  ilDateTime $a_date
96  ): void {
97  $this->withdrawn = $a_date;
98  }
99 
103  public function getWithdrawn(): ?ilDateTime
104  {
105  return $this->withdrawn;
106  }
107 
111  public function create(
112  bool $a_import = false
113  ): void {
114  $ilDB = $this->db;
115 
116  $id = $ilDB->nextId("il_blog_posting");
117  $this->setId($id);
118 
119  if (!$a_import) {
120  $created = ilUtil::now();
121  } else {
122  $created = $this->getCreated()->get(IL_CAL_DATETIME);
123  }
124 
125  // we are using a separate creation date to enable sorting without JOINs
126  $withdrawn = $this->getWithdrawn()?->get(IL_CAL_DATETIME);
127  $query = "INSERT INTO il_blog_posting (id, title, blog_id, created, author, approved, last_withdrawn)" .
128  " VALUES (" .
129  $ilDB->quote($this->getId(), "integer") . "," .
130  $ilDB->quote($this->getTitle(), "text") . "," .
131  $ilDB->quote($this->getBlogId(), "integer") . "," .
132  $ilDB->quote($created, "timestamp") . "," .
133  $ilDB->quote($this->getAuthor(), "integer") . "," .
134  $ilDB->quote($this->isApproved(), "integer") . "," . // #16526 - import
135  $ilDB->quote($withdrawn, "timestamp") . ")";
136  $ilDB->manipulate($query);
137 
138  if (!$a_import) {
139  parent::create($a_import);
140  // $this->saveInternalLinks($this->getXMLContent());
141  }
142  }
143 
144  public function update(
145  bool $a_validate = true,
146  bool $a_no_history = false,
147  bool $a_notify = true,
148  string $a_notify_action = "update"
149  ) {
150  $ilDB = $this->db;
151 
152  // blog_id, author and created cannot be changed
153  $withdrawn = $this->getWithdrawn()?->get(IL_CAL_DATETIME);
154  $query = "UPDATE il_blog_posting SET" .
155  " title = " . $ilDB->quote($this->getTitle(), "text") .
156  ",created = " . $ilDB->quote($this->getCreated()->get(IL_CAL_DATETIME), "timestamp") .
157  ",approved =" . $ilDB->quote($this->isApproved(), "integer") .
158  ",last_withdrawn =" . $ilDB->quote($withdrawn, "timestamp") .
159  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
160  $ilDB->manipulate($query);
161 
162  $ret = parent::update($a_validate, $a_no_history);
163 
164  if ($a_notify && $this->getActive()) {
165  ilObjBlog::sendNotification($a_notify_action, $this->blog_node_is_wsp, $this->blog_node_id, $this->getId());
166  }
167 
168  return $ret;
169  }
170 
174  public function read(): void
175  {
176  $ilDB = $this->db;
177 
178  $query = "SELECT * FROM il_blog_posting" .
179  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
180  $set = $ilDB->query($query);
181  $rec = $ilDB->fetchAssoc($set);
182 
183  $this->setTitle($rec["title"]);
184  $this->setBlogId($rec["blog_id"]);
185  $this->setCreated(new ilDateTime($rec["created"], IL_CAL_DATETIME));
186  $this->setAuthor($rec["author"]);
187  if ($rec["approved"]) {
188  $this->setApproved(true);
189  }
190  $this->setWithdrawn(new ilDateTime($rec["last_withdrawn"], IL_CAL_DATETIME));
191 
192  // when posting is deactivated it should loose the approval
193  $this->addUpdateListener($this, "checkApproval");
194 
195  parent::read();
196  }
197 
198  public function checkApproval(): void
199  {
200  if (!$this->getActive() && $this->isApproved()) {
201  $this->approved = false;
202  $this->update();
203  }
204  }
205 
209  public function delete(): void
210  {
211  $ilDB = $this->db;
212 
214  $this->getBlogId(),
215  "blog",
216  $this->getId(),
217  $this->getParentType()
218  );
219 
220  $query = "DELETE FROM il_blog_posting" .
221  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
222  $ilDB->manipulate($query);
223 
224  parent::delete();
225  }
226 
230  public function unpublish(): void
231  {
232  $this->setApproved(false);
233  $this->setActive(false);
235  $this->update(true, false, false);
236 
238  $this->getBlogId(),
239  "blog",
240  $this->getId(),
241  $this->getParentType()
242  );
243  }
244 
245 
249  public static function deleteAllBlogPostings(
250  int $a_blog_id
251  ): void {
252  global $DIC;
253 
254  $ilDB = $DIC->database();
255  $lom_services = $DIC->learningObjectMetadata();
256 
257  $query = "SELECT * FROM il_blog_posting" .
258  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer");
259  $set = $ilDB->query($query);
260  while ($rec = $ilDB->fetchAssoc($set)) {
261  // delete lom
262  $lom_services->deleteAll($a_blog_id, $rec["id"], "blp");
263 
264  $post = new ilBlogPosting($rec["id"]);
265  $post->delete();
266  }
267  }
268 
269  public static function lookupBlogId(
270  int $a_posting_id
271  ): ?int {
272  global $DIC;
273 
274  $ilDB = $DIC->database();
275 
276  $query = "SELECT blog_id FROM il_blog_posting" .
277  " WHERE id = " . $ilDB->quote($a_posting_id, "integer");
278  $set = $ilDB->query($query);
279  if ($rec = $ilDB->fetchAssoc($set)) {
280  return (int) $rec["blog_id"];
281  }
282  return null;
283  }
284 
288  public static function getAllPostings(
289  int $a_blog_id,
290  int $a_limit = 1000,
291  int $a_offset = 0
292  ): array {
293  global $DIC;
294 
295  $ilDB = $DIC->database();
296 
297  $pages = parent::getAllPages("blp", $a_blog_id);
298 
299  if ($a_limit) {
300  $ilDB->setLimit($a_limit, $a_offset);
301  }
302 
303  $query = "SELECT * FROM il_blog_posting" .
304  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer") .
305  " ORDER BY created DESC";
306  $set = $ilDB->query($query);
307  $post = array();
308  while ($rec = $ilDB->fetchAssoc($set)) {
309  if (isset($pages[$rec["id"]])) {
310  $post[$rec["id"]] = $pages[$rec["id"]];
311  $post[$rec["id"]]["title"] = $rec["title"];
312  $post[$rec["id"]]["created"] = new ilDateTime($rec["created"], IL_CAL_DATETIME);
313  $post[$rec["id"]]["author"] = $rec["author"];
314  $post[$rec["id"]]["approved"] = (bool) $rec["approved"];
315  $post[$rec["id"]]["last_withdrawn"] = new ilDateTime($rec["last_withdrawn"], IL_CAL_DATETIME);
316 
317  foreach (self::getPageContributors("blp", $rec["id"]) as $editor) {
318  if ($editor["user_id"] != $rec["author"]) {
319  $post[$rec["id"]]["editors"][] = $editor["user_id"];
320  }
321  }
322  }
323  }
324 
325  return $post;
326  }
327 
331  public static function exists(
332  int $a_blog_id,
333  int $a_posting_id
334  ): bool {
335  global $DIC;
336 
337  $ilDB = $DIC->database();
338 
339  $query = "SELECT id FROM il_blog_posting" .
340  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer") .
341  " AND id = " . $ilDB->quote($a_posting_id, "integer");
342  $set = $ilDB->query($query);
343  if ($rec = $ilDB->fetchAssoc($set)) {
344  return true;
345  }
346  return false;
347  }
348 
352  public static function getLastPost(
353  int $a_blog_id
354  ): int {
355  $data = self::getAllPostings($a_blog_id, 1);
356  if ($data) {
357  $keys = array_keys($data);
358  return end($keys);
359  }
360  return 0;
361  }
362 
366  public function setBlogNodeId(
367  int $a_id,
368  bool $a_is_in_workspace = false
369  ): void {
370  $this->blog_node_id = $a_id;
371  $this->blog_node_is_wsp = $a_is_in_workspace;
372  }
373 
377  public static function searchBlogsByAuthor(
378  int $a_user_id
379  ): array {
380  global $DIC;
381 
382  $ilDB = $DIC->database();
383 
384  $ids = array();
385 
386  $sql = "SELECT DISTINCT(blog_id)" .
387  " FROM il_blog_posting" .
388  " WHERE author = " . $ilDB->quote($a_user_id);
389  $set = $ilDB->query($sql);
390  while ($row = $ilDB->fetchAssoc($set)) {
391  $ids[] = (int) $row["blog_id"];
392  }
393  return $ids;
394  }
395 
396  public function getNotificationAbstract(): string
397  {
398  $snippet = ilBlogPostingGUI::getSnippet($this->getId(), true);
399 
400  // making things more readable
401  $snippet = str_replace(array('<br/>', '<br />', '</p>', '</div>'), "\n", $snippet);
402 
403  return trim(strip_tags($snippet));
404  }
405 
406 
407  // keywords
408  public function updateKeywords(
409  array $keywords
410  ): void {
411  $this->lom_services->manipulate($this->getBlogId(), $this->getId(), "blp")
412  ->prepareDelete($this->lom_services->paths()->keywords())
413  ->prepareCreateOrUpdate($this->lom_services->paths()->keywords(), ...$keywords)
414  ->execute();
415  }
416 
417  public static function getKeywords(
418  int $a_obj_id,
419  int $a_posting_id
420  ): array {
421  global $DIC;
422 
423  $lom_services = $DIC->learningObjectMetadata();
424 
425  $result = [];
426  $keywords = $lom_services->read($a_obj_id, $a_posting_id, "blp")
427  ->allData($lom_services->paths()->keywords());
428  foreach ($keywords as $keyword) {
429  if ($keyword->value() !== "") {
430  $result[] = $keyword->value();
431  }
432  }
433 
434  return $result;
435  }
436 
440  public function handleNews(
441  bool $a_update = false
442  ): void {
443  $lng = $this->lng;
444  $ilUser = $this->user;
445 
446  // see ilWikiPage::updateNews()
447 
448  if (!$this->getActive()) {
449  return;
450  }
451 
452  $news_item = null;
453 
454  // try to re-use existing news item
455  if ($a_update) {
456  // get last news item of the day (if existing)
458  $this->getBlogId(),
459  "blog",
460  $this->getId(),
461  $this->getParentType(),
462  true
463  );
464  if ($news_id > 0) {
465  $news_item = new ilNewsItem($news_id);
466  }
467  }
468 
469  // create new news item
470  if (!$news_item) {
471  $news_set = new ilSetting("news");
472  $default_visibility = $news_set->get("default_visibility", "users");
473 
474  $news_item = new ilNewsItem();
475  $news_item->setContext(
476  $this->getBlogId(),
477  "blog",
478  $this->getId(),
479  $this->getParentType()
480  );
481  $news_item->setPriority(NEWS_NOTICE);
482  $news_item->setVisibility($default_visibility);
483  }
484 
485  // news author
486  $news_item->setUserId($ilUser->getId());
487 
488 
489  // news title/content
490 
491  $news_item->setTitle($this->getTitle());
492 
493  $content = $a_update
494  ? "blog_news_posting_updated"
495  : "blog_news_posting_published";
496 
497  // news "author"
498  $content = sprintf($lng->txt($content), ilUserUtil::getNamePresentation($ilUser->getId()));
499 
500  // posting author[s]
501  $contributors = array();
502  foreach (self::getPageContributors($this->getParentType(), $this->getId()) as $user) {
503  $contributors[] = $user["user_id"];
504  }
505  if (count($contributors) > 1 || !in_array($this->getAuthor(), $contributors)) {
506  // original author should come first?
507  $authors = array(ilUserUtil::getNamePresentation($this->getAuthor()));
508  foreach ($contributors as $user_id) {
509  if ($user_id != $this->getAuthor()) {
510  $authors[] = ilUserUtil::getNamePresentation($user_id);
511  }
512  }
513  $content .= "\n" . sprintf($lng->txt("blog_news_posting_authors"), implode(", ", $authors));
514  }
515 
516  $news_item->setContentTextIsLangVar(false);
517  $news_item->setContent($content);
518 
519  $snippet = ilBlogPostingGUI::getSnippet($this->getId());
520  $news_item->setContentLong($snippet);
521 
522  if (!$news_item->getId()) {
523  $news_item->create();
524  } else {
525  $news_item->update(true);
526  }
527  }
528 
532  protected static function lookup(
533  string $a_field,
534  int $a_posting_id
535  ): ?string {
536  global $DIC;
537 
538  $db = $DIC->database();
539 
540  $set = $db->query("SELECT $a_field FROM il_blog_posting " .
541  " WHERE id = " . $db->quote($a_posting_id, "integer"));
542  $rec = $db->fetchAssoc($set);
543 
544  return $rec[$a_field] ?? null;
545  }
546 
547  public static function lookupTitle(int $a_posting_id): string
548  {
549  return (string) self::lookup("title", $a_posting_id);
550  }
551 }
getActive(bool $a_check_scheduled_activation=false)
static lookupTitle(int $a_posting_id)
static getLastPost(int $a_blog_id)
Get newest posting for blog.
Class ilBlogPosting.
const IL_CAL_DATETIME
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.
static searchBlogsByAuthor(int $a_user_id)
Get all blogs where user has postings.
setParentId(int $a_id)
setCreated(ilDateTime $a_date)
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...
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 getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
fetchAssoc(ilDBStatement $statement)
static exists(int $a_blog_id, int $a_posting_id)
Checks whether a posting exists.
update(bool $a_validate=true, bool $a_no_history=false, bool $a_notify=true, string $a_notify_action="update")
setTitle(string $a_title)
quote($value, string $type)
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.
getWithdrawn()
Get last withdrawal date.
static now()
Return current timestamp in Y-m-d H:i:s format.
handleNews(bool $a_update=false)
Handle news item.
static deleteAllBlogPostings(int $a_blog_id)
Delete all postings for blog.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static lookup(string $a_field, int $a_posting_id)
Lookup posting property.
setApproved(bool $a_status)
updateKeywords(array $keywords)
static sendNotification(string $a_action, bool $a_in_wsp, int $a_blog_node_id, int $a_posting_id, ?string $a_comment=null)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
const NEWS_NOTICE
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
global $DIC
Definition: shib_login.php:22
query(string $query)
Run a (read-only) Query on the database.
setBlogNodeId(int $a_id, bool $a_is_in_workspace=false)
Set blog node id (needed for notification)
static lookupBlogId(int $a_posting_id)
A news item can be created by different sources.
ilDBInterface $db
LOMServices $lom_services
addUpdateListener(object $a_object, string $a_method, $a_parameters="")
create(bool $a_import=false)
Create new blog posting.
setWithdrawn(ilDateTime $a_date)
Set last withdrawal date.
read()
Read blog posting.
static getKeywords(int $a_obj_id, int $a_posting_id)
unpublish()
Unpublish.
$post
Definition: ltitoken.php:46
setActive(bool $a_active)