ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilStudyProgrammeMailMemberSearchGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 declare(strict_types=1);
6 
8 {
12  protected $gui;
13 
17  protected $ctrl;
18 
22  protected $tpl;
23 
27  protected $lng;
28 
32  protected $access;
33 
37  protected $assignments;
38 
39  public function __construct(
40  ilCtrl $ctrl,
44  ) {
45  $this->ctrl = $ctrl;
46  $this->tpl = $tpl;
47  $this->lng = $lng;
48  $this->access = $access;
49 
50  $this->lng->loadLanguageModule('mail');
51  $this->lng->loadLanguageModule('search');
52  }
53 
54  public function getAssignments() : array
55  {
56  return $this->assignments;
57  }
58 
59  public function setAssignments(array $assignments) : void
60  {
61  $this->assignments = $assignments;
62  }
63 
64  public function getBackTarget() : string
65  {
66  return $this->back_target;
67  }
68 
69  public function setBackTarget(string $target)
70  {
71  $this->back_target = $target;
72  }
73 
74  public function executeCommand() : void
75  {
76  $next_class = $this->ctrl->getNextClass($this);
77  $cmd = $this->ctrl->getCmd();
78 
79  $this->ctrl->setReturn($this, '');
80 
81  switch ($next_class) {
82  default:
83  switch ($cmd) {
84  case 'sendMailToSelectedUsers':
85  $this->sendMailToSelectedUsers();
86  break;
87  case 'showSelectableUsers':
88  case 'members':
89  $this->showSelectableUsers();
90  break;
91  case 'cancel':
92  $this->redirectToParent();
93  break;
94  default:
95  throw new Exception('Unknown command ' . $cmd);
96  break;
97  }
98  break;
99  }
100  }
101 
102  protected function showSelectableUsers() : void
103  {
104  $this->tpl->loadStandardTemplate();
105  $tbl = new ilStudyProgrammeMailMemberSearchTableGUI($this, 'showSelectableUsers');
106  $tbl->setData($this->getProcessData());
107 
108  $this->tpl->setContent($tbl->getHTML());
109  }
110 
111  protected function getProcessData() : array
112  {
113  $data = [];
114 
115  foreach ($this->getAssignments() as $assignment) {
116  $user_id = $assignment->getUserId();
117  $name = ilObjUser::_lookupName($user_id);
118  $login = ilObjUser::_lookupLogin($user_id);
119 
120  $publicName = '';
121  if (in_array(ilObjUser::_lookupPref($user_id, 'public_profile'), array('g', 'y'))) {
122  $publicName = $name['lastname'] . ', ' . $name['firstname'];
123  }
124 
125  $data[$user_id]['user_id'] = $user_id;
126  $data[$user_id]['login'] = $login;
127  $data[$user_id]['name'] = $publicName;
128  }
129 
130  return $data;
131  }
132 
133  protected function sendMailToSelectedUsers() : bool
134  {
135  if (!isset($_POST['user_ids']) || !count($_POST['user_ids'])) {
136  ilUtil::sendFailure($this->lng->txt("no_checkbox"));
137  $this->showSelectableUsers();
138  return false;
139  }
140 
141  $rcps = array();
142  foreach ($_POST['user_ids'] as $usr_id) {
143  $rcps[] = ilObjUser::_lookupLogin($usr_id);
144  }
145 
146  if (!count(array_filter($rcps))) {
147  ilUtil::sendFailure($this->lng->txt("no_checkbox"));
148  $this->showSelectableUsers();
149  return false;
150  }
152 
154  $this,
155  'members',
156  array(),
157  array(
158  'type' => 'new',
159  'sig' => $this->createMailSignature()
160  ),
161  $this->generateContextArray()
162  ));
163 
164  return true;
165  }
166 
167  protected function generateContextArray() : array
168  {
169  $context_array = [];
170  $ref_id = $this->getObjectRefId();
171  $type = ilObject::_lookupType($ref_id, true);
172  switch ($type) {
173  case 'prg':
174  if ($this->access->checkAccess('write', "", $ref_id)) {
175  $context_array = array(
177  'ref_id' => $ref_id,
178  'ts' => time()
179  );
180  }
181  break;
182  }
183  return $context_array;
184  }
185 
186  protected function redirectToParent() : void
187  {
189  }
190 
191  protected function createMailSignature() : string
192  {
193  $link = chr(13) . chr(10) . chr(13) . chr(10);
194  $link .= $this->lng->txt('prg_mail_permanent_link');
195  $link .= chr(13) . chr(10) . chr(13) . chr(10);
196  include_once 'Services/Link/classes/class.ilLink.php';
197  $link .= ilLink::_getLink($this->getObjectRefId());
198  return rawurlencode(base64_encode($link));
199  }
200 
201  protected function getObjectRefId() : int
202  {
203  $assignment = array_shift($this->getAssignments());
204  $obj = $assignment->getStudyProgramme();
205  return $obj->getRefId();
206  }
207 }
static _lookupLogin($a_user_id)
lookup login
static _lookupName($a_user_id)
lookup user name
$login
Definition: cron.php:13
This class provides processing control methods.
$data
Definition: storeScorm.php:23
$type
Interface ilAccessHandler.
if($format !==null) $name
Definition: metadata.php:230
static _lookupType($a_id, $a_reference=false)
lookup object type
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const CONTEXT_KEY
Session parameter for the context.
__construct(ilCtrl $ctrl, ilGlobalTemplateInterface $tpl, ilLanguage $lng, ilAccessHandler $access)
static getRedirectTarget($gui, $cmd, array $gui_params=array(), array $mail_params=array(), array $context_params=array())
static _lookupPref($a_usr_id, $a_keyword)
language handling
static setRecipients(array $recipients)
static redirect($a_script)
$_POST["username"]