ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBlogPosting.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
11 {
12  protected $title; // [string]
13  protected $created; // [ilDateTime]
14  protected $blog_node_id; // [int]
15  protected $blog_node_is_wsp; // [bool]
16  protected $author; // [int]
17  protected $approved; // [bool]
18  protected $withdrawn; // [ilDateTime]
19 
25  public function getParentType()
26  {
27  return "blp";
28  }
29 
30 
36  public function setTitle($a_title)
37  {
38  $this->title = $a_title;
39  }
40 
46  public function getTitle()
47  {
48  return $this->title;
49  }
50 
56  public function setBlogId($a_id)
57  {
58  $this->setParentId($a_id);
59  }
60 
66  public function getBlogId()
67  {
68  return $this->getParentId();
69  }
70 
76  public function setCreated(ilDateTime $a_date)
77  {
78  $this->created = $a_date;
79  }
80 
86  public function getCreated()
87  {
88  return $this->created;
89  }
90 
96  public function setAuthor($a_id)
97  {
98  $this->author = (int) $a_id;
99  }
100 
106  public function getAuthor()
107  {
108  return $this->author;
109  }
110 
114  public function setApproved($a_status)
115  {
116  $this->approved = (bool) $a_status;
117  }
118 
124  public function isApproved()
125  {
126  return (bool) $this->approved;
127  }
128 
134  public function setWithdrawn(ilDateTime $a_date)
135  {
136  $this->withdrawn = $a_date;
137  }
138 
144  public function getWithdrawn()
145  {
146  return $this->withdrawn;
147  }
148 
152  public function create($a_import = false)
153  {
154  $ilDB = $this->db;
155 
156  $id = $ilDB->nextId("il_blog_posting");
157  $this->setId($id);
158 
159  if (!$a_import) {
160  $created = ilUtil::now();
161  } else {
162  $created = $this->getCreated()->get(IL_CAL_DATETIME);
163  }
164 
165  // we are using a separate creation date to enable sorting without JOINs
166 
167  $query = "INSERT INTO il_blog_posting (id, title, blog_id, created, author, approved, last_withdrawn)" .
168  " VALUES (" .
169  $ilDB->quote($this->getId(), "integer") . "," .
170  $ilDB->quote($this->getTitle(), "text") . "," .
171  $ilDB->quote($this->getBlogId(), "integer") . "," .
172  $ilDB->quote($created, "timestamp") . "," .
173  $ilDB->quote($this->getAuthor(), "integer") . "," .
174  $ilDB->quote($this->isApproved(), "integer") . "," . // #16526 - import
175  $ilDB->quote($this->getWithdrawn(), "timestamp") . ")";
176  $ilDB->manipulate($query);
177 
178  if (!$a_import) {
179  parent::create();
180  // $this->saveInternalLinks($this->getXMLContent());
181  }
182  }
183 
193  public function update($a_validate = true, $a_no_history = false, $a_notify = true, $a_notify_action = "update")
194  {
195  $ilDB = $this->db;
196 
197  // blog_id, author and created cannot be changed
198 
199  $query = "UPDATE il_blog_posting SET" .
200  " title = " . $ilDB->quote($this->getTitle(), "text") .
201  ",created = " . $ilDB->quote($this->getCreated()->get(IL_CAL_DATETIME), "timestamp") .
202  ",approved =" . $ilDB->quote($this->isApproved(), "integer") .
203  ",last_withdrawn =" . $ilDB->quote($this->getWithdrawn()->get(IL_CAL_DATETIME), "timestamp") .
204  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
205  $ilDB->manipulate($query);
206 
207  parent::update($a_validate, $a_no_history);
208 
209  if ($a_notify && $this->getActive()) {
210  ilObjBlog::sendNotification($a_notify_action, $this->blog_node_is_wsp, $this->blog_node_id, $this->getId());
211  }
212 
213  return true;
214  }
215 
219  public function read()
220  {
221  $ilDB = $this->db;
222 
223  $query = "SELECT * FROM il_blog_posting" .
224  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
225  $set = $ilDB->query($query);
226  $rec = $ilDB->fetchAssoc($set);
227 
228  $this->setTitle($rec["title"]);
229  $this->setBlogId($rec["blog_id"]);
230  $this->setCreated(new ilDateTime($rec["created"], IL_CAL_DATETIME));
231  $this->setAuthor($rec["author"]);
232  if ((bool) $rec["approved"]) {
233  $this->setApproved(true);
234  }
235  $this->setWithdrawn(new ilDateTime($rec["last_withdrawn"], IL_CAL_DATETIME));
236 
237  // when posting is deactivated it should loose the approval
238  $this->addUpdateListener($this, "checkApproval");
239 
240  parent::read();
241  }
242 
243  public function checkApproval()
244  {
245  if (!$this->getActive() && $this->isApproved()) {
246  $this->approved = false;
247  $this->update();
248  }
249  }
250 
256  public function delete()
257  {
258  $ilDB = $this->db;
259 
261  $this->getBlogId(),
262  "blog",
263  $this->getId(),
264  $this->getParentType()
265  );
266 
267  $query = "DELETE FROM il_blog_posting" .
268  " WHERE id = " . $ilDB->quote($this->getId(), "integer");
269  $ilDB->manipulate($query);
270 
271  parent::delete();
272 
273  return true;
274  }
275 
279  public function unpublish()
280  {
281  $this->setApproved(false);
282  $this->setActive(false);
284  $this->update(true, false, false);
285 
287  $this->getBlogId(),
288  "blog",
289  $this->getId(),
290  $this->getParentType()
291  );
292  }
293 
294 
300  public static function deleteAllBlogPostings($a_blog_id)
301  {
302  global $DIC;
303 
304  $ilDB = $DIC->database();
305 
306  $query = "SELECT * FROM il_blog_posting" .
307  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer");
308  $set = $ilDB->query($query);
309  while ($rec = $ilDB->fetchAssoc($set)) {
310  // delete all md keywords
311  $md_obj = new ilMD($a_blog_id, $rec["id"], "blp");
312  if (is_object($md_section = $md_obj->getGeneral())) {
313  foreach ($md_section->getKeywordIds() as $id) {
314  $md_key = $md_section->getKeyword($id);
315  $md_key->delete();
316  }
317  }
318 
319  $post = new ilBlogPosting($rec["id"]);
320  $post->delete();
321  }
322  }
323 
330  public static function lookupBlogId($a_posting_id)
331  {
332  global $DIC;
333 
334  $ilDB = $DIC->database();
335 
336  $query = "SELECT blog_id FROM il_blog_posting" .
337  " WHERE id = " . $ilDB->quote($a_posting_id, "integer");
338  $set = $ilDB->query($query);
339  if ($rec = $ilDB->fetchAssoc($set)) {
340  return $rec["blog_id"];
341  }
342  return false;
343  }
344 
353  public static function getAllPostings($a_blog_id, $a_limit = 1000, $a_offset = 0)
354  {
355  global $DIC;
356 
357  $ilDB = $DIC->database();
358 
359  $pages = parent::getAllPages("blp", $a_blog_id);
360 
361  if ($a_limit) {
362  $ilDB->setLimit($a_limit, $a_offset);
363  }
364 
365  $query = "SELECT * FROM il_blog_posting" .
366  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer") .
367  " ORDER BY created DESC";
368  $set = $ilDB->query($query);
369  $post = array();
370  while ($rec = $ilDB->fetchAssoc($set)) {
371  if (isset($pages[$rec["id"]])) {
372  $post[$rec["id"]] = $pages[$rec["id"]];
373  $post[$rec["id"]]["title"] = $rec["title"];
374  $post[$rec["id"]]["created"] = new ilDateTime($rec["created"], IL_CAL_DATETIME);
375  $post[$rec["id"]]["author"] = $rec["author"];
376  $post[$rec["id"]]["approved"] = (bool) $rec["approved"];
377  $post[$rec["id"]]["last_withdrawn"] = new ilDateTime($rec["last_withdrawn"], IL_CAL_DATETIME);
378 
379  foreach (self::getPageContributors("blp", $rec["id"]) as $editor) {
380  if ($editor["user_id"] != $rec["author"]) {
381  $post[$rec["id"]]["editors"][] = $editor["user_id"];
382  }
383  }
384  }
385  }
386 
387  return $post;
388  }
389 
397  public static function exists($a_blog_id, $a_posting_id)
398  {
399  global $DIC;
400 
401  $ilDB = $DIC->database();
402 
403  $query = "SELECT id FROM il_blog_posting" .
404  " WHERE blog_id = " . $ilDB->quote($a_blog_id, "integer") .
405  " AND id = " . $ilDB->quote($a_posting_id, "integer");
406  $set = $ilDB->query($query);
407  if ($rec = $ilDB->fetchAssoc($set)) {
408  return true;
409  }
410  return false;
411  }
412 
419  public static function getLastPost($a_blog_id)
420  {
421  $data = self::getAllPostings($a_blog_id, 1);
422  if ($data) {
423  return array_pop(array_keys($data));
424  }
425  }
426 
433  public function setBlogNodeId($a_id, $a_is_in_workspace = false)
434  {
435  $this->blog_node_id = (int) $a_id;
436  $this->blog_node_is_wsp = (bool) $a_is_in_workspace;
437  }
438 
445  public static function searchBlogsByAuthor($a_user_id)
446  {
447  global $DIC;
448 
449  $ilDB = $DIC->database();
450 
451  $ids = array();
452 
453  $sql = "SELECT DISTINCT(blog_id)" .
454  " FROM il_blog_posting" .
455  " WHERE author = " . $ilDB->quote($a_user_id);
456  $set = $ilDB->query($sql);
457  while ($row = $ilDB->fetchAssoc($set)) {
458  $ids[] = $row["blog_id"];
459  }
460  return $ids;
461  }
462 
463  public function getNotificationAbstract()
464  {
465  $snippet = ilBlogPostingGUI::getSnippet($this->getId(), true);
466 
467  // making things more readable
468  $snippet = str_replace('<br/>', "\n", $snippet);
469  $snippet = str_replace('<br />', "\n", $snippet);
470  $snippet = str_replace('</p>', "\n", $snippet);
471  $snippet = str_replace('</div>', "\n", $snippet);
472 
473  return trim(strip_tags($snippet));
474  }
475 
476 
477  // keywords
478 
479  public function getMDSection()
480  {
481  // general section available?
482  $md_obj = new ilMD($this->getBlogId(), $this->getId(), "blp");
483  if (!is_object($md_section = $md_obj->getGeneral())) {
484  $md_section = $md_obj->addGeneral();
485  $md_section->save();
486  }
487 
488  return $md_section;
489  }
490 
491  public function updateKeywords(array $keywords)
492  {
494 
495  // language is not "used" anywhere
496  $ulang = $ilUser->getLanguage();
497  $keywords = array($ulang => $keywords);
498 
499  ilMDKeyword::updateKeywords($this->getMDSection(), $keywords);
500  }
501 
502  public static function getKeywords($a_obj_id, $a_posting_id)
503  {
504  return ilMDKeyword::lookupKeywords($a_obj_id, $a_posting_id);
505  }
506 
512  public function handleNews($a_update = false)
513  {
514  $lng = $this->lng;
516 
517  // see ilWikiPage::updateNews()
518 
519  if (!$this->getActive()) {
520  return;
521  }
522 
523  $news_item = null;
524 
525  // try to re-use existing news item
526  if ((bool) $a_update) {
527  // get last news item of the day (if existing)
529  $this->getBlogId(),
530  "blog",
531  $this->getId(),
532  $this->getParentType(),
533  true
534  );
535  if ($news_id > 0) {
536  $news_item = new ilNewsItem($news_id);
537  }
538  }
539 
540  // create new news item
541  if (!$news_item) {
542  $news_set = new ilSetting("news");
543  $default_visibility = $news_set->get("default_visibility", "users");
544 
545  $news_item = new ilNewsItem();
546  $news_item->setContext(
547  $this->getBlogId(),
548  "blog",
549  $this->getId(),
550  $this->getParentType()
551  );
552  $news_item->setPriority(NEWS_NOTICE);
553  $news_item->setVisibility($default_visibility);
554  }
555 
556  // news author
557  $news_item->setUserId($ilUser->getId());
558 
559 
560  // news title/content
561 
562  $news_item->setTitle($this->getTitle());
563 
564  $content = $a_update
565  ? "blog_news_posting_updated"
566  : "blog_news_posting_published";
567 
568  // news "author"
569  $content = sprintf($lng->txt($content), ilUserUtil::getNamePresentation($ilUser->getId()));
570 
571  // posting author[s]
572  $contributors = array();
573  foreach (self::getPageContributors($this->getParentType(), $this->getId()) as $user) {
574  $contributors[] = $user["user_id"];
575  }
576  if (sizeof($contributors) > 1 || !in_array($this->getAuthor(), $contributors)) {
577  // original author should come first?
578  $authors = array(ilUserUtil::getNamePresentation($this->getAuthor()));
579  foreach ($contributors as $user_id) {
580  if ($user_id != $this->getAuthor()) {
581  $authors[] = ilUserUtil::getNamePresentation($user_id);
582  }
583  }
584  $content .= "\n" . sprintf($lng->txt("blog_news_posting_authors"), implode(", ", $authors));
585  }
586 
587  $news_item->setContentTextIsLangVar(false);
588  $news_item->setContent($content);
589 
590  $snippet = ilBlogPostingGUI::getSnippet($this->getId());
591  $news_item->setContentLong($snippet);
592 
593  if (!$news_item->getId()) {
594  $news_item->create();
595  } else {
596  $news_item->update(true);
597  }
598  }
599 
607  protected static function lookup($a_field, $a_posting_id)
608  {
609  global $DIC;
610 
611  $db = $DIC->database();
612 
613  $set = $db->query("SELECT $a_field FROM il_blog_posting " .
614  " WHERE id = " . $db->quote($a_posting_id, "integer"));
615  $rec = $db->fetchAssoc($set);
616 
617  return $rec[$a_field];
618  }
619 
626  public static function lookupTitle($a_posting_id)
627  {
628  $t = self::lookup("title", $a_posting_id);
629  return $t;
630  }
631 }
getBlogId()
Get blog object id.
static lookupBlogId($a_posting_id)
Lookup blog id.
$data
Definition: storeScorm.php:23
Class ilBlogPosting.
const IL_CAL_DATETIME
setCreated(ilDateTime $a_date)
Set creation date.
static getLastPost($a_blog_id)
Get newest posting for blog.
setActive($a_active)
set activation
create($a_import=false)
Create new blog posting.
setAuthor($a_id)
Set author user id.
static getKeywords($a_obj_id, $a_posting_id)
handleNews($a_update=false)
Handle news item.
isApproved()
Get approved status.
getWithdrawn()
Get last withdrawal date.
static now()
Return current timestamp in Y-m-d H:i:s format.
static updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
Update keywords from input array.
static getAllPostings($a_blog_id, $a_limit=1000, $a_offset=0)
Get all postings of blog.
static searchBlogsByAuthor($a_user_id)
Get all blogs where user has postings.
updateKeywords(array $keywords)
setApproved($a_status)
Toggle approval status.
addUpdateListener(&$a_object, $a_method, $a_parameters="")
static exists($a_blog_id, $a_posting_id)
Checks whether a posting exists.
static getLastNewsIdForContext( $a_context_obj_id, $a_context_obj_type, $a_context_sub_obj_id="", $a_context_sub_obj_type="", $a_only_today=false)
Get last news id of news set related to a certain context.
getActive($a_check_scheduled_activation=false)
get activation
static getSnippet($a_id, $a_truncate=false, $a_truncate_length=500, $a_truncate_sign="...", $a_include_picture=false, $a_picture_width=144, $a_picture_height=144, $a_export_directory=null)
Get first text paragraph of page.
const NEWS_NOTICE
Class ilPageObject.
getCreated()
Get creation date.
$ilUser
Definition: imgupload.php:18
setBlogNodeId($a_id, $a_is_in_workspace=false)
Set blog node id (needed for notification)
$query
static lookup($a_field, $a_posting_id)
Lookup posting property.
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setId($a_id)
set id
getAuthor()
Get author user id.
getParentType()
Get parent type.
static deleteNewsOfContext( $a_context_obj_id, $a_context_obj_type, $a_context_sub_obj_id=0, $a_context_sub_obj_type="")
Delete all news of a context.
setWithdrawn(ilDateTime $a_date)
Set last withdrawal date.
global $ilDB
static lookupTitle($a_posting_id)
Lookup title.
$DIC
Definition: xapitoken.php:46
getTitle()
Get title.
read()
Read blog posting.
update($a_validate=true, $a_no_history=false, $a_notify=true, $a_notify_action="update")
Update blog posting.
setTitle($a_title)
Set title.
unpublish()
Unpublish.
static sendNotification($a_action, $a_in_wsp, $a_blog_node_id, $a_posting_id, $a_comment=null)
static lookupKeywords($a_rbac_id, $a_obj_id, $a_return_ids=false)
Lookup Keywords.
static deleteAllBlogPostings($a_blog_id)
Delete all postings for blog.
setBlogId($a_id)
Set blog object id.