ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMassMailTaskProcessor.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
30 {
31  private readonly TaskManager $taskManager;
32  private readonly TaskFactory $taskFactory;
33  private readonly ilLanguage $language;
34  private readonly ilLogger $logger;
36 
37  public function __construct(
38  private readonly int $anonymousUserId = ANONYMOUS_USER_ID,
39  ?TaskManager $taskManager = null,
40  ?TaskFactory $taskFactory = null,
41  ?ilLanguage $language = null,
42  ?ilLogger $logger = null,
43  ?Container $dic = null,
44  ?ilMailValueObjectJsonService $objectJsonService = null
45  ) {
46  if (null === $dic) {
47  global $DIC;
48  $dic = $DIC;
49  }
50 
51  if (null === $taskManager) {
52  $taskManager = $dic->backgroundTasks()->taskManager();
53  }
54  $this->taskManager = $taskManager;
55 
56  if (null === $taskFactory) {
57  $taskFactory = $dic->backgroundTasks()->taskFactory();
58  }
59  $this->taskFactory = $taskFactory;
60 
61  if (null === $language) {
62  $language = $dic->language();
63  }
64  $this->language = $language;
65 
66  if (null === $logger) {
67  $logger = ilLoggerFactory::getLogger('mail');
68  }
69  $this->logger = $logger;
70 
71  if (null === $objectJsonService) {
72  $objectJsonService = new ilMailValueObjectJsonService();
73  }
74  $this->objectJsonService = $objectJsonService;
75  }
76 
85  public function run(
86  array $mailValueObjects,
87  int $userId,
88  string $contextId,
89  array $contextParameters,
90  int $mailsPerTask = 100
91  ): void {
92  $objectsServiceSize = count($mailValueObjects);
93 
94  if ($objectsServiceSize <= 0) {
95  throw new ilMailException('First parameter must contain at least 1 array element');
96  }
97 
98  if ($mailsPerTask <= 0) {
99  throw new ilMailException(
100  sprintf(
101  'The mails per task MUST be a positive integer, "%s" given',
102  $mailsPerTask
103  )
104  );
105  }
106 
107  foreach ($mailValueObjects as $mailValueObject) {
108  if (!($mailValueObject instanceof ilMailValueObject)) {
109  throw new ilMailException('Array MUST contain ilMailValueObjects ONLY');
110  }
111  }
112  $taskCounter = 0;
113 
114  $remainingObjects = [];
115  foreach ($mailValueObjects as $mailValueObject) {
116  $taskCounter++;
117 
118  $remainingObjects[] = $mailValueObject;
119  if ($taskCounter === $mailsPerTask) {
120  $interaction = $this->createInteraction($userId, $contextId, $contextParameters, $remainingObjects);
121 
122  $this->runTask($interaction, $userId);
123 
124  $taskCounter = 0;
125  $remainingObjects = [];
126  }
127  }
128 
129  if ([] !== $remainingObjects) {
130  $interaction = $this->createInteraction($userId, $contextId, $contextParameters, $remainingObjects);
131 
132  $this->runTask($interaction, $userId);
133  }
134  }
135 
136  private function runTask(\ILIAS\BackgroundTasks\Task $task, int $userId): void
137  {
138  $bucket = new BasicBucket();
139  $bucket->setUserId($userId);
140 
141  $bucket->setTask($task);
142  $bucket->setTitle($this->language->txt('mail_bg_task_title'));
143 
144  $this->logger->info('Delegated delivery to background task');
145  $this->taskManager->run($bucket);
146  }
147 
148  private function createInteraction(
149  int $userId,
150  string $contextId,
151  array $contextParameters,
152  $remainingObjects
153  ): ILIAS\BackgroundTasks\Task {
154  $jsonString = $this->objectJsonService->convertToJson($remainingObjects);
155 
156  $task = $this->taskFactory->createTask(ilMassMailDeliveryJob::class, [
157  $userId,
158  $jsonString,
159  $contextId,
160  serialize($contextParameters),
161  ]);
162 
163  // Important: Don't return the task (e.g. as an early return for anonymous user id) https://mantis.ilias.de/view.php?id=33618
164 
165  $parameters = [$task, $userId];
166 
167  return $this->taskFactory->createTask(
168  ilMailDeliveryJobUserInteraction::class,
169  $parameters
170  );
171  }
172 }
const ANONYMOUS_USER_ID
Definition: constants.php:27
static getLogger(string $a_component_id)
Get component logger.
Interface Observer Contains several chained tasks and infos about them.
createInteraction(int $userId, string $contextId, array $contextParameters, $remainingObjects)
run(array $mailValueObjects, int $userId, string $contextId, array $contextParameters, int $mailsPerTask=100)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
runTask(\ILIAS\BackgroundTasks\Task $task, int $userId)
global $DIC
Definition: shib_login.php:22
__construct(private readonly int $anonymousUserId=ANONYMOUS_USER_ID, ?TaskManager $taskManager=null, ?TaskFactory $taskFactory=null, ?ilLanguage $language=null, ?ilLogger $logger=null, ?Container $dic=null, ?ilMailValueObjectJsonService $objectJsonService=null)
readonly ilMailValueObjectJsonService $objectJsonService
$dic
Definition: result.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41