ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPublicUserProfileGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
31 {
32  private bool $offline = false;
35  private int $userid = 0;
36  private string $backurl = '';
37  private array $additional = []; // Missing array type.
38  private bool $embedded = false;
39  private array $custom_prefs = []; // Missing array type.
42  private ilCtrl $ctrl;
43  private ilTabsGUI $tabs;
46  private Language $lng;
47 
48  public function __construct(int $a_user_id = 0)
49  {
51  global $DIC;
52 
53  $this->ctrl = $DIC['ilCtrl'];
54  $this->lng = $DIC['lng'];
55  $this->current_user = $DIC['ilUser'];
56  $this->setting = $DIC['ilSetting'];
57  $this->tabs = $DIC['ilTabs'];
58  $this->tpl = $DIC['tpl'];
59  $this->rbac_system = $DIC['rbacsystem'];
60  $this->lng = $DIC['lng'];
61 
62  $this->profile_request = new GUIRequest(
63  $DIC->http(),
64  $DIC->refinery()
65  );
66 
67  if ($a_user_id) {
68  $this->setUserId($a_user_id);
69  } else {
70  $this->setUserId($this->profile_request->getUserId());
71  }
72 
73  $this->ctrl->saveParameter($this, ['user_id','back_url', 'user']);
74  $back_url = $this->profile_request->getBackUrl();
75  if ($back_url !== '') {
76  $this->setBackUrl($back_url);
77  }
78 
79  $this->lng->loadLanguageModule('user');
80  }
81 
82  public function setUserId(int $a_userid): void
83  {
84  $this->userid = $a_userid;
85  }
86 
87  public function getUserId(): int
88  {
89  return $this->userid;
90  }
91 
95  public function setAdditional(array $a_additional): void
96  {
97  $this->additional = $a_additional;
98  }
99 
100  public function getAdditional(): array
101  {
102  return $this->additional;
103  }
104 
108  public function setBackUrl(string $backurl): void
109  {
110  // we only allow relative links
111  $parts = parse_url($backurl);
112  $host = $parts['host'] ?? '';
113  if ($host !== '') {
114  $backurl = '#';
115  }
116  $this->backurl = $backurl;
117  $this->ctrl->setParameter($this, 'back_url', rawurlencode($backurl));
118  }
119 
120  public function getBackUrl(): string
121  {
122  return $this->backurl;
123  }
124 
128  public function setCustomPrefs(array $a_prefs): void // Missing array type.
129  {
130  $this->custom_prefs = $a_prefs;
131  }
132 
136  protected function getPublicPref(ilObjUser $a_user, string $a_id): string
137  {
138  if (!$this->custom_prefs) {
139  return (string) $a_user->getPref($a_id);
140  } else {
141  return (string) ($this->custom_prefs[$a_id] ?? '');
142  }
143  }
144 
145  public function setEmbedded(bool $a_value, bool $a_offline = false): void
146  {
147  $this->embedded = $a_value;
148  $this->offline = $a_offline;
149  }
150 
151  public function executeCommand(): string
152  {
153  $ret = '';
154  if (!$this->validateUser($this->getUserId())) {
155  return '';
156  }
157  $next_class = $this->ctrl->getNextClass($this);
158  $cmd = $this->ctrl->getCmd();
159 
160  $this->tpl->loadStandardTemplate();
161 
162  switch ($next_class) {
163  case 'ilbuddysystemgui':
164  $gui = new ilBuddySystemGUI();
165  $this->ctrl->setReturn($this, 'view');
166  $this->ctrl->forwardCommand($gui);
167  break;
168  case 'ilobjportfoliogui':
169  $portfolio_id = $this->getProfilePortfolio();
170  if ($portfolio_id
171  && $cmd !== 'deliverVCard') {
172  $gui = new ilObjPortfolioGUI($portfolio_id); // #11876
173  $gui->setAdditional($this->getAdditional());
174  $gui->setPermaLink($this->getUserId(), 'usr');
175  $this->ctrl->forwardCommand($gui);
176  break;
177  }
178  // no break
179  default:
180  $ret = $this->$cmd();
181  $this->tpl->setContent($ret);
182  break;
183  }
184 
185  // only for direct links
186  if (strtolower($this->profile_request->getBaseClass()) == 'ilpublicuserprofilegui') {
187  $this->tpl->printToStdout();
188  }
189  return (string) $ret;
190  }
191 
195  public function view(): string
196  {
197  return $this->getHTML();
198  }
199 
200  protected function isProfilePublic(): bool
201  {
202  $user = new ilObjUser($this->getUserId());
203  $current = $user->getPref('public_profile');
204  // #17462 - see ilPersonalProfileGUI::initPublicProfileForm()
205  if ($user->getPref('public_profile') === 'g' && !$this->setting->get('enable_global_profiles')) {
206  $current = 'y';
207  }
208  return in_array($current, ['g', 'y']);
209  }
210 
211  public function getHTML(): string
212  {
213  if ($this->embedded) {
214  return $this->getEmbeddable();
215  }
216 
217  // #15438 - (currently) inactive user?
218  $is_active = true;
219  $user = new ilObjUser($this->getUserId());
220  if (!$user->getActive() ||
221  !$user->checkTimeLimit()) {
222  $is_active = false;
223  }
224 
225  if ($is_active && $this->getProfilePortfolio()) {
226  $this->ctrl->redirectByClass('ilobjportfoliogui', 'preview');
227  } else {
228  if (!$is_active) {
229  ilUtil::redirect('ilias.php?baseClass=ilDashboardGUI');
230  }
231 
232  // Check from Database if value
233  // of public_profile = 'y' show user infomation
234  $user = new ilObjUser($this->getUserId());
235  $current = $user->getPref('public_profile');
236  if ($user->getPref('public_profile') == 'g' && !$this->setting->get('enable_global_profiles')) {
237  $current = 'y';
238  }
239 
240  if ($current != 'y' &&
241  ($current != 'g' || !$this->setting->get('enable_global_profiles')) &&
242  !$this->custom_prefs) {
243  ilUtil::redirect('ilias.php?baseClass=ilDashboardGUI');
244  }
245 
246  $this->renderTitle();
247  return $this->getEmbeddable(true);
248  }
249  return '';
250  }
251 
252 
257  public function getEmbeddable(bool $a_add_goto = false): string
258  {
259  $h = $v = '';
260 
261  // get user object
262  if (!ilObject::_exists($this->getUserId())) {
263  return '';
264  }
265  $user = new ilObjUser($this->getUserId());
266 
267  $tpl = new ilTemplate(
268  'tpl.usr_public_profile.html',
269  true,
270  true,
271  'components/ILIAS/User'
272  );
273 
274 
275  $tpl->setVariable('ROWCOL1', 'tblrow1');
276  $tpl->setVariable('ROWCOL2', 'tblrow2');
277 
278  if (!$this->offline && $this->current_user->getId() != ANONYMOUS_USER_ID) {
279  $ref_url = str_replace('&amp;', '&', $this->getBackUrl());
280  if (!$ref_url) {
281  $ref_url = basename($_SERVER['REQUEST_URI']);
282  }
283 
284  $mail_url = '';
285  if ($this->rbac_system->checkAccess('internal_mail', ilMailGlobalServices::getMailObjectRefId())) {
286  $mail_url = ilMailFormCall::getLinkTarget(
287  $ref_url,
288  '',
289  [],
290  [
291  'type' => 'new',
292  'rcp_to' => $user->getLogin()
293  ]
294  );
295  } elseif ($user->getPref('public_profile') === 'g' ||
296  (!$this->current_user->isAnonymous() && $user->getPref('public_profile') === 'y') &&
297  $user->getPref('public_email') &&
298  $user->getEmail() !== '') {
299  $mail_url = 'mailto:' . $user->getEmail();
300  }
301 
302  if ($mail_url !== '') {
303  $tpl->setCurrentBlock('mail');
304  $tpl->setVariable('TXT_MAIL', $this->lng->txt('send_mail'));
305  $tpl->setVariable('HREF_MAIL', $mail_url);
306  $tpl->parseCurrentBlock();
307  }
308  }
309 
310 
311  // short version, fixes e.g. #27242
312  if (!$this->isProfilePublic()) {
313  $tpl->setVariable('TXT_NAME', $this->lng->txt('name'));
314  $tpl->setVariable('FIRSTNAME', ilUserUtil::getNamePresentation($user->getId()));
315  return $tpl->get();
316  }
317 
318  $first_name = '';
319  if ($this->getPublicPref($user, 'public_title') == 'y') {
320  $first_name .= $user->getUTitle() . ' ';
321  }
322  $first_name .= $user->getFirstname();
323 
324  if ($this->getPublicPref($user, 'public_gender') == 'y' && in_array($user->getGender(), ['m', 'f'])) {
325  $sal = $this->lng->txt('salutation_' . $user->getGender()) . ' ';
326  $tpl->setVariable('SALUTATION', $sal);
327  }
328 
329  $tpl->setVariable('TXT_NAME', $this->lng->txt('name'));
330  $tpl->setVariable('FIRSTNAME', $first_name);
331  $tpl->setVariable('LASTNAME', $user->getLastname());
332 
333  if ($user->getBirthday() &&
334  $this->getPublicPref($user, 'public_birthday') == 'y') {
335  // #17574
336  $tpl->setCurrentBlock('bday_bl');
337  $tpl->setVariable('TXT_BIRTHDAY', $this->lng->txt('birthday'));
338  $tpl->setVariable('VAL_BIRTHDAY', ilDatePresentation::formatDate(new ilDate($user->getBirthday(), IL_CAL_DATE)));
339  $tpl->parseCurrentBlock();
340  }
341 
342  if (!$this->offline) {
343  // vcard
344  $tpl->setCurrentBlock('vcard');
345  $tpl->setVariable('TXT_VCARD', $this->lng->txt('vcard'));
346  $tpl->setVariable('TXT_DOWNLOAD_VCARD', $this->lng->txt('vcard_download'));
347  $this->ctrl->setParameter($this, 'user_id', $this->getUserId());
348  $tpl->setVariable('HREF_VCARD', $this->ctrl->getLinkTarget($this, 'deliverVCard'));
349  }
350 
351  $imagefile = ilObjUser::_getPersonalPicturePath($user->getId(), 'big', false, true);
352  if ($this->getPublicPref($user, 'public_upload') === 'y' && $imagefile !== ''
353  && ($this->current_user->getId() !== ANONYMOUS_USER_ID || $user->getPref('public_profile') === 'g')) {
354 
355  $tpl->setCurrentBlock('image');
356  $tpl->setVariable('TXT_IMAGE', $this->lng->txt('image'));
357  $tpl->setVariable('IMAGE_PATH', $imagefile);
358  $tpl->setVariable('IMAGE_ALT', $this->lng->txt('personal_picture'));
359  $tpl->parseCurrentBlock();
360  }
361 
362  // address
363  if ($this->getPublicPref($user, 'public_street') == 'y' ||
364  $this->getPublicPref($user, 'public_zipcode') == 'y' ||
365  $this->getPublicPref($user, 'public_city') == 'y' ||
366  $this->getPublicPref($user, 'public_country') == 'y') {
367  $address = [];
368  $val_arr = [
369  'getStreet' => 'street',
370  'getZipcode' => 'zipcode',
371  'getCity' => 'city',
372  'getCountry' => 'country',
373  'getSelectedCountry' => 'sel_country'
374  ];
375  foreach ($val_arr as $key => $value) {
376  // if value 'y' show information
377  if ($this->getPublicPref($user, 'public_' . $value) == 'y') {
378  $address_value = $user->$key();
379 
380  // only if set
381  if (trim($address_value) != '') {
382  switch ($value) {
383  case 'street':
384  $address[0] = $address_value;
385  break;
386 
387  case 'zipcode':
388  case 'city':
389  $address[1] = isset($address[1])
390  ? "{$address[1]} {$address_value}"
391  : $address_value;
392  break;
393 
394  case 'sel_country':
395  $this->lng->loadLanguageModule('meta');
396  $address[2] = $this->lng->txt('meta_c_' . $address_value);
397  break;
398 
399  case 'country':
400  $address[2] = $address_value;
401  break;
402  }
403  }
404  }
405  }
406  if (count($address)) {
407  $tpl->setCurrentBlock('address_line');
408  foreach ($address as $line) {
409  if (trim($line)) {
410  $tpl->setVariable('TXT_ADDRESS_LINE', trim($line));
411  $tpl->parseCurrentBlock();
412  }
413  }
414  $tpl->setCurrentBlock('address');
415  $tpl->setVariable('TXT_ADDRESS', $this->lng->txt('address'));
416  $tpl->parseCurrentBlock();
417  }
418  }
419 
420  // if value 'y' show information
421  if ($this->getPublicPref($user, 'public_org_units') == 'y') {
422  $tpl->setCurrentBlock('org_units');
423  $tpl->setVariable('TXT_ORG_UNITS', $this->lng->txt('objs_orgu'));
424  $tpl->setVariable('ORG_UNITS', $user->getOrgUnitsRepresentation());
425  $tpl->parseCurrentBlock();
426  }
427 
428  if ($this->getPublicPref($user, 'public_institution') == 'y' ||
429  $this->getPublicPref($user, 'public_department') == 'y') {
430  $tpl->setCurrentBlock('inst_dep');
431  $sep = '';
432  if ($this->getPublicPref($user, 'public_institution') == 'y') {
433  $h = $this->lng->txt('institution');
434  $v = $user->getInstitution();
435  $sep = ' / ';
436  }
437  if ($this->getPublicPref($user, 'public_department') == 'y') {
438  $h .= $sep . $this->lng->txt('department');
439  $v .= $sep . $user->getDepartment();
440  }
441  $tpl->setVariable('TXT_INST_DEP', $h);
442  $tpl->setVariable('INST_DEP', $v);
443  $tpl->parseCurrentBlock();
444  }
445 
446  // contact
447  $val_arr = [
448  'getPhoneOffice' => 'phone_office', 'getPhoneHome' => 'phone_home',
449  'getPhoneMobile' => 'phone_mobile', 'getFax' => 'fax', 'getEmail' => 'email', 'getSecondEmail' => 'second_email'
450  ];
451  $v = $sep = '';
452  foreach ($val_arr as $key => $value) {
453  // if value 'y' show information
454  if ($this->getPublicPref($user, 'public_' . $value) == 'y') {
455  $v .= $sep . $this->lng->txt($value) . ': ' . $user->$key();
456  $sep = '<br />';
457  }
458  }
459  if ($v != '') {
460  $tpl->parseCurrentBlock('contact');
461  $tpl->setVariable('TXT_CONTACT', $this->lng->txt('contact'));
462  $tpl->setVariable('CONTACT', $v);
463  $tpl->parseCurrentBlock();
464  }
465 
466 
467  $val_arr = [
468  'getHobby' => 'hobby',
469  'getGeneralInterestsAsText' => 'interests_general',
470  'getOfferingHelpAsText' => 'interests_help_offered',
471  'getLookingForHelpAsText' => 'interests_help_looking',
472  'getMatriculation' => 'matriculation',
473  'getClientIP' => 'client_ip'
474  ];
475 
476  foreach ($val_arr as $key => $value) {
477  // if value 'y' show information
478  if ($this->getPublicPref($user, 'public_' . $value) == 'y') {
479  $tpl->setCurrentBlock('profile_data');
480  $tpl->setVariable('TXT_DATA', $this->lng->txt($value));
481  $tpl->setVariable('DATA', $user->$key());
482  $tpl->parseCurrentBlock();
483  }
484  }
485 
486  // portfolios
487  $back = ($this->getBackUrl() != '')
488  ? $this->getBackUrl()
489  : ilLink::_getStaticLink($this->getUserId(), 'usr', true);
491  [$this->getUserId()],
492  $back
493  );
494  $cnt = 0;
495  if (count($port) > 0) {
496  foreach ($port as $u) {
497  $tpl->setCurrentBlock('portfolio');
498  foreach ($u as $link => $title) {
499  $cnt++;
500  $tpl->setVariable('HREF_PORTFOLIO', $link);
501  $tpl->setVariable('TITLE_PORTFOLIO', $title);
502  $tpl->parseCurrentBlock();
503  }
504  }
505  $tpl->setCurrentBlock('portfolios');
506  if ($cnt > 1) {
507  $this->lng->loadLanguageModule('prtf');
508  $tpl->setVariable('TXT_PORTFOLIO', $this->lng->txt('prtf_portfolios'));
509  } else {
510  $tpl->setVariable('TXT_PORTFOLIO', $this->lng->txt('portfolio'));
511  }
512  $tpl->parseCurrentBlock();
513  }
514 
515  // map
516  if (ilMapUtil::isActivated() &&
517  $this->getPublicPref($user, 'public_location') == 'y' &&
518  $user->getLatitude() != '') {
519  $tpl->setVariable('TXT_LOCATION', $this->lng->txt('location'));
520 
521  $map_gui = ilMapUtil::getMapGUI();
522  $map_gui->setMapId('user_map')
523  ->setWidth('350px')
524  ->setHeight('230px')
525  ->setLatitude($user->getLatitude())
526  ->setLongitude($user->getLongitude())
527  ->setZoom($user->getLocationZoom())
528  ->setEnableNavigationControl(true)
529  ->addUserMarker($user->getId());
530 
531  $tpl->setVariable('MAP_CONTENT', $map_gui->getHtml());
532  }
533 
534  // additional defined user data fields
535  $this->user_defined_fields = ilUserDefinedFields::_getInstance();
536  $user_defined_data = $user->getUserDefinedData();
537  foreach ($this->user_defined_fields->getVisibleDefinitions() as $field_id => $definition) {
538  // public setting
539  if ($this->getPublicPref($user, 'public_udf_' . $definition['field_id']) == 'y') {
540  if ($user_defined_data['f_' . $definition['field_id']] != '') {
541  $tpl->setCurrentBlock('udf_data');
542  $tpl->setVariable('TXT_UDF_DATA', $definition['field_name']);
543  $tpl->setVariable('UDF_DATA', $user_defined_data['f_' . $definition['field_id']]);
544  $tpl->parseCurrentBlock();
545  }
546  }
547  }
548 
549  // additional information
550  $additional = $this->getAdditional();
551  if (is_array($additional)) {
552  foreach ($additional as $key => $val) {
553  $tpl->setCurrentBlock('profile_data');
554  $tpl->setVariable('TXT_DATA', $key);
555  $tpl->setVariable('DATA', $val);
556  $tpl->parseCurrentBlock();
557  }
558  }
559 
560  if (
561  $this->getUserId() != $this->current_user->getId() &&
562  !$this->current_user->isAnonymous() &&
564  ) {
565  $button = ilBuddySystemLinkButton::getInstanceByUserId($user->getId());
566  $tpl->setVariable('BUDDY_HTML', $button->getHtml());
567  }
568 
569  // badges
570  $this->tpl->addJavaScript('assets/js/PublicProfileBadges.js');
571  $this->tpl->addOnLoadCode('new BadgeToggle("ilbdgprcont", "ilbdgprfhdm", "ilbdgprfhdl", "ilNoDisplay");');
572  $user_badges = ilBadgeAssignment::getInstancesByUserId($user->getId());
573  if ($user_badges) {
574  $has_public_badge = false;
575  $cnt = 0;
576 
577  $cut = 20;
578 
579  foreach ($user_badges as $ass) {
580  // only active
581  if ($ass->getPosition()) {
582  $cnt++;
583 
584  $renderer = new ilBadgeRenderer($ass);
585 
586  // limit to 20, [MORE] link
587  if ($cnt > $cut) {
588  $tpl->setCurrentBlock('hidden_badge');
589  $tpl->touchBlock('hidden_badge');
590  $tpl->parseCurrentBlock();
591  }
592 
593  $tpl->setCurrentBlock('badge_bl');
594  $tpl->setVariable('BADGE', $renderer->getHTML());
595  $tpl->parseCurrentBlock();
596 
597  $has_public_badge = true;
598  }
599  }
600 
601  if ($cnt > $cut) {
602  $this->lng->loadLanguageModule('badge');
603  $tpl->setVariable('BADGE_HIDDEN_TXT_MORE', $this->lng->txt('badge_profile_more'));
604  $tpl->setVariable('BADGE_HIDDEN_TXT_LESS', $this->lng->txt('badge_profile_less'));
605  }
606 
607  if ($has_public_badge) {
608  $tpl->setVariable('TXT_BADGES', $this->lng->txt('obj_bdga'));
609  }
610  }
611 
612  $goto = '';
613  if ($a_add_goto) {
614  $mtpl = $this->tpl;
615 
616  $mtpl->setPermanentLink(
617  'usr',
618  $user->getId(),
619  '',
620  '_top'
621  );
622  }
623  return $tpl->get() . $goto;
624  }
625 
629  public function deliverVCard(): void
630  {
631  // get user object
632  if (!ilObject::_exists($this->getUserId())) {
633  return;
634  }
635  $user = new ilObjUser($this->getUserId());
636 
637  $vcard = new VCard();
638 
639  // ilsharedresourceGUI: embedded in shared portfolio
640  if ($user->getPref('public_profile') != 'y' &&
641  $user->getPref('public_profile') != 'g' &&
642  strtolower($this->profile_request->getBaseClass()) != 'ilsharedresourcegui' &&
643  $this->current_user->getId() != $this->getUserId()
644  ) {
645  return;
646  }
647 
648  $vcard->setName($user->getLastname(), $user->getFirstname(), '', $user->getUTitle());
649  $vcard->setNickname($user->getLogin());
650 
651  list($image, $type) = (new ilUserAvatarResolver($this->getUserId()))->getUserPictureForVCard();
652  if ($image !== null) {
653  $vcard->setPhoto($image, $type);
654  }
655 
656  $val_arr = [
657  'getOrgUnitsRepresentation' => 'org_units', 'getInstitution' => 'institution',
658  'getDepartment' => 'department', 'getStreet' => 'street',
659  'getZipcode' => 'zipcode', 'getCity' => 'city', 'getCountry' => 'country',
660  'getPhoneOffice' => 'phone_office', 'getPhoneHome' => 'phone_home',
661  'getPhoneMobile' => 'phone_mobile', 'getFax' => 'fax', 'getEmail' => 'email',
662  'getHobby' => 'hobby', 'getMatriculation' => 'matriculation',
663  'getClientIP' => 'client_ip', 'dummy' => 'location'
664  ];
665 
666  $org = [];
667  $adr = [];
668  foreach ($val_arr as $key => $value) {
669  // if value 'y' show information
670  if ($user->getPref('public_' . $value) == 'y') {
671  switch ($value) {
672  case 'institution':
673  $org[0] = $user->$key();
674  break;
675  case 'department':
676  $org[1] = $user->$key();
677  break;
678  case 'street':
679  $adr[2] = $user->$key();
680  break;
681  case 'zipcode':
682  $adr[5] = $user->$key();
683  break;
684  case 'city':
685  $adr[3] = $user->$key();
686  break;
687  case 'country':
688  $adr[6] = $user->$key();
689  break;
690  case 'phone_office':
691  $vcard->setPhone($user->$key(), VCard::TEL_TYPE_WORK);
692  break;
693  case 'phone_home':
694  $vcard->setPhone($user->$key(), VCard::TEL_TYPE_HOME);
695  break;
696  case 'phone_mobile':
697  $vcard->setPhone($user->$key(), VCard::TEL_TYPE_CELL);
698  break;
699  case 'fax':
700  $vcard->setPhone($user->$key(), VCard::TEL_TYPE_FAX);
701  break;
702  case 'email':
703  $vcard->setEmail($user->$key());
704  break;
705  case 'hobby':
706  $vcard->setNote($user->$key());
707  break;
708  case 'location':
709  $vcard->setPosition($user->getLatitude(), $user->getLongitude());
710  break;
711  }
712  }
713  }
714 
715  if (count($org)) {
716  $vcard->setOrganization(implode(';', $org));
717  }
718  if (count($adr)) {
719  $vcard->setAddress(
720  $adr[0] ?? '',
721  $adr[1] ?? '',
722  $adr[2] ?? '',
723  $adr[3] ?? '',
724  $adr[4] ?? '',
725  $adr[5] ?? '',
726  $adr[6] ?? ''
727  );
728  }
729 
730  ilUtil::deliverData($vcard->buildVCard(), $vcard->getFilename(), $vcard->getMimetype());
731  }
732 
736  protected function validateUser(int $usrId): bool
737  {
738  if (ilObject::_lookupType($usrId) != 'usr') {
739  return false;
740  }
741 
742  $user = new ilObjUser($usrId);
743 
744  if ($this->current_user->isAnonymous()) {
745  if (strtolower($this->ctrl->getCmd()) == strtolower('approveContactRequest')) {
746  $this->ctrl->redirectToURL('login.php?cmd=force_login&target=usr_' . $usrId . '_contact_approved');
747  } elseif (strtolower($this->ctrl->getCmd()) == strtolower('ignoreContactRequest')) {
748  $this->ctrl->redirectToURL('login.php?cmd=force_login&target=usr_' . $usrId . '_contact_ignored');
749  }
750 
751  if ($user->getPref('public_profile') != 'g') {
752  // #12151
753  if ($user->getPref('public_profile') == 'y') {
754  $this->ctrl->redirectToURL('login.php?cmd=force_login&target=usr_' . $usrId);
755  }
756 
757  return false;
758  }
759  }
760 
761  return true;
762  }
763 
764  public function renderTitle(): void
765  {
766  $this->tpl->resetHeaderBlock();
767  $this->tpl->setTitle(ilUserUtil::getNamePresentation($this->getUserId()));
768  $this->tpl->setTitleIcon(ilObjUser::_getPersonalPicturePath($this->getUserId(), 'xsmall'));
769  }
770 
774  protected function getProfilePortfolio(): ?int
775  {
776  $portfolio_id = ilObjPortfolio::getDefaultPortfolio($this->getUserId());
777  if ($portfolio_id) {
778  $access_handler = new ilPortfolioAccessHandler();
779  if ($access_handler->checkAccess('read', '', $portfolio_id)) {
780  return $portfolio_id;
781  }
782  }
783  return null;
784  }
785 
786  public static function getAutocompleteResult(
787  string $a_field_id,
788  string $a_term
789  ): array {
790  global $DIC;
791 
792  $ilUser = $DIC['ilUser'];
793  $result = [];
794 
795  $multi_fields = [
796  'interests_general',
797  'interests_help_offered',
798  'interests_help_looking'
799  ];
800  if (in_array($a_field_id, $multi_fields) && $a_term) {
801  // registration has no current user
802  $user_id = null;
803  if ($ilUser && $ilUser->getId() && $ilUser->getId() != ANONYMOUS_USER_ID) {
804  $user_id = $ilUser->getId();
805  }
806 
807  $result = [];
808  $cnt = 0;
809 
810  // term is searched in ALL interest fields, no distinction
811  foreach (ilObjUser::findInterests($a_term, $ilUser->getId()) as $item) {
812  $result[$cnt] = new stdClass();
813  $result[$cnt]->value = $item;
814  $result[$cnt]->label = $item;
815  $cnt++;
816  }
817  }
818 
819  return $result;
820  }
821 
822  protected function doProfileAutoComplete(): void
823  {
824  $field_id = $this->profile_request->getFieldId();
825  $term = $this->profile_request->getTerm();
826 
827  $result = self::getAutocompleteResult($field_id, $term);
828 
829  echo json_encode($result, JSON_THROW_ON_ERROR);
830  exit();
831  }
832 
833  protected function approveContactRequest(): void
834  {
835  $osd_id = $this->profile_request->getOsdId();
836  if ($osd_id) {
837  $this->ctrl->setParameterByClass('ilBuddySystemGUI', 'osd_id', $osd_id);
838  }
839  $this->ctrl->setParameterByClass('ilBuddySystemGUI', 'user_id', $this->getUserId());
840  $this->ctrl->redirectByClass(['ilPublicUserProfileGUI', 'ilBuddySystemGUI'], 'link');
841  }
842 
843  protected function ignoreContactRequest(): void
844  {
845  $osd_id = $this->profile_request->getOsdId();
846  if ($osd_id > 0) {
847  $this->ctrl->setParameterByClass('ilBuddySystemGUI', 'osd_id', $osd_id);
848  }
849 
850  $this->ctrl->setParameterByClass('ilBuddySystemGUI', 'user_id', $this->getUserId());
851  $this->ctrl->redirectByClass(['ilPublicUserProfileGUI', 'ilBuddySystemGUI'], 'ignore');
852  }
853 }
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
setEmbedded(bool $a_value, bool $a_offline=false)
$renderer
Class ilBuddySystemGUI.
const ANONYMOUS_USER_ID
Definition: constants.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
touchBlock(string $block)
overwrites ITX::touchBlock.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
static getInstancesByUserId(int $a_user_id)
Additional user data fields definition.
deliverVCard()
Deliver vcard information.
static getAutocompleteResult(string $a_field_id, string $a_term)
static getDefaultPortfolio(int $a_user_id)
setAdditional(array $a_additional)
Set Additonal Information.
static getLinkTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
setVariable(string $variable, $value='')
Sets the given variable to the given value.
setBackUrl(string $backurl)
Set Back Link URL.
RFC 2426 vCard MIME Directory Profile 3.0 class.
Definition: VCard.php:27
getPublicPref(ilObjUser $a_user, string $a_id)
Get user preference for public profile.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getProfilePortfolio()
Check if current profile portfolio is accessible.
GUI class for public user profile presentation.
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static getMapGUI()
Get an instance of the GUI class.
ilObjPortfolioGUI: ilPortfolioPageGUI, ilPageObjectGUI ilObjPortfolioGUI: ilWorkspaceAccessGUI, ilCommentGUI, ilCommonActionDispatcherGUI ilObjPortfolioGUI: ilObjectContentStyleSettingsGUI, ilPortfolioExerciseGUI ilObjPortfolioGUI: ILIAS
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:
ilUserDefinedFields $user_defined_fields
validateUser(int $usrId)
Check if given user id is valid.
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
getPref(string $a_keyword)
global $DIC
Definition: shib_login.php:22
setCustomPrefs(array $a_prefs)
Set custom preferences for public profile fields.
getEmbeddable(bool $a_add_goto=false)
get public profile html code Used in Personal Profile (as preview) and Portfolio (as page block) ...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
Class ilUserAvatarResolver.
static _isAnonymous(int $usr_id)
static redirect(string $a_script)
static isActivated()
Checks whether Map feature is activated.
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
static findInterests(string $a_term, ?int $a_user_id=null, ?string $a_field_id=null)
const IL_CAL_DATE
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
__construct(Container $dic, ilPlugin $plugin)
Access handler for portfolio NOTE: This file needs to stay in the classes directory, WAC will be confused otherwise.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
static getAvailablePortfolioLinksForUserIds(array $a_owner_ids, ?string $a_back_url=null)
static _lookupType(int $id, bool $reference=false)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl