ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBuddySystemRelationsTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  private const APPLY_FILTER_CMD = 'applyContactsTableFilter';
28  private const RESET_FILTER_CMD = 'resetContactsTableFilter';
29  final public const STATE_FILTER_ELM_ID = 'relation_state_type';
30 
32  protected bool $hasAccessToMailSystem = false;
33  protected bool $isChatEnabled = false;
34  protected ilObjUser $user;
36  protected array $filter = [];
37 
38  public function __construct(object $a_parent_obj, string $a_parent_cmd)
39  {
40  global $DIC;
41 
42  $this->containerTemplate = $DIC['tpl'];
43  $this->user = $DIC['ilUser'];
44 
45  $this->setId('buddy_system_tbl');
46  parent::__construct($a_parent_obj, $a_parent_cmd);
47 
48  $this->lng->loadLanguageModule('buddysystem');
49 
50  $this->hasAccessToMailSystem = $DIC->rbac()->system()->checkAccess(
51  'internal_mail',
53  );
54 
55  $chatSettings = new ilSetting('chatroom');
56  $this->isChatEnabled = (bool) $chatSettings->get('chat_enabled', '0');
57 
58  $this->setDefaultOrderDirection('ASC');
59  $this->setDefaultOrderField('public_name');
60 
61  $this->setTitle($this->lng->txt('buddy_tbl_title_relations'));
62 
63  if ($this->hasAccessToMailSystem || $this->isChatEnabled) {
64  $this->addColumn('', 'chb', '1%', true);
65  $this->setSelectAllCheckbox('usr_id');
66  if ($this->hasAccessToMailSystem) {
67  $this->addMultiCommand('mailToUsers', $this->lng->txt('send_mail_to'));
68  }
69  if ($this->isChatEnabled) {
70  $this->addMultiCommand('inviteToChat', $this->lng->txt('invite_to_chat'));
71  }
72  }
73 
74  $this->addColumn($this->lng->txt('name'), 'public_name');
75  $this->addColumn($this->lng->txt('login'), 'login');
76  $this->addColumn($this->lng->txt('buddy_tbl_state_actions_col_label'), '', '', false, 'ilRight');
77 
78  $this->setRowTemplate('tpl.buddy_system_relation_table_row.html', 'components/ILIAS/Contact/BuddySystem');
79  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
80 
81  $this->setFilterCommand(self::APPLY_FILTER_CMD);
82  $this->setResetCommand(self::RESET_FILTER_CMD);
83 
84  $this->initFilter();
85  }
86 
90  public function initFilter(): void
91  {
92  $this->filters = [];
93  $this->filter = [];
94 
95  $relations_state_selection = new ilSelectInputGUI(
96  $this->lng->txt('buddy_tbl_filter_state'),
97  self::STATE_FILTER_ELM_ID
98  );
99 
100  $options = [];
102  foreach ($state_factory->getValidStates() as $state) {
103  if ($state->isInitial()) {
104  continue;
105  }
106 
107  $state_filter_mapper = $state_factory->getTableFilterStateMapper($state);
108  $options += $state_filter_mapper->optionsForState();
109  }
110  $relations_state_selection->setOptions(['' => $this->lng->txt('please_choose')] + $options);
111  $this->addFilterItem($relations_state_selection);
112  $relations_state_selection->readFromSession();
113  $this->filter['relation_state_type'] = $relations_state_selection->getValue();
114 
115  $public_name = new ilTextInputGUI($this->lng->txt('name'), 'public_name');
116  $this->addFilterItem($public_name);
117  $public_name->readFromSession();
118  $this->filter['public_name'] = $public_name->getValue();
119  }
120 
124  public function applyFilterValue(string $filterKey, $value): void
125  {
126  foreach ([$this->getFilterItems(), $this->getFilterItems(true)] as $filterItems) {
127  foreach ($filterItems as $item) {
129  if ($item->getPostVar() === $filterKey) {
130  $item->setValueByArray([$filterKey => $value]);
131  $item->writeToSession();
132  break 2;
133  }
134  }
135  }
136  }
137 
138  public function populate(): void
139  {
140  $this->setExternalSorting(false);
141  $this->setExternalSegmentation(false);
142 
143  $data = [];
144 
145  $relations = ilBuddyList::getInstanceByGlobalUser()->getRelations();
146 
147  $state_filter = (string) $this->filter[self::STATE_FILTER_ELM_ID];
149  $relations = $relations->filter(function (ilBuddySystemRelation $relation) use ($state_filter, $state_factory): bool {
150  $state_filter_mapper = $state_factory->getTableFilterStateMapper($relation->getState());
151  return $state_filter === '' || $state_filter_mapper->filterMatchesRelation($state_filter, $relation);
152  });
153 
154  $public_names = ilUserUtil::getNamePresentation($relations->getKeys(), false, false, '', false, true, false);
156  $logins = ilUserUtil::getNamePresentation($relations->getKeys(), false, false, '', false, false, false);
157 
158  $logins = array_map(static function (string $value): string {
159  $matches = null;
160  preg_match_all('/\[([^\[]+?)\]/', $value, $matches);
161  return (
162  is_array($matches) &&
163  isset($matches[1]) &&
164  is_array($matches[1]) &&
165  isset($matches[1][count($matches[1]) - 1])
166  ) ? $matches[1][count($matches[1]) - 1] : '';
167  }, $logins);
168 
169  $public_name_query = (string) ($this->filter['public_name'] ?? '');
170  $relations = $relations->filter(static function (ilBuddySystemRelation $relation) use (
171  $public_name_query,
172  $relations,
173  $public_names,
174  $logins
175  ): bool {
176  $usrId = $relations->getKey($relation);
177 
178  $hasMatchingName = (
179  0 === ilStr::strlen($public_name_query) ||
180  ilStr::strpos(
181  ilStr::strtolower($public_names[$usrId]),
182  ilStr::strtolower($public_name_query),
183  0
184  ) !== false ||
185  ilStr::strpos(ilStr::strtolower($logins[$usrId]), ilStr::strtolower($public_name_query), 0) !== false
186  );
187 
188  if (!$hasMatchingName) {
189  return false;
190  }
191 
192  return ilObjUser::_lookupActive($usrId);
193  });
194 
195  foreach (array_keys($relations->toArray()) as $usr_id) {
196  $data[] = [
197  'usr_id' => $usr_id,
198  'public_name' => $public_names[$usr_id],
199  'login' => $logins[$usr_id]
200  ];
201  }
202 
203  $this->setData($data);
204  }
205 
209  protected function fillRow(array $a_set): void
210  {
211  if ($this->hasAccessToMailSystem) {
212  $a_set['chb'] = ilLegacyFormElementsUtil::formCheckbox(false, 'usr_ids[]', (string) $a_set['usr_id']);
213  }
214 
215  $public_profile = ilObjUser::_lookupPref($a_set['usr_id'], 'public_profile');
216  if ((!$this->user->isAnonymous() && $public_profile === 'y') || $public_profile === 'g') {
217  $this->ctrl->setParameterByClass(ilPublicUserProfileGUI::class, 'user', $a_set['usr_id']);
218  $profile_target = $this->ctrl->getLinkTargetByClass(
219  ilPublicUserProfileGUI::class,
220  'getHTML'
221  );
222  $a_set['profile_link'] = $profile_target;
223  $a_set['linked_public_name'] = $a_set['public_name'];
224 
225  $a_set['profile_link_login'] = $profile_target;
226  $a_set['linked_login'] = $a_set['login'];
227  } else {
228  $a_set['unlinked_public_name'] = $a_set['public_name'];
229  $a_set['unlinked_login'] = $a_set['login'];
230  }
231 
232  $a_set['contact_actions'] = ilBuddySystemLinkButton::getInstanceByUserId((int) $a_set['usr_id'])->getHtml();
233  parent::fillRow($a_set);
234  }
235 
239  public function render(): string
240  {
241  $listener_tpl = new ilTemplate(
242  'tpl.buddy_system_relation_table_listener.html',
243  true,
244  true,
245  'components/ILIAS/Contact/BuddySystem'
246  );
247  $listener_tpl->setVariable('TABLE_ID', $this->getId());
248  $listener_tpl->setVariable('FILTER_ELM_ID', self::STATE_FILTER_ELM_ID);
249  $listener_tpl->setVariable(
250  'NO_ENTRIES_TEXT',
251  $this->getNoEntriesText() ?: $this->lng->txt('no_items')
252  );
253 
254  return parent::render() . $listener_tpl->get();
255  }
256 }
setData(array $a_data)
$relation
This class represents a selection list property in a property form.
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
setResetCommand(string $a_val, string $a_caption="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupPref(int $a_usr_id, string $a_keyword)
setOptions(array $a_options)
setId(string $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setExternalSorting(bool $a_val)
__construct(object $a_parent_obj, string $a_parent_cmd)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
static formCheckbox(bool $checked, string $varname, string $value, bool $disabled=false)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
getFilterItems(bool $a_optionals=false)
addMultiCommand(string $a_cmd, string $a_text)
static _lookupActive(int $a_usr_id)
setExternalSegmentation(bool $a_val)
static getInstanceByGlobalUser(?ilObjUser $user=null)