ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MailFilterUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Mail\Folder;
22 
26 use ilLanguage;
28 use DateTimeZone;
29 
34 {
36 
37  public function __construct(
38  private readonly string $target_url,
39  private readonly bool $lucene_enabled,
40  private readonly MailFolderData $folder,
41  private readonly Factory $ui_factory,
42  private readonly ilUIFilterService $filter_service,
43  private readonly ilLanguage $lng,
44  private readonly DateTimeZone $user_time_zone
45  ) {
46  $inputs = [];
47  if ($this->folder->hasIncomingMails()) {
48  $inputs['sender'] = $this->ui_factory->input()->field()->text($this->lng->txt('mail_filter_sender'));
49  } else {
50  $inputs['recipients'] = $this->ui_factory->input()->field()->text(
51  $this->lng->txt('mail_filter_recipients')
52  );
53  }
54 
55  $inputs['subject'] = $this->ui_factory->input()->field()->text($this->lng->txt('mail_filter_subject'));
56  $inputs['body'] = $this->ui_factory->input()->field()->text($this->lng->txt('mail_filter_body'));
57 
58  if ($this->lucene_enabled) {
59  $inputs['attachment'] = $this->ui_factory->input()->field()->text($this->lng->txt('mail_filter_attach'));
60  }
61 
62  $inputs['display'] = $this->ui_factory->input()->field()->multiSelect($this->lng->txt('mail_filter_display'), [
63  'read' => $this->lng->txt('mail_filter_show_read'),
64  'unread' => $this->lng->txt('mail_filter_show_unread'),
65  'user' => $this->lng->txt('mail_filter_show_user_mails'),
66  'system' => $this->lng->txt('mail_filter_show_system_mails'),
67  'with_attachment' => $this->lng->txt('mail_filter_show_with_attachments'),
68  'without_attachment' => $this->lng->txt('mail_filter_show_without_attachment')
69  ]);
70  $inputs['period'] = $this->ui_factory
71  ->input()->field()->duration($this->lng->txt('mail_filter_period'))
72  ->withTimezone($this->user_time_zone->getName());
73 
74  $this->filter = $this->filter_service->standard(
75  self::class,
76  $this->target_url,
77  //elements
78  $inputs,
79  // initially rendered
80  array_map(fn($value): bool => true, $inputs),
81  false,
82  false
83  );
84  }
85 
89  public function getComponent(): FilterComponent
90  {
91  return $this->filter;
92  }
93 
97  public function getData(): MailFilterData
98  {
99  $data = $this->filter_service->getData($this->filter);
100 
101  $is_unread = null;
102  $is_system = null;
103  $has_attachment = null;
104 
105  // contrary filter options are only applied, if only one of them is set
106  if (is_array($display = $data['display'] ?? null)) {
107  if (in_array('read', $display) xor in_array('unread', $display)) {
108  $is_unread = in_array('unread', $display);
109  }
110  if (in_array('system', $display) xor in_array('user', $display)) {
111  $is_system = in_array('system', $display);
112  }
113  if (in_array('with_attachment', $display) xor in_array('without_attachment', $display)) {
114  $has_attachment = in_array('with_attachment', $display);
115  }
116  }
117 
118  $start = null;
119  if (($data['period'][0] ?? '') !== '') {
120  $start = new DateTimeImmutable($data['period'][0] . ' 00:00:00', $this->user_time_zone);
121  }
122  $end = null;
123  if (($data['period'][1] ?? '') !== '') {
124  $end = new DateTimeImmutable($data['period'][1] . ' 23:59:59', $this->user_time_zone);
125  }
126 
127  return new MailFilterData(
128  ($data['sender'] ?? '') === '' ? null : (string) $data['sender'],
129  ($data['recipients'] ?? '') === '' ? null : (string) $data['recipients'],
130  ($data['subject'] ?? '') === '' ? null : (string) $data['subject'],
131  ($data['body'] ?? '') === '' ? null : $data['body'],
132  ($data['attachment'] ?? '') === '' ? null : (string) $data['attachment'],
133  $start,
134  $end,
135  $is_unread,
136  $is_system,
137  $has_attachment
138  );
139  }
140 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Filter input for mail folders.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
Definition: Factory.php:37
getData()
Get the user entered filter data.
Filter data for display of mail records Properties with null value will not be applied as a filter...
getComponent()
Get the filter UI component.
global $lng
Definition: privfeed.php:31
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
__construct(private readonly string $target_url, private readonly bool $lucene_enabled, private readonly MailFolderData $folder, private readonly Factory $ui_factory, private readonly ilUIFilterService $filter_service, private readonly ilLanguage $lng, private readonly DateTimeZone $user_time_zone)