ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAuthContainerECS.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once('Auth/Container.php');
25 
35 {
36  protected $mid = null;
37  protected $abreviation = null;
38 
39  protected $currentServer = null;
40  protected $servers = null;
41 
42  protected $log;
43 
51  public function __construct($a_params = array())
52  {
53  parent::__construct($a_params);
54 
55  $this->initECSServices();
56 
57  $this->log = $GLOBALS['ilLog'];
58  }
59 
67  public function getAbreviation()
68  {
69  return $this->abreviation;
70  }
71 
77  public function getMID()
78  {
79  return $this->mid;
80  }
81 
86  public function setCurrentServer(ilECSSetting $server = null)
87  {
88  $this->currentServer = $server;
89  }
90 
95  public function getCurrentServer()
96  {
97  return $this->currentServer;
98  }
99 
104  public function getServerSettings()
105  {
106  return $this->servers;
107  }
108 
114  public function fetchData($a_username,$a_pass)
115  {
116  global $ilLog;
117 
118  $ilLog->write(__METHOD__.': Starting ECS authentication.');
119 
120  if(!$this->getServerSettings()->activeServerExists())
121  {
122  $GLOBALS['ilLog']->write(__METHOD__.': no active ecs server found. Aborting');
123  return false;
124  }
125 
126  // Iterate through all active ecs instances
127  include_once './Services/WebServices/ECS/classes/class.ilECSServerSettings.php';
128  foreach($this->getServerSettings()->getServers() as $server)
129  {
130  $this->setCurrentServer($server);
131  if($this->validateHash())
132  {
133  return true;
134  }
135  }
136  $GLOBALS['ilLog']->write(__METHOD__.': Could not validate ecs hash for any server');
137  return false;
138 
139  }
140 
141 
150  public function validateHash()
151  {
152  global $ilLog;
153 
154  // fetch hash
155  if(isset($_GET['ecs_hash']) and strlen($_GET['ecs_hash']))
156  {
157  $hash = $_GET['ecs_hash'];
158  }
159  if(isset($_GET['ecs_hash_url']))
160  {
161  $hashurl = urldecode($_GET['ecs_hash_url']);
162  $hash = basename(parse_url($hashurl,PHP_URL_PATH));
163  //$hash = urldecode($_GET['ecs_hash_url']);
164  }
165 
166  $GLOBALS['ilLog']->write(__METHOD__.': Using ecs hash '. $hash);
167 
168  // Check if hash is valid ...
169  try
170  {
171  include_once('./Services/WebServices/ECS/classes/class.ilECSConnector.php');
172  $connector = new ilECSConnector($this->getCurrentServer());
173  $res = $connector->getAuth($hash);
174  $auths = $res->getResult();
175  $this->abreviation = $auths->abbr;
176  $ilLog->write(__METHOD__.': Got abr: '.$this->abreviation);
177  return true;
178  }
179  catch(ilECSConnectorException $e)
180  {
181  $ilLog->write(__METHOD__.': Authentication failed with message: '.$e->getMessage());
182  return false;
183  }
184  }
185 
191  public function loginObserver($a_username, $a_auth)
192  {
193  include_once('./Services/WebServices/ECS/classes/class.ilECSUser.php');
194 
195  $user = new ilECSUser($_GET);
196 
197  if(!$usr_id = ilObject::_lookupObjIdByImportId($user->getImportId()))
198  {
199  $username = $this->createUser($user);
200  }
201  else
202  {
203  $username = $this->updateUser($user,$usr_id);
204  }
205 
206  // set user imported
207  include_once './Services/WebServices/ECS/classes/class.ilECSImport.php';
208  $import = new ilECSImport($this->getCurrentServer()->getServerId(), $usr_id);
209  $import->save();
210 
211  $a_auth->setAuth($username);
212  $this->log->write(__METHOD__.': Login succesesful');
213  return true;
214  }
215 
221  public function failedLoginObserver()
222  {
223  $this->log->write(__METHOD__.': Login failed');
224  return false;
225  }
226 
227 
228 
234  protected function createUser(ilECSUser $user)
235  {
236  global $ilClientIniFile, $ilSetting, $rbacadmin, $ilLog;
237 
238  $userObj = new ilObjUser();
239 
240  include_once('./Services/Authentication/classes/class.ilAuthUtils.php');
241  $local_user = ilAuthUtils::_generateLogin($this->getAbreviation() . '_' . $user->getLogin());
242 
243  $newUser["login"] = $local_user;
244  $newUser["firstname"] = $user->getFirstname();
245  $newUser["lastname"] = $user->getLastname();
246  $newUser['email'] = $user->getEmail();
247  $newUser['institution'] = $user->getInstitution();
248 
249  // set "plain md5" password (= no valid password)
250  $newUser["passwd"] = "";
251  $newUser["passwd_type"] = IL_PASSWD_MD5;
252 
253  $newUser["auth_mode"] = "ecs";
254  $newUser["profile_incomplete"] = 0;
255 
256  // system data
257  $userObj->assignData($newUser);
258  $userObj->setTitle($userObj->getFullname());
259  $userObj->setDescription($userObj->getEmail());
260 
261  // set user language to system language
262  $userObj->setLanguage($ilSetting->get("language"));
263 
264  // Time limit
265  $userObj->setTimeLimitOwner(7);
266  $userObj->setTimeLimitUnlimited(0);
267  $userObj->setTimeLimitFrom(time() - 5);
268  $userObj->setTimeLimitUntil(time() + $ilClientIniFile->readVariable("session", "expire"));
269 
270  #$now = new ilDateTime(time(), IL_CAL_UNIX);
271  #$userObj->setAgreeDate($now->get(IL_CAL_DATETIME));
272 
273  // Create user in DB
274  $userObj->setOwner(6);
275  $userObj->create();
276  $userObj->setActive(1);
277  $userObj->updateOwner();
278  $userObj->saveAsNew();
279  $userObj->writePrefs();
280 
281  if($global_role = $this->getCurrentServer()->getGlobalRole())
282  {
283  $rbacadmin->assignUser($this->getCurrentServer()->getGlobalRole(), $userObj->getId(), true);
284  }
285  ilObject::_writeImportId($userObj->getId(), $user->getImportId());
286 
287  $ilLog->write(__METHOD__ . ': Created new remote user with usr_id: ' . $user->getImportId());
288 
289  // Send Mail
290  #$this->sendNotification($userObj);
291  $this->resetMailOptions($userObj->getId());
292 
293  return $userObj->getLogin();
294  }
295 
301  protected function updateUser(ilECSUser $user,$a_local_user_id)
302  {
303  global $ilClientIniFile,$ilLog,$rbacadmin;
304 
305  $user_obj = new ilObjUser($a_local_user_id);
306  $user_obj->setFirstname($user->getFirstname());
307  $user_obj->setLastname($user->getLastname());
308  $user_obj->setEmail($user->getEmail());
309  $user_obj->setInstitution($user->getInstitution());
310  $user_obj->setActive(true);
311 
312  $until = $user_obj->getTimeLimitUntil();
313 
314  if($until < (time() + $ilClientIniFile->readVariable('session','expire')))
315  {
316  $user_obj->setTimeLimitFrom(time() - 60);
317  $user_obj->setTimeLimitUntil(time() + $ilClientIniFile->readVariable("session","expire"));
318  }
319  $user_obj->update();
320  $user_obj->refreshLogin();
321 
322  if($global_role = $this->getCurrentServer()->getGlobalRole())
323  {
324  $rbacadmin->assignUser(
325  $this->getCurrentServer()->getGlobalRole(),
326  $user_obj->getId(),
327  true
328  );
329  }
330 
331  $this->resetMailOptions($a_local_user_id);
332 
333  $ilLog->write(__METHOD__.': Finished update of remote user with usr_id: '.$user->getImportId());
334  return $user_obj->getLogin();
335  }
336 
341  protected function resetMailOptions($a_usr_id)
342  {
343  include_once './Services/Mail/classes/class.ilMailOptions.php';
344  $options = new ilMailOptions($a_usr_id);
345  $options->updateOptions(
346  $options->getSignature(),
347  $options->getLinebreak(),
349  $options->getCronjobNotification()
350  );
351  }
352 
353 
360  private function initECSServices()
361  {
362  include_once './Services/WebServices/ECS/classes/class.ilECSServerSettings.php';
363  $this->servers = ilECSServerSettings::getInstance();
364  }
365 
373  private function sendNotification($user_obj)
374  {
375  if(!count($this->getCurrentServer()->getUserRecipients()))
376  {
377  return true;
378  }
379 
380  include_once('./Services/Language/classes/class.ilLanguageFactory.php');
381  include_once './Services/Language/classes/class.ilLanguage.php';
383  $GLOBALS['lng'] = $lang;
384  $GLOBALS['ilUser'] = $user_obj;
385  $lang->loadLanguageModule('ecs');
386 
387  include_once('./Services/Mail/classes/class.ilMail.php');
388  $mail = new ilMail(6);
389  $mail->enableSoap(false);
390  $subject = $lang->txt('ecs_new_user_subject');
391 
392  // build body
393  $body = $lang->txt('ecs_new_user_body')."\n\n";
394  $body .= $lang->txt('ecs_new_user_profile')."\n\n";
395  $body .= $user_obj->getProfileAsString($lang)."\n\n";
397 
398  $mail->sendMail(
399  $this->getCurrentServer()->getUserRecipientsAsString(),
400  "",
401  "",
402  $subject,
403  $body,
404  array(),
405  array("normal")
406  );
407  }
408 }
409 ?>
updateUser(ilECSUser $user, $a_local_user_id)
update existing user
Class UserMail this class handles user mails.
getFirstname()
get firstname
getAbreviation()
get abbreviation
$_GET["client_id"]
static getInstance()
Get singleton instance.
const IL_MAIL_LOCAL
getServerSettings()
Get server settings.
createUser(ilECSUser $user)
create new user
sendNotification($user_obj)
Send notification.
static _getLanguage($a_lang_key='')
Get langauge object.
_writeImportId($a_obj_id, $a_import_id)
write import id to db (static)
if(!is_array($argv)) $options
$GLOBALS['ct_recipient']
getLastname()
getLastname
_generateLogin($a_login)
generate free login by starting with a default string and adding postfix numbers
Class Mail this class handles base functions for mail handling.
failedLoginObserver()
Called from base class after failed login.
getCurrentServer()
Get current server.
Storage of ECS imported objects.
getEmail()
get email
$server
getLogin()
get login
resetMailOptions($a_usr_id)
Reset mail options to "local only".
const IL_PASSWD_MD5
getImportId()
get Email
global $ilSetting
Definition: privfeed.php:40
loginObserver($a_username, $a_auth)
Called from base class after successful login.
fetchData($a_username, $a_pass)
Check for valid ecs_hash.
log($message, $level=AUTH_LOG_DEBUG)
Log a message to the Auth log.
Definition: Container.php:246
setCurrentServer(ilECSSetting $server=null)
Set current server.
initECSServices()
Init ECS Services private.
__construct($a_params=array())
Constructor.
getInstitution()
get institution
Custom PEAR Auth Container for ECS auth checks.
static _getAutoGeneratedMessageString($lang=null)
get auto generated info string
Stores relevant user data.
static _lookupObjIdByImportId($a_import_id)
validateHash()
Validate ECS hash.