122 $this->firstname =
'';
123 $this->lastname =
'';
124 $this->fullname =
'';
125 $this->sourcedId = null;
126 $this->username = null;
129 $this->roles = array();
130 $this->groups = array();
149 public function setNames(
string $firstname,
string $lastname,
string $fullname)
151 $names = array(0 =>
'', 1 =>
'');
152 if (!empty($fullname)) {
153 $this->fullname = trim($fullname);
154 $names = preg_split(
"/[\s]+/", $this->fullname, 2);
156 if (!empty($firstname)) {
157 $this->firstname = trim($firstname);
159 } elseif (!empty($names[0])) {
160 $this->firstname = $names[0];
161 } elseif (!static::$allowEmptyName) {
162 $this->firstname =
'User';
164 $this->firstname =
'';
166 if (!empty($lastname)) {
167 $this->lastname = trim($lastname);
169 } elseif (!empty($names[1])) {
170 $this->lastname = $names[1];
171 } elseif (!static::$allowEmptyName) {
174 $this->lastname =
'';
176 if (empty($this->fullname) && (!empty($this->firstname) || !empty($this->lastname))) {
177 $this->fullname = trim(
"{$this->firstname} {$this->lastname}");
186 public function setEmail(
string $email,
string $defaultEmail = null)
188 if (!empty($email)) {
190 } elseif (!empty($defaultEmail)) {
191 $this->email = $defaultEmail;
192 if (substr($this->email, 0, 1) ===
'@') {
193 if (!empty($this->username)) {
194 $this->email =
"{$this->username}{$this->email}";
196 $this->email =
"{$this->ltiUserId}{$this->email}";
211 return $this->
hasRole(
'Administrator') || $this->
hasRole(
'urn:lti:sysrole:ims/lis/SysAdmin') ||
212 $this->
hasRole(
'urn:lti:sysrole:ims/lis/Administrator') || $this->
hasRole(
'urn:lti:instrole:ims/lis/Administrator');
222 return ($this->
hasRole(
'Instructor') || $this->
hasRole(
'ContentDeveloper') || $this->
hasRole(
'TeachingAssistant'));
232 return $this->
hasRole(
'Learner');
246 $ok = in_array($role, $this->roles);
247 if (!$ok && (strpos($role,
'urn:') !== 0) && (strpos($role,
'http://') !== 0) && (strpos($role,
'https://') !== 0)) {
248 $role =
"urn:lti:role:ims/lis/{$role}";
249 $ok = in_array($role, $this->roles);
254 if (strpos($role,
'urn:') === 0) {
255 if (strpos($role,
'urn:lti:role:ims/lis/') === 0) {
256 $role2 =
'http://purl.imsglobal.org/vocab/lis/v2/membership#' . substr($role, 21);
257 } elseif (strpos($role,
'urn:lti:instrole:ims/lis/') === 0) {
258 $role2 =
'http://purl.imsglobal.org/vocab/lis/v2/person#' . substr($role, 25);
259 $role3 =
'http://purl.imsglobal.org/vocab/lis/v2/institution/person#' . substr($role, 25);
260 } elseif (strpos($role,
'urn:lti:sysrole:ims/lis/') === 0) {
261 $role2 =
'http://purl.imsglobal.org/vocab/lis/v2/person#' . substr($role, 24);
262 $role3 =
'http://purl.imsglobal.org/vocab/lis/v2/system/person#' . substr($role, 24);
264 } elseif (strpos($role,
'http://purl.imsglobal.org/vocab/lis/v2/') === 0) {
265 if (strpos($role,
'http://purl.imsglobal.org/vocab/lis/v2/membership#') === 0) {
266 $role2 =
'urn:lti:role:ims/lis/' . substr($role, 50);
267 } elseif (strpos($role,
'http://purl.imsglobal.org/vocab/lis/v2/person#') === 0) {
268 $role2 =
'urn:lti:instrole:ims/lis/' . substr($role, 46);
269 $role3 =
'urn:lti:sysrole:ims/lis/' . substr($role, 46);
270 } elseif (strpos($role,
'http://purl.imsglobal.org/vocab/lis/v2/institution/person#') === 0) {
271 $role2 =
'urn:lti:instrole:ims/lis/' . substr($role, 58);
272 $role3 =
'http://purl.imsglobal.org/vocab/lis/v2/person#' . substr($role, 58);
273 } elseif (strpos($role,
'http://purl.imsglobal.org/vocab/lis/v2/system/person#') === 0) {
274 $role2 =
'urn:lti:sysrole:ims/lis/' . substr($role, 53);
275 $role3 =
'http://purl.imsglobal.org/vocab/lis/v2/person#' . substr($role, 53);
278 if (!empty($role2)) {
279 $ok = in_array($role2, $this->roles);
280 if (!$ok && !empty($role3)) {
281 $ok = in_array($role3, $this->roles);