ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ilECSUser Class Reference

Stores relevant user data. More...

+ Collaboration diagram for ilECSUser:

Public Member Functions

 __construct ($a_data)
 Constructor. More...
 
 getLogin ()
 get login More...
 
 getFirstname ()
 get firstname More...
 
 getLastname ()
 getLastname More...
 
 getEmail ()
 get email More...
 
 getInstitution ()
 get institution More...
 
 getImportId ()
 get Email More...
 
 loadFromObject ()
 load from object More...
 
 loadFromJSON ()
 load from json More...
 
 loadFromGET ()
 load user data from GET parameters More...
 
 toJSON ()
 public More...
 
 toGET ()
 get GET parameter string More...
 
 toREALM ()
 Concatenate all attributes to one string. More...
 

Data Fields

 $login
 
 $email
 
 $firstname
 
 $lastname
 
 $institution
 
 $uid_hash
 

Protected Attributes

 $source
 

Detailed Description

Stores relevant user data.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 35 of file class.ilECSUser.php.

Constructor & Destructor Documentation

◆ __construct()

ilECSUser::__construct (   $a_data)

Constructor.

Parameters
mixedilObjUser or encoded json string public

Definition at line 52 of file class.ilECSUser.php.

References loadFromGET(), loadFromJSON(), and loadFromObject().

53  {
54  $this->source = $a_data;
55  if (is_object($a_data)) {
56  $this->loadFromObject();
57  } elseif (is_array($a_data)) {
58  $this->loadFromGET();
59  } else {
60  $this->loadFromJSON();
61  }
62  }
loadFromJSON()
load from json
loadFromObject()
load from object
loadFromGET()
load user data from GET parameters
+ Here is the call graph for this function:

Member Function Documentation

◆ getEmail()

ilECSUser::getEmail ( )

get email

public

Definition at line 101 of file class.ilECSUser.php.

References $email.

Referenced by ilAuthProviderECS\createUser(), and ilAuthProviderECS\updateUser().

102  {
103  return $this->email;
104  }
+ Here is the caller graph for this function:

◆ getFirstname()

ilECSUser::getFirstname ( )

get firstname

public

Definition at line 81 of file class.ilECSUser.php.

References $firstname.

Referenced by ilAuthProviderECS\createUser(), and ilAuthProviderECS\updateUser().

82  {
83  return $this->firstname;
84  }
+ Here is the caller graph for this function:

◆ getImportId()

ilECSUser::getImportId ( )

get Email

public

Definition at line 122 of file class.ilECSUser.php.

References $uid_hash.

Referenced by ilAuthProviderECS\createUser(), and ilAuthProviderECS\updateUser().

123  {
124  return $this->uid_hash;
125  }
+ Here is the caller graph for this function:

◆ getInstitution()

ilECSUser::getInstitution ( )

get institution

public

Definition at line 111 of file class.ilECSUser.php.

References $institution.

Referenced by ilAuthProviderECS\createUser(), and ilAuthProviderECS\updateUser().

112  {
113  return $this->institution;
114  }
+ Here is the caller graph for this function:

◆ getLastname()

ilECSUser::getLastname ( )

getLastname

public

Definition at line 91 of file class.ilECSUser.php.

References $lastname.

Referenced by ilAuthProviderECS\createUser(), and ilAuthProviderECS\updateUser().

92  {
93  return $this->lastname;
94  }
+ Here is the caller graph for this function:

◆ getLogin()

ilECSUser::getLogin ( )

get login

public

Definition at line 70 of file class.ilECSUser.php.

References $login.

Referenced by ilAuthProviderECS\createUser().

71  {
72  return $this->login;
73  }
+ Here is the caller graph for this function:

◆ loadFromGET()

ilECSUser::loadFromGET ( )

load user data from GET parameters

public

Definition at line 173 of file class.ilECSUser.php.

References $_GET, login(), and ilUtil\stripSlashes().

Referenced by __construct().

