ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMemberExport.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
27 {
28  public const EXPORT_CSV = 1;
29  public const EXPORT_EXCEL = 2;
30 
31  private int $ref_id;
32  private int $obj_id;
33  private string $type;
34  private int $export_type;
36  private array $groups = [];
37  private array $groups_participants = [];
38  private array $groups_rights = [];
39  private ?string $filename = null;
40 
41  protected ilLanguage $lng;
42  protected ilTree $tree;
44  protected array $agreement = [];
45 
48  protected ?ilCSVWriter $csv = null;
49  protected ?ilExcel $worksheet = null;
50 
51  private array $user_ids = array();
52  private array $user_course_data = array();
53  private array $user_course_fields = array();
54  private array $user_profile_data = array();
55 
56  public function __construct(int $a_ref_id, int $a_type = self::EXPORT_CSV)
57  {
58  global $DIC;
59 
60  $ilObjDataCache = $DIC['ilObjDataCache'];
61 
62  $this->lng = $DIC->language();
63  $this->tree = $DIC->repositoryTree();
64  $this->access = $DIC->access();
65 
66  $this->export_type = $a_type;
67  $this->ref_id = $a_ref_id;
68  $this->obj_id = $ilObjDataCache->lookupObjId($this->ref_id);
69  $this->type = ilObject::_lookupType($this->obj_id);
70 
71  $this->initMembers();
72  $this->initGroups();
73 
74  $this->agreement = ilMemberAgreement::_readByObjId($this->obj_id);
75  $this->settings = new ilUserFormSettings('memexp');
76  $this->privacy = ilPrivacySettings::getInstance();
77  }
78 
83  public function filterUsers(array $a_usr_ids): array
84  {
85  return $this->access->filterUserIdsByRbacOrPositionOfCurrentUser(
86  'manage_members',
87  'manage_members',
88  $this->ref_id,
89  $a_usr_ids
90  );
91  }
92 
93  public function setFilename(string $a_file): void
94  {
95  $this->filename = $a_file;
96  }
97 
98  public function getFilename(): ?string
99  {
100  return $this->filename;
101  }
102 
103  public function getRefId(): int
104  {
105  return $this->ref_id;
106  }
107 
108  public function getType(): string
109  {
110  return $this->type;
111  }
112 
113  public function getExportType(): int
114  {
115  return $this->export_type;
116  }
117 
118  public function getObjId(): int
119  {
120  return $this->obj_id;
121  }
122 
123  public function create(): void
124  {
125  $this->fetchUsers();
126  switch ($this->getExportType()) {
127  case self::EXPORT_CSV:
128  $this->createCSV();
129  break;
130 
131  case self::EXPORT_EXCEL:
132  $this->createExcel();
133  break;
134  }
135  }
136 
137  public function getCSVString(): ?string
138  {
139  if ($this->csv instanceof ilCSVWriter) {
140  return $this->csv->getCSVString();
141  }
142  return null;
143  }
144 
145  public function createExcel(): void
146  {
147  $this->worksheet = new ilExcel();
148  $this->worksheet->addSheet($this->lng->txt("members"));
149  $this->write();
150 
151  $this->worksheet->writeToFile($this->getFilename());
152  }
153 
154  public function createCSV(): void
155  {
156  $this->csv = new ilCSVWriter();
157  $this->write();
158  }
159 
163  protected function addCol(string $a_value, int $a_row, int $a_col): void
164  {
165  switch ($this->getExportType()) {
166  case self::EXPORT_CSV:
167  $this->csv->addColumn($a_value);
168  break;
169 
170  case self::EXPORT_EXCEL:
171  $this->worksheet->setCell($a_row + 1, $a_col, $a_value);
172  break;
173  }
174  }
175 
176  protected function addRow(): void
177  {
178  switch ($this->getExportType()) {
179  case self::EXPORT_CSV:
180  $this->csv->addRow();
181  break;
182 
183  case self::EXPORT_EXCEL:
184  break;
185  }
186  }
187 
188  protected function getOrderedExportableFields(): array
189  {
191  $field_info->sortExportFields();
192  $fields[] = 'role';
193  // Append agreement info
194  $privacy = ilPrivacySettings::getInstance();
195  if ($privacy->courseConfirmationRequired()) {
196  $fields[] = 'agreement';
197  }
198 
199  foreach ($field_info->getExportableFields() as $field) {
200  if ($this->settings->enabled($field)) {
201  $fields[] = $field;
202  }
203  }
204 
206  foreach ($udf->getCourseExportableFields() as $field_id => $udf_data) {
207  if ($this->settings->enabled('udf_' . $field_id)) {
208  $fields[] = 'udf_' . $field_id;
209  }
210  }
211 
212  // Add course specific fields
213  foreach (ilCourseDefinedFieldDefinition::_getFields($this->obj_id) as $field_obj) {
214  if ($this->settings->enabled('cdf_' . $field_obj->getId())) {
215  $fields[] = 'cdf_' . $field_obj->getId();
216  }
217  }
218  if ($this->settings->enabled('group_memberships')) {
219  $fields[] = 'crs_members_groups';
220  }
221  return $fields;
222  }
223 
224  protected function write(): void
225  {
226  // Add header line
227  $row = 0;
228  $col = 0;
229  foreach ($all_fields = $this->getOrderedExportableFields() as $field) {
230  switch ($field) {
231  case 'role':
232  $this->addCol($this->lng->txt($this->getType() . '_role_status'), $row, $col++);
233  break;
234  case 'agreement':
235  $this->addCol($this->lng->txt('ps_agreement_accepted'), $row, $col++);
236  break;
237  case 'consultation_hour':
238  $this->lng->loadLanguageModule('dateplaner');
239  $this->addCol($this->lng->txt('cal_ch_field_ch'), $row, $col++);
240  break;
241 
242  case 'org_units':
243  $this->addCol($this->lng->txt('org_units'), $row, $col++);
244  break;
245 
246  default:
247  if (strpos($field, 'udf_') === 0) {
248  $field_id = explode('_', $field);
250  $def = $udf->getDefinition((int) $field_id[1]);
251  #$this->csv->addColumn($def['field_name']);
252  $this->addCol($def['field_name'], $row, $col++);
253  } elseif (strpos($field, 'cdf_') === 0) {
254  $field_id = explode('_', $field);
255  #$this->csv->addColumn(ilCourseDefinedFieldDefinition::_lookupName($field_id[1]));
256  $this->addCol(ilCourseDefinedFieldDefinition::_lookupName((int) $field_id[1]), $row, $col++);
257  } elseif ($field === "username") {//User Name Presentation Guideline; username should be named login
258  $this->addCol($this->lng->txt("login"), $row, $col++);
259  } else {
260  #$this->csv->addColumn($this->lng->txt($field));
261  $this->addCol($this->lng->txt($field), $row, $col++);
262  }
263  break;
264  }
265  }
266  $this->addRow();
267  // Add user data
268  foreach ($this->user_ids as $usr_id) {
269  $row++;
270  $col = 0;
271  $usr_id = (int) $usr_id;
272 
273  $udf_data = new ilUserDefinedData($usr_id);
274  foreach ($all_fields as $field) {
275  // Handle course defined fields
276  if ($this->addUserDefinedField($udf_data, $field, $row, $col)) {
277  $col++;
278  continue;
279  }
280 
281  if ($this->addCourseField($usr_id, $field, $row, $col)) {
282  $col++;
283  continue;
284  }
285 
286  switch ($field) {
287  case 'role':
288  switch ($this->user_course_data[$usr_id]['role'] ?? '') {
290  $this->addCol($this->lng->txt('crs_admin'), $row, $col++);
291  break;
292 
294  $this->addCol($this->lng->txt('crs_tutor'), $row, $col++);
295  break;
296 
298  $this->addCol($this->lng->txt('crs_member'), $row, $col++);
299  break;
300 
302  $this->addCol($this->lng->txt('il_grp_admin'), $row, $col++);
303  break;
304 
306  $this->addCol($this->lng->txt('il_grp_member'), $row, $col++);
307  break;
308 
309  case 'subscriber':
310  $this->addCol($this->lng->txt($this->getType() . '_subscriber'), $row, $col++);
311  break;
312 
313  default:
314  $this->addCol($this->lng->txt('crs_waiting_list'), $row, $col++);
315  break;
316  }
317  break;
318 
319  case 'agreement':
320  if (isset($this->agreement[$usr_id])) {
321  if ($this->agreement[$usr_id]['accepted']) {
322  $dt = new ilDateTime($this->agreement[$usr_id]['acceptance_time'], IL_CAL_UNIX);
323  $this->addCol($dt->get(IL_CAL_DATETIME), $row, $col++);
324  } else {
325  $this->addCol($this->lng->txt('ps_not_accepted'), $row, $col++);
326  }
327  } else {
328  $this->addCol($this->lng->txt('ps_not_accepted'), $row, $col++);
329  }
330  break;
331 
332  // These fields are always enabled
333  case 'username':
334  $this->addCol($this->user_profile_data[$usr_id]['login'], $row, $col++);
335  break;
336 
337  case 'firstname':
338  case 'lastname':
339  $this->addCol($this->user_profile_data[$usr_id][$field], $row, $col++);
340  break;
341 
342  case 'consultation_hour':
344  $this->obj_id,
345  $GLOBALS['DIC']['ilUser']->getId()
346  );
347 
348  $uts = array();
349  foreach ((array) $bookings[$usr_id] as $ut) {
352  new ilDateTime($ut['dt'], IL_CAL_UNIX),
353  new ilDateTime($ut['dtend'], IL_CAL_UNIX)
354  );
355  if (strlen($ut['explanation'])) {
356  $tmp .= ' ' . $ut['explanation'];
357  }
358  $uts[] = $tmp;
359  }
360  $uts_str = implode(',', $uts);
361  $this->addCol($uts_str, $row, $col++);
362  break;
363  case 'crs_members_groups':
364  $groups = array();
365 
366  foreach (array_keys($this->groups) as $grp_ref) {
367  if (in_array($usr_id, $this->groups_participants[$grp_ref])
368  && $this->groups_rights[$grp_ref]) {
369  $groups[] = $this->groups[$grp_ref];
370  }
371  }
372  $this->addCol(implode(", ", $groups), $row, $col++);
373  break;
374 
375  case 'org_units':
376  $this->addCol(ilObjUser::lookupOrgUnitsRepresentation($usr_id), $row, $col++);
377  break;
378 
379  default:
380  // Check aggreement
381  if (
382  !$this->privacy->courseConfirmationRequired() or
383  (isset($this->agreement[$usr_id]['accepted']) &&
384  $this->agreement[$usr_id]['accepted'])
385  ) {
386  #$this->csv->addColumn($this->user_profile_data[$usr_id][$field]);
387  $this->addCol($this->user_profile_data[$usr_id][$field] ?? '', $row, $col++);
388  } else {
389  #$this->csv->addColumn('');
390  $this->addCol('', $row, $col++);
391  }
392  break;
393  }
394  }
395  $this->addRow();
396  }
397  }
398 
399  private function fetchUsers(): void
400  {
402 
403  if ($this->settings->enabled('admin')) {
404  $this->user_ids = $tmp_ids = $this->members->getAdmins();
405  $this->readCourseData($tmp_ids);
406  }
407  if ($this->settings->enabled('tutor')) {
408  $this->user_ids = array_merge($tmp_ids = $this->members->getTutors(), $this->user_ids);
409  $this->readCourseData($tmp_ids);
410  }
411  if ($this->settings->enabled('member')) {
412  $this->user_ids = array_merge($tmp_ids = $this->members->getMembers(), $this->user_ids);
413  $this->readCourseData($tmp_ids);
414  }
415  if ($this->settings->enabled('subscribers')) {
416  $this->user_ids = array_merge($tmp_ids = $this->members->getSubscribers(), $this->user_ids);
417  $this->readCourseData($tmp_ids);
418  }
419  if ($this->settings->enabled('waiting_list')) {
420  $waiting_list = new ilCourseWaitingList($this->obj_id);
421  $this->user_ids = array_merge($waiting_list->getUserIds(), $this->user_ids);
422  }
423  $this->user_ids = $this->filterUsers($this->user_ids);
424 
425  // Sort by lastname
426  $this->user_ids = ilUtil::_sortIds($this->user_ids, 'usr_data', 'lastname', 'usr_id');
427 
428  // Finally read user profile data
429  $this->user_profile_data = ilObjUser::_readUsersProfileData($this->user_ids);
430  }
431 
437  private function readCourseData(array $a_user_ids): void
438  {
439  foreach ($a_user_ids as $user_id) {
440  // Read course related data
441  if ($this->members->isAdmin($user_id)) {
442  $this->user_course_data[$user_id]['role'] = $this->getType() === 'crs' ? ilParticipants::IL_CRS_ADMIN : ilParticipants::IL_GRP_ADMIN;
443  } elseif ($this->members->isTutor($user_id)) {
444  $this->user_course_data[$user_id]['role'] = ilParticipants::IL_CRS_TUTOR;
445  } elseif ($this->members->isMember($user_id)) {
446  $this->user_course_data[$user_id]['role'] = $this->getType() === 'crs' ? ilParticipants::IL_CRS_MEMBER : ilParticipants::IL_GRP_MEMBER;
447  } else {
448  $this->user_course_data[$user_id]['role'] = 'subscriber';
449  }
450  }
451  }
452 
453  private function readCourseSpecificFieldsData(): void
454  {
455  $this->user_course_fields = ilCourseUserData::_getValuesByObjId($this->obj_id);
456  }
457 
461  private function addCourseField(int $a_usr_id, string $a_field, int $row, int $col): bool
462  {
463  if (strpos($a_field, 'cdf_') !== 0) {
464  return false;
465  }
466  if (
467  !$this->privacy->courseConfirmationRequired() ||
468  ($this->agreement[$a_usr_id]['accepted'] ?? false)
469  ) {
470  $field_info = explode('_', $a_field);
471  $field_id = $field_info[1] ?? 0;
472  $value = '';
473  if (isset($this->user_course_fields[$a_usr_id][$field_id])) {
474  $value = $this->user_course_fields[$a_usr_id][$field_id];
475  }
476  $this->addCol((string) $value, $row, $col);
477  return true;
478  }
479  #$this->csv->addColumn('');
480  $this->addCol('', $row, $col);
481  return true;
482  }
483 
487  private function addUserDefinedField(ilUserDefinedData $udf_data, string $a_field, int $row, int $col): bool
488  {
489  if (strpos($a_field, 'udf_') !== 0) {
490  return false;
491  }
492 
493  if (
494  !$this->privacy->courseConfirmationRequired() ||
495  (isset($this->agreement[$udf_data->getUserId()]['accepted']) &&
496  $this->agreement[$udf_data->getUserId()]['accepted'])
497  ) {
498  $field_info = explode('_', $a_field);
499  $field_id = $field_info[1];
500  $value = $udf_data->get('f_' . $field_id);
501  #$this->csv->addColumn($value);
502  $this->addCol($value, $row, $col);
503  return true;
504  }
505 
506  $this->addCol('', $row, $col);
507  return true;
508  }
509 
513  protected function initMembers(): void
514  {
515  if ($this->getType() === 'crs') {
516  $this->members = ilCourseParticipants::_getInstanceByObjId($this->getObjId());
517  }
518  if ($this->getType() === 'grp') {
519  $this->members = ilGroupParticipants::_getInstanceByObjId($this->getObjId());
520  }
521  }
522 
523  protected function initGroups(): void
524  {
525  $parent_node = $this->tree->getNodeData($this->ref_id);
526  $groups = $this->tree->getSubTree($parent_node, true, ['grp']);
527  if (is_array($groups) && count($groups)) {
528  $this->groups_rights = [];
529  foreach ($groups as $idx => $group_data) {
530  // check for group in group
531  if (
532  $group_data["parent"] != $this->ref_id &&
533  $this->tree->checkForParentType((int) $group_data["ref_id"], "grp", true)
534  ) {
535  unset($groups[$idx]);
536  } else {
537  $this->groups[$group_data["ref_id"]] = $group_data["title"];
538  //TODO: change permissions from write to manage_members plus "|| ilObjGroup->getShowMembers()"----- uncomment below; testing required
539  $this->groups_rights[$group_data["ref_id"]] =
540  $this->access->checkAccess("write", "", (int) $group_data["ref_id"]);
541  $gobj = ilGroupParticipants::_getInstanceByObjId((int) $group_data["obj_id"]);
542  $this->groups_participants[$group_data["ref_id"]] = $gobj->getParticipants();
543  }
544  }
545  }
546  }
547 }
__construct(int $a_ref_id, int $a_type=self::EXPORT_CSV)
static array static setUseRelativeDates(bool $a_status)
set use relative dates
Class for generation of member export files.
const IL_CAL_DATETIME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getValuesByObjId(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilUserFormSettings $settings
static _getFields(int $a_container_id, $a_sort=self::IL_CDF_SORT_NAME)
Get all fields of a container.
const IL_CAL_UNIX
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addUserDefinedField(ilUserDefinedData $udf_data, string $a_field, int $row, int $col)
Add user defined fields.
ilParticipants $members
static _getInstanceByObjId(int $a_obj_id)
$GLOBALS["DIC"]
Definition: wac.php:53
setFilename(string $a_file)
ilPrivacySettings $privacy
readCourseData(array $a_user_ids)
Read All User related course data.
Singleton class that stores all privacy settings.
global $DIC
Definition: shib_login.php:22
addCol(string $a_value, int $a_row, int $a_col)
Write one column.
static lookupManagedBookingsForObject(int $a_obj_id, int $a_usr_id)
Lookup bookings for own and managed consultation hours of an object.
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),&#39;usr_data&#39;,&#39;lastname&#39;,&#39;usr_id&#39;) => sorts by lastname.
ilAccessHandler $access
Base class for course and group participants.
static _getInstanceByType(string $a_type)
Get Singleton Instance.
filterUsers(array $a_usr_ids)
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
static _readUsersProfileData(array $a_user_ids)
static _readByObjId(int $a_obj_id)
Read user data by object id.
addCourseField(int $a_usr_id, string $a_field, int $row, int $col)
Fill course specific fields.
initMembers()
Init member object.
static _lookupType(int $id, bool $reference=false)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.