ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailDeliveryJob.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 
35 {
36  public function run(array $input, Observer $observer): Value
37  {
38  global $DIC;
39 
40  $arguments = array_map(static function ($value) {
41  return $value->getValue();
42  }, $input);
43 
44  $DIC->logger()->mail()->info('Mail delivery background task executed');
45 
46  $DIC->logger()->mail()->debug(sprintf(
47  'Input: %s',
48  json_encode(array_slice($arguments, 0, 5), JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT)
49  ));
50 
51  $context_parameters = (array) unserialize($input[10]->getValue(), ['allowed_classes' => false]);
52 
53  if ((int) $input[0]->getValue() === ANONYMOUS_USER_ID) {
54  $mail = new ilMail((int) $input[0]->getValue());
55  } else {
56  $mail = new ilFormatMail((int) $input[0]->getValue());
57  }
58 
59  if (isset($context_parameters['auto_responder'])) {
60  if ($context_parameters['auto_responder']) {
61  $mail->autoresponder()->enableAutoresponder();
62  } else {
63  $mail->autoresponder()->disableAutoresponder();
64  }
65  }
66 
67  $mail->setSaveInSentbox((bool) $input[8]->getValue());
68  $mail = $mail
69  ->withContextId((string) $input[9]->getValue())
70  ->withContextParameters($context_parameters);
71 
72  $mail_data = new MailDeliveryData(
73  (string) $input[1]->getValue(), // To
74  (string) $input[2]->getValue(), // Cc
75  (string) $input[3]->getValue(), // Bcc
76  (string) $input[4]->getValue(), // Subject
77  (string) $input[5]->getValue(), // Message
78  (array) unserialize($input[6]->getValue(), ['allowed_classes' => false]), // Attachments
79  (bool) $input[7]->getValue() // Use Placeholders
80  );
81  $mail->sendMail($mail_data);
82 
83  $DIC->logger()->mail()->info('Mail delivery background task finished');
84 
85  $output = new BooleanValue();
86  $output->setValue(true);
87 
88  return $output;
89  }
90 
91  public function getInputTypes(): array
92  {
93  return [
94  new SingleType(IntegerValue::class), // 0. User Id
95  new SingleType(StringValue::class), // 1. To
96  new SingleType(StringValue::class), // 2. CC
97  new SingleType(StringValue::class), // 3. BCC
98  new SingleType(StringValue::class), // 4. Subject
99  new SingleType(StringValue::class), // 5. Message
100  new SingleType(StringValue::class), // 6. Attachments
101  new SingleType(BooleanValue::class), // 7. Use placeholders
102  new SingleType(BooleanValue::class), // 8. Save in sentbox
103  new SingleType(StringValue::class), // 9. Context Id
104  new SingleType(StringValue::class), // 10. Context Parameters
105  ];
106  }
107 
108  public function isStateless(): bool
109  {
110  return true;
111  }
112 
114  {
115  return 30;
116  }
117 
118  public function getOutputType(): Type
119  {
120  return new SingleType(BooleanValue::class);
121  }
122 }
const ANONYMOUS_USER_ID
Definition: constants.php:27
Class ilMailDeliveryJob.
getValue()
Get the value that is displayed in the input client side.
Definition: Group.php:49
global $DIC
Definition: shib_login.php:22
run(array $input, Observer $observer)