174  {
175  $this->login = ilUtil::stripSlashes(urldecode($_GET['ecs_login']));
176  $this->firstname = ilUtil::stripSlashes(urldecode($_GET['ecs_firstname']));
177  $this->lastname = ilUtil::stripSlashes(urldecode($_GET['ecs_lastname']));
178  $this->email = ilUtil::stripSlashes(urldecode($_GET['ecs_email']));
179  $this->institution = ilUtil::stripSlashes(urldecode($_GET['ecs_institution']));
180 
181  if ($_GET['ecs_uid_hash']) {
182  $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid_hash']));
183  } elseif ($_GET['ecs_uid']) {
184  $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid']));
185  }
186  }
$_GET["client_id"]
login()
Definition: login.php:2
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ loadFromJSON()

ilECSUser::loadFromJSON ( )

load from json

public

Definition at line 154 of file class.ilECSUser.php.

References login().

Referenced by __construct().

155  {
156  $this->source = json_decode(urldecode($this->source));
157 
158  $this->login = $this->source->login();
159  $this->firstname = $this->source->firstname();
160  $this->lastname = $this->source->lastname();
161  $this->email = $this->source->email();
162  $this->institution = $this->source->institution();
163 
164  $this->uid_hash = $this->source->uid_hash;
165  }
login()
Definition: login.php:2
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ loadFromObject()

ilECSUser::loadFromObject ( )

load from object

public

Definition at line 133 of file class.ilECSUser.php.

References $DIC, $ilSetting, and login().

Referenced by __construct().

134  {
135  global $DIC;
136 
137  $ilSetting = $DIC['ilSetting'];
138 
139  $this->login = $this->source->getLogin();
140  $this->firstname = $this->source->getFirstname();
141  $this->lastname = $this->source->getLastname();
142  $this->email = $this->source->getEmail();
143  $this->institution = $this->source->getInstitution();
144 
145  $this->uid_hash = 'il_' . $ilSetting->get('inst_id', 0) . '_usr_' . $this->source->getId();
146  }
login()
Definition: login.php:2
global $ilSetting
Definition: privfeed.php:17
$DIC
Definition: xapitoken.php:46
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ toGET()

ilECSUser::toGET ( )

get GET parameter string

public

Definition at line 206 of file class.ilECSUser.php.

References login().

207  {
208  return '&ecs_login=' . urlencode((string) $this->login) .
209  '&ecs_firstname=' . urlencode((string) $this->firstname) .
210  '&ecs_lastname=' . urlencode((string) $this->lastname) .
211  '&ecs_email=' . urlencode((string) $this->email) .
212  '&ecs_institution=' . urlencode((string) $this->institution) .
213  '&ecs_uid_hash=' . urlencode((string) $this->uid_hash);
214  '&ecs_uid=' . urlencode((string) $this->uid_hash);
215  }
login()
Definition: login.php:2
+ Here is the call graph for this function:

◆ toJSON()

ilECSUser::toJSON ( )

public

Parameters

Definition at line 195 of file class.ilECSUser.php.

196  {
197  return urlencode(json_encode($this));
198  }

◆ toREALM()

ilECSUser::toREALM ( )

Concatenate all attributes to one string.

Returns
string

Definition at line 221 of file class.ilECSUser.php.

References login().

222  {
223  return
224  (string) $this->login . '' .
225  (string) $this->firstname . '' .
226  (string) $this->lastname . '' .
227  (string) $this->email . '' .
228  (string) $this->institution . '' .
229  (string) $this->uid_hash;
230  }
login()
Definition: login.php:2
+ Here is the call graph for this function:

Field Documentation

◆ $email

ilECSUser::$email

Definition at line 40 of file class.ilECSUser.php.

Referenced by getEmail().

◆ $firstname

ilECSUser::$firstname

Definition at line 41 of file class.ilECSUser.php.

Referenced by getFirstname().

◆ $institution

ilECSUser::$institution

Definition at line 43 of file class.ilECSUser.php.

Referenced by getInstitution().

◆ $lastname

ilECSUser::$lastname

Definition at line 42 of file class.ilECSUser.php.

Referenced by getLastname().

◆ $login

ilECSUser::$login

Definition at line 39 of file class.ilECSUser.php.

Referenced by getLogin().

◆ $source

ilECSUser::$source
protected

Definition at line 37 of file class.ilECSUser.php.

◆ $uid_hash

ilECSUser::$uid_hash

Definition at line 44 of file class.ilECSUser.php.

Referenced by getImportId().


The documentation for this class was generated from the following file: