ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailOptionsFormGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 {
31  protected object $parentGui;
32  protected AutoResponderRepository $autoResponderRepository;
33 
34  public function __construct(
35  protected ilMailOptions $options,
36  object $parentGui,
37  protected string $positiveCmd,
38  ?AutoresponderRepository $autoResponderRepository = null
39  ) {
40  if (!method_exists($parentGui, 'executeCommand')) {
41  throw new InvalidArgumentException(sprintf(
42  'Parameter $parentGui must be ilCtrlInterface enabled by implementing executeCommand(), %s given.',
43  $parentGui::class
44  ));
45  }
46 
48  global $DIC;
49  $this->parentGui = $parentGui;
50  $this->positiveCmd = $positiveCmd;
51  $this->autoResponderRepository = $autoResponderRepository ?? new AutoresponderDatabaseRepository($DIC->database());
52  $this->default_auto_responder_absence_end_ts = time() + 8640;
53 
54  $this->init();
55  }
56 
57  protected function init(): void
58  {
59  $this->setTitle($this->lng->txt('mail_settings'));
60  $this->setFormAction($this->ctrl->getFormAction($this->parentGui, $this->positiveCmd));
61 
62  if ($this->options->maySeeIndividualTransportSettings()) {
63  $incoming_mail_gui = new ilIncomingMailInputGUI(
64  $this->lng->txt('mail_incoming'),
65  'incoming_type',
66  false
67  );
68  $this->addItem($incoming_mail_gui);
69  }
70 
71  $absence = new ilCheckboxInputGUI($this->lng->txt('mail_absence_status'), 'absence_status');
72  $absence->setInfo($this->lng->txt('mail_absence_status_info'));
73  $absence->setValue("1");
74  $this->lng->loadLanguageModule('dateplaner');
75  $duration = new ilDateDurationInputGUI($this->lng->txt('mail_absence_duration'), 'absence_duration');
76  $duration->setRequired(true);
77  $duration->setStartText($this->lng->txt('mail_absent_from'));
78  $duration->setEndText($this->lng->txt('mail_absent_until'));
79  $duration->setShowTime(true);
80  $auto_responder_subject = new ilTextInputGUI($this->lng->txt('mail_absence_auto_responder_subject'), 'absence_auto_responder_subject');
81  $auto_responder_subject->setMaxLength(200);
82  $auto_responder_subject->setRequired(true);
83  $auto_responder_body = new ilTextAreaInputGUI($this->lng->txt('mail_absence_auto_responder_body'), 'absence_auto_responder_body');
84  $idle_time = (int) $this->settings->get('mail_auto_responder_idle_time', (string) AutoresponderService::AUTO_RESPONDER_DEFAULT_IDLE_TIME);
85  if ($idle_time === 1) {
86  $auto_responder_body->setInfo($this->lng->txt('mail_absence_auto_responder_body_info_single_day'));
87  } else {
88  $auto_responder_body->setInfo(sprintf($this->lng->txt('mail_absence_auto_responder_body_info'), $idle_time));
89  }
90  $auto_responder_body->setRequired(true);
91  $auto_responder_body->setCols(60);
92  $auto_responder_body->setRows(10);
93  $absence->addSubItem($duration);
94  $absence->addSubItem($auto_responder_subject);
95  $absence->addSubItem($auto_responder_body);
96  $this->addItem($absence);
97 
98  $ta = new ilTextAreaInputGUI($this->lng->txt('signature'), 'signature');
99  $ta->setRows(10);
100  $ta->setCols(60);
101  $this->addItem($ta);
102 
103  if ($this->settings->get('mail_notification', '0')) {
104  $cb = new ilCheckboxInputGUI(
105  $this->lng->txt('cron_mail_notification'),
106  'cronjob_notification'
107  );
108  $cb->setInfo($this->lng->txt('mail_cronjob_notification_info'));
109  $cb->setValue('1');
110  $this->addItem($cb);
111  }
112 
113  $this->addCommandButton($this->positiveCmd, $this->lng->txt('save'));
114  }
115 
116  public function save(): bool
117  {
118  if (!$this->checkInput()) {
119  return false;
120  }
121 
122  if ($this->options->mayModifyIndividualTransportSettings()) {
123  $incoming_type = (int) $this->getInput('incoming_type');
124 
125  $mail_address_option = $this->options->getEmailAddressMode();
126  switch ($incoming_type) {
128  $mail_address_option = (int) $this->getInput('mail_address_option');
129  break;
130 
132  $mail_address_option = (int) $this->getInput('mail_address_option_both');
133  break;
134  }
135  } else {
136  $incoming_type = $this->options->getIncomingType();
137  $mail_address_option = $this->options->getEmailAddressMode();
138  }
139 
140  $absence_duration = $this->getItemByPostVar('absence_duration');
141  $absence_status = (bool) $this->getInput('absence_status');
142  $old_absence_status = $this->options->getAbsenceStatus();
143  if (!$absence_status && $old_absence_status) {
144  $this->autoResponderRepository->deleteBySenderId($this->user->getId());
145  }
146  $this->options->setAbsenceStatus((bool) $this->getInput('absence_status'));
147  if ($absence_duration && $absence_duration->getStart() && $absence_duration->getEnd()) {
148  $this->options->setAbsentFrom($absence_duration->getStart()->get(IL_CAL_UNIX));
149  $this->options->setAbsentUntil($absence_duration->getEnd()->get(IL_CAL_UNIX));
150  }
151  $this->options->setAbsenceAutoresponderSubject($this->getInput('absence_auto_responder_subject'));
152  $this->options->setAbsenceAutoresponderBody($this->getInput('absence_auto_responder_body'));
153 
154  $this->options->setSignature($this->getInput('signature'));
155  $this->options->setIsCronJobNotificationStatus((bool) $this->getInput('cronjob_notification'));
156  $this->options->setIncomingType($incoming_type);
157  $this->options->setEmailAddressMode($mail_address_option);
158 
159  $this->options->updateOptions();
160 
161  return true;
162  }
163 
164  public function populate(): void
165  {
166  $data = [
167  'signature' => $this->options->getSignature(),
168  'cronjob_notification' => $this->options->isCronJobNotificationEnabled(),
169  'absence_status' => $this->options->getAbsenceStatus(),
170  'absence_duration' => [
171  'start' => (new ilDateTime(($this->options->getAbsentFrom() ?: time()), IL_CAL_UNIX))->get(IL_CAL_DATETIME),
172  'end' => (new ilDateTime(($this->options->getAbsentUntil() ?: $this->default_auto_responder_absence_end_ts), IL_CAL_UNIX))->get(IL_CAL_DATETIME),
173  ],
174  'absence_auto_responder_subject' => $this->options->getAbsenceAutoresponderSubject(),
175  'absence_auto_responder_body' => $this->options->getAbsenceAutoresponderBody(),
176  ];
177 
178  if ($this->options->maySeeIndividualTransportSettings()) {
179  $data['incoming_type'] = $this->options->getIncomingType();
180 
181  $mail_address_option = $this->options->getEmailAddressMode();
182 
183  $data['mail_address_option'] = $mail_address_option;
184  $data['mail_address_option_both'] = $mail_address_option;
185  }
186 
187  $this->setValuesByArray($data);
188  }
189 }
const IL_CAL_DATETIME
getItemByPostVar(string $a_post_var)
__construct(protected ilMailOptions $options, object $parentGui, protected string $positiveCmd, ?AutoresponderRepository $autoResponderRepository=null)
readonly int $default_auto_responder_absence_end_ts
const IL_CAL_UNIX
$duration
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
final const INCOMING_EMAIL
Class ilMailOptionsFormGUI.
setFormAction(string $a_formaction)
global $DIC
Definition: shib_login.php:22
setValuesByArray(array $a_values, bool $a_restrict_to_value_keys=false)
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
final const INCOMING_BOTH
AutoResponderRepository $autoResponderRepository
Class ilIncomingMailInputGUI.