ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContactUserActionProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  private ilObjUser $user;
29  private array $stateToPermLinkMap = [
30  'ilBuddySystemLinkedRelationState' => '_contact_approved',
31  'ilBuddySystemIgnoredRequestRelationState' => '_contact_ignored',
32  ];
33 
34  public function __construct()
35  {
36  global $DIC;
37 
39 
40  $this->user = $DIC['ilUser'];
41  }
42 
46  public function getComponentId(): string
47  {
48  return 'contact';
49  }
50 
54  public function getActionTypes(): array
55  {
56  $this->lng->loadLanguageModule('buddysystem');
57  return [
58  'handle_req' => $this->lng->txt('buddy_handle_contact_request'),
59  ];
60  }
61 
65  public function collectActionsForTargetUser(int $a_target_user): ilUserActionCollection
66  {
68 
69  if (!ilBuddySystem::getInstance()->isEnabled()) {
70  return $coll;
71  }
72 
73  if ($this->user->isAnonymous() || ilObjUser::_isAnonymous($this->getUserId())) {
74  return $coll;
75  }
76 
78  $requested_contacts = $buddyList->getRequestRelationsForOwner()->getKeys();
79 
80  if (in_array($a_target_user, $requested_contacts)) {
81  $this->lng->loadLanguageModule('buddysystem');
82 
83  $relation = $buddyList->getRelationByUserId($a_target_user);
84  foreach ($relation->getCurrentPossibleTargetStates() as $target_state) {
85  $f = new ilUserAction();
86  $f->setText(
87  $this->lng->txt(
88  'buddy_bs_act_btn_txt_requested_to_' .
89  ilStr::convertUpperCamelCaseToUnderscoreCase($target_state->getName())
90  )
91  );
92  $f->setType('handle_req');
93  $f->setHref(
95  $a_target_user,
96  'usr',
97  true,
98  $this->stateToPermLinkMap[get_class($target_state)]
99  )
100  );
101  $f->setData([
102  'current-state' => get_class($relation->getState()),
103  'target-state' => get_class($target_state),
104  'buddy-id' => $a_target_user,
105  'action' => $target_state->getAction()
106  ]);
107  $coll->addAction($f);
108  }
109  }
110 
111  return $coll;
112  }
113 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByGlobalUser()
static convertUpperCamelCaseToUnderscoreCase(string $value)
Convert a value given in camel case conversion to underscore case conversion (e.g.
Class ilContactUserActionProvider.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
static _isAnonymous(int $usr_id)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...