ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBlogDraftsDerivedTaskProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  protected \ILIAS\Blog\InternalGUIService $gui;
29  protected \ilAccess $accessHandler;
30  protected \ilLanguage $lng;
31 
32  public function __construct(
33  ilTaskService $taskService,
34  \ilAccessHandler $accessHandler,
35  \ilLanguage $lng
36  ) {
37  global $DIC;
38 
39  $this->gui = $DIC->blog()->internal()->gui();
40  $this->taskService = $taskService;
41  $this->accessHandler = $accessHandler;
42  $this->lng = $lng;
43 
44  $this->lng->loadLanguageModule('blog');
45  }
46 
47  public function isActive(): bool
48  {
49  return true;
50  }
51 
52  public function getTasks(int $user_id): array
53  {
54  $tasks = [];
55 
56  $blogs = ilBlogPosting::searchBlogsByAuthor($user_id);
57  foreach ($blogs as $blog_id) {
58  $posts = ilBlogPosting::getAllPostings($blog_id);
59  foreach ($posts as $post_id => $post) {
60  if ((int) $post['author'] !== $user_id) {
61  continue;
62  }
63 
64  $active = ilBlogPosting::_lookupActive($post_id, "blp");
65  $withdrawn = $post['last_withdrawn']->get(IL_CAL_DATETIME);
66  if (!$active && $withdrawn === null) {
67  $refId = $this->getFirstRefIdWithPermission('read', $blog_id, $user_id);
68  $wspId = 0;
69  $url = $this->gui->permanentLink($refId)->getPermanentLink($post_id, true);
70 
71  if ($refId === 0) {
72  $wspId = $this->getWspId($blog_id, $user_id);
73  if ($wspId === 0) {
74  continue;
75  }
76  $url = $this->gui->permanentLink(0, $wspId)->getPermanentLink($post_id, true);
77  }
78 
79  $title = sprintf(
80  $this->lng->txt('blog_task_publishing_draft_title'),
81  $post['title']
82  );
83 
84  $task = $this->taskService->derived()->factory()->task(
85  $title,
86  $refId,
87  0,
88  0,
89  $wspId
90  );
91 
92  $tasks[] = $task->withUrl($url);
93  }
94  }
95  }
96 
97  return $tasks;
98  }
99 
100  protected function getFirstRefIdWithPermission(
101  string $operation,
102  int $objId,
103  int $userId
104  ): int {
105  foreach (\ilObject::_getAllReferences($objId) as $refId) {
106  if ($this->accessHandler->checkAccessOfUser($userId, $operation, '', $refId)) {
107  return $refId;
108  }
109  }
110 
111  return 0;
112  }
113 
114  protected function getWspId(int $objId, int $userId): int
115  {
116  $wst = new ilWorkspaceTree($userId);
117  return $wst->lookupNodeId($objId);
118  }
119 }
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const IL_CAL_DATETIME
static searchBlogsByAuthor(int $a_user_id)
Get all blogs where user has postings.
static getAllPostings(int $a_blog_id, int $a_limit=1000, int $a_offset=0)
Get all postings of blog.
static _getAllReferences(int $id)
get all reference ids for object ID
getFirstRefIdWithPermission(string $operation, int $objId, int $userId)
__construct(ilTaskService $taskService, \ilAccessHandler $accessHandler, \ilLanguage $lng)
Class ilBlogDraftsDerivedTaskProvider.
$objId
Definition: xapitoken.php:57
$refId
Definition: xapitoken.php:58
$url
Definition: shib_logout.php:66
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
Task service.
$post
Definition: ltitoken.php:46