当前位置: 首页>>代码示例>>PHP>>正文


PHP ilObjUser::getUserIdByLogin方法代码示例

本文整理汇总了PHP中ilObjUser::getUserIdByLogin方法的典型用法代码示例。如果您正苦于以下问题:PHP ilObjUser::getUserIdByLogin方法的具体用法?PHP ilObjUser::getUserIdByLogin怎么用?PHP ilObjUser::getUserIdByLogin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ilObjUser的用法示例。


在下文中一共展示了ilObjUser::getUserIdByLogin方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handleEvent

 /**
  *
  * JKN Patch, if naflogin is triggered do the assignments(only triggered when a new user account is created with naf plugin)
  *
  */
 public function handleEvent($a_component, $a_event, $a_parameter)
 {
     if ($a_component == 'Services/Authentication' && ($a_event == 'nafLogin' || $a_event == 'afterLogin')) {
         /**
          * @var $ilUser ilObjUser
          */
         if (is_null($a_parameter['user_obj']) && $a_parameter['username'] !== 'anonymous') {
             $ilUser = new ilObjUser(ilObjUser::getUserIdByLogin($a_parameter['username']));
         } else {
             $ilUser = $a_parameter['user_obj'];
         }
         if ($ilUser instanceof ilObjUser) {
             foreach (ilUserSetting::where(array('status' => ilUserSetting::STATUS_ACTIVE))->get() as $ilUserSetting) {
                 $ilUserSetting->doAssignements($ilUser);
             }
         }
     }
 }
开发者ID:JKN-INC,项目名称:UserDefaults,代码行数:23,代码来源:class.ilUserDefaultsPlugin.php

示例2: validateInfoSettings

 function validateInfoSettings()
 {
     global $ilErr;
     $error = false;
     if ($this->getContactEmail()) {
         $emails = split(",", $this->getContactEmail());
         foreach ($emails as $email) {
             $email = trim($email);
             if (!(ilUtil::is_email($email) or ilObjUser::getUserIdByLogin($email))) {
                 $ilErr->appendMessage($this->lng->txt('contact_email_not_valid') . " '" . $email . "'");
                 $error = true;
             }
         }
     }
     return !$error;
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:16,代码来源:class.ilObjCourse.php

示例3: addVendorObject

 function addVendorObject()
 {
     global $rbacsystem;
     // MINIMUM ACCESS LEVEL = 'administrate'
     if (!$rbacsystem->checkAccess('write', $this->object->getRefId())) {
         $this->ilErr->raiseError($this->lng->txt('msg_no_perm_write'), $this->ilErr->MESSAGE);
     }
     if (!$_POST['user_login']) {
         ilUtil::sendFailure($this->lng->txt('pays_no_username_given'));
         $this->vendorsObject();
         return true;
     }
     if (!($usr_id = ilObjUser::getUserIdByLogin(ilUtil::stripSlashes($_POST['user_login'])))) {
         ilUtil::sendFailure($this->lng->txt('pays_no_valid_username_given'));
         $this->vendorsObject();
         return true;
     }
     if ($this->vendors_obj->isAssigned($usr_id)) {
         ilUtil::sendFailure($this->lng->txt('pays_user_already_assigned'));
         $this->vendorsObject();
         return true;
     }
     $this->vendors_obj->add($usr_id);
     ilUtil::sendSuccess($this->lng->txt('pays_added_vendor'));
     $this->vendorsObject();
     return true;
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:27,代码来源:class.ilObjPaymentSettingsGUI.php

示例4: checkRecipients

 /**
  * check if recipients are valid
  * @access	public
  * @param    string string with login names or group names (start with #)
  * @return   Returns an empty string, if all recipients are okay.
  *           Returns a string with invalid recipients, if some are not okay.
  */
 function checkRecipients($a_recipients, $a_type)
 {
     global $rbacsystem, $rbacreview;
     $wrong_rcps = '';
     $this->validatePear($a_recipients);
     if (ilMail::_usePearMail() && $this->getUsePear()) {
         $tmp_rcp = $this->explodeRecipients($a_recipients, $this->getUsePear());
         if (is_a($tmp_rcp, 'PEAR_Error')) {
             $colon_pos = strpos($tmp_rcp->message, ':');
             $wrong_rcps = '<br />' . ($colon_pos === false ? $tmp_rcp->message : substr($tmp_rcp->message, $colon_pos + 2));
         } else {
             foreach ($tmp_rcp as $rcp) {
                 // NO ROLE MAIL ADDRESS
                 if (substr($rcp->mailbox, 0, 1) != '#') {
                     // ALL RECIPIENTS MUST EITHER HAVE A VALID LOGIN OR A VALID EMAIL
                     $user_id = $rcp->host == 'ilias' ? ilObjUser::getUserIdByLogin(addslashes($rcp->mailbox)) : false;
                     if ($user_id == false && $rcp->host == 'ilias') {
                         $wrong_rcps .= "<br />" . htmlentities($rcp->mailbox);
                         continue;
                     }
                     // CHECK IF USER CAN RECEIVE MAIL
                     if ($user_id) {
                         if (!$rbacsystem->checkAccessOfUser($user_id, "internal_mail", $this->getMailObjectReferenceId())) {
                             $wrong_rcps .= "<br />" . htmlentities($rcp->mailbox) . " (" . $this->lng->txt("user_cant_receive_mail") . ")";
                             continue;
                         }
                     }
                 } else {
                     if (substr($rcp->mailbox, 0, 7) == '#il_ml_') {
                         if (!$this->mlists->mailingListExists($rcp->mailbox)) {
                             $wrong_rcps .= "<br />" . htmlentities($rcp->mailbox) . " (" . $this->lng->txt("mail_no_valid_mailing_list") . ")";
                         }
                         continue;
                     } else {
                         $role_ids = $rbacreview->searchRolesByMailboxAddressList($rcp->mailbox . '@' . $rcp->host);
                         if (!$this->mail_to_global_roles && is_array($role_ids)) {
                             foreach ($role_ids as $role_id) {
                                 if ($rbacreview->isGlobalRole($role_id)) {
                                     include_once 'Services/Mail/exceptions/class.ilMailException.php';
                                     throw new ilMailException('mail_to_global_roles_not_allowed');
                                 }
                             }
                         }
                         if (count($role_ids) == 0) {
                             $wrong_rcps .= '<br />' . htmlentities($rcp->mailbox) . ' (' . $this->lng->txt('mail_no_recipient_found') . ')';
                             continue;
                         } else {
                             if (count($role_ids) > 1) {
                                 $wrong_rcps .= '<br/>' . htmlentities($rcp->mailbox) . ' (' . sprintf($this->lng->txt('mail_multiple_recipients_found'), implode(',', $role_ids)) . ')';
                             }
                         }
                     }
                 }
             }
         }
     } else {
         $tmp_rcp = $this->explodeRecipients($a_recipients, $this->getUsePear());
         foreach ($tmp_rcp as $rcp) {
             if (empty($rcp)) {
                 continue;
             }
             // NO GROUP
             if (substr($rcp, 0, 1) != '#') {
                 // ALL RECIPIENTS MUST EITHER HAVE A VALID LOGIN OR A VALID EMAIL
                 if (!ilObjUser::getUserIdByLogin(addslashes($rcp)) and !ilUtil::is_email($rcp)) {
                     $wrong_rcps .= "<br />" . htmlentities($rcp);
                     continue;
                 }
                 // CHECK IF USER CAN RECEIVE MAIL
                 if ($user_id = ilObjUser::getUserIdByLogin(addslashes($rcp))) {
                     if (!$rbacsystem->checkAccessOfUser($user_id, "internal_mail", $this->getMailObjectReferenceId())) {
                         $wrong_rcps .= "<br />" . htmlentities($rcp) . " (" . $this->lng->txt("user_cant_receive_mail") . ")";
                         continue;
                     }
                 }
             } else {
                 if (substr($rcp, 0, 7) == '#il_ml_') {
                     if (!$this->mlists->mailingListExists($rcp)) {
                         $wrong_rcps .= "<br />" . htmlentities($rcp) . " (" . $this->lng->txt("mail_no_valid_mailing_list") . ")";
                     }
                     continue;
                 } else {
                     if (ilUtil::groupNameExists(addslashes(substr($rcp, 1)))) {
                         continue;
                     } else {
                         if (!$rbacreview->roleExists(addslashes(substr($rcp, 1)))) {
                             $wrong_rcps .= "<br />" . htmlentities($rcp) . " (" . $this->lng->txt("mail_no_valid_group_role") . ")";
                             continue;
                         } else {
                             if (!$this->mail_to_global_roles) {
                                 $role_id = $rbacreview->roleExists(addslashes(substr($rcp, 1)));
                                 if ((int) $role_id && $rbacreview->isGlobalRole($role_id)) {
                                     include_once 'Services/Mail/exceptions/class.ilMailException.php';
//.........这里部分代码省略.........
开发者ID:khanhnnvn,项目名称:ilias_E-learning,代码行数:101,代码来源:class.ilMail.php

示例5: verifyEndTag

 /**
  * handler for end of element when in verify mode.
  */
 function verifyEndTag($a_xml_parser, $a_name)
 {
     global $lng, $ilAccess, $ilSetting, $ilObjDataCache;
     switch ($a_name) {
         case "Role":
             $this->roles[$this->current_role_id]["name"] = $this->cdata;
             $this->roles[$this->current_role_id]["type"] = $this->current_role_type;
             $this->roles[$this->current_role_id]["action"] = $this->current_role_action;
             break;
         case "User":
             $this->userObj->setFullname();
             if ($this->user_id != -1 && $this->action == "Update") {
                 $user_exists = !is_null(ilObjUser::_lookupLogin($this->user_id));
             } else {
                 $user_exists = ilObjUser::getUserIdByLogin($this->userObj->getLogin()) != 0;
             }
             if (is_null($this->userObj->getLogin())) {
                 $this->logFailure("---", sprintf($lng->txt("usrimport_xml_element_for_action_required"), "Login", "Insert"));
             }
             switch ($this->action) {
                 case "Insert":
                     if ($user_exists and $this->conflict_rule == IL_FAIL_ON_CONFLICT) {
                         $this->logWarning($this->userObj->getLogin(), $lng->txt("usrimport_cant_insert"));
                     }
                     if (is_null($this->userObj->getGender()) && $this->isFieldRequired("gender")) {
                         $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_xml_element_for_action_required"), "Gender", "Insert"));
                     }
                     if (is_null($this->userObj->getFirstname())) {
                         $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_xml_element_for_action_required"), "Firstname", "Insert"));
                     }
                     if (is_null($this->userObj->getLastname())) {
                         $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_xml_element_for_action_required"), "Lastname", "Insert"));
                     }
                     if (count($this->roles) == 0) {
                         $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_xml_element_for_action_required"), "Role", "Insert"));
                     } else {
                         $has_global_role = false;
                         foreach ($this->roles as $role) {
                             if ($role['type'] == 'Global') {
                                 $has_global_role = true;
                                 break;
                             }
                         }
                         if (!$has_global_role) {
                             $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_global_role_for_action_required"), "Insert"));
                         }
                     }
                     break;
                 case "Update":
                     if (!$user_exists) {
                         $this->logWarning($this->userObj->getLogin(), $lng->txt("usrimport_cant_update"));
                     } elseif ($this->user_id != -1 && !is_null($this->userObj->getLogin())) {
                         $someonesId = ilObjUser::_lookupId($this->userObj->getLogin());
                         if (is_numeric($someonesId) && $someonesId != $this->user_id) {
                             $this->logFailure($this->userObj->getLogin(), $lng->txt("usrimport_login_is_not_unique"));
                         }
                     }
                     break;
                 case "Delete":
                     if (!$user_exists) {
                         $this->logWarning($this->userObj->getLogin(), $lng->txt("usrimport_cant_delete"));
                     }
                     break;
             }
             // init role array for next user
             $this->roles = array();
             break;
         case "Login":
             if (array_key_exists($this->cdata, $this->logins)) {
                 $this->logWarning($this->cdata, $lng->txt("usrimport_login_is_not_unique"));
             } else {
                 $this->logins[$this->cdata] = $this->cdata;
             }
             $this->userObj->setLogin($this->cdata);
             break;
         case "Password":
             switch ($this->currPasswordType) {
                 case "ILIAS2":
                     $this->userObj->setPasswd($this->cdata, IL_PASSWD_CRYPT);
                     break;
                 case "ILIAS3":
                     $this->userObj->setPasswd($this->cdata, IL_PASSWD_MD5);
                     break;
                 case "PLAIN":
                     $this->userObj->setPasswd($this->cdata, IL_PASSWD_PLAIN);
                     $this->acc_mail->setUserPassword($this->currPassword);
                     break;
                 default:
                     $this->logFailure($this->userObj->getLogin(), sprintf($lng->txt("usrimport_xml_attribute_value_illegal"), "Type", "Password", $this->currPasswordType));
                     break;
             }
             break;
         case "Firstname":
             $this->userObj->setFirstname($this->cdata);
             break;
         case "Lastname":
             $this->userObj->setLastname($this->cdata);
//.........这里部分代码省略.........
开发者ID:khanhnnvn,项目名称:ilias_E-learning,代码行数:101,代码来源:class.ilUserImportParser.php

示例6: addUser

 function addUser()
 {
     if (!$_POST['trustee_login']) {
         ilUtil::sendInfo($this->lng->txt('paya_enter_login'));
         $this->showTrustees();
         return false;
     }
     if (!($user_id = ilObjUser::getUserIdByLogin($_POST['trustee_login']))) {
         ilUtil::sendInfo($this->lng->txt('paya_no_valid_login'));
         $this->showTrustees();
         return false;
     }
     if ($this->trustee_obj->isTrustee($user_id)) {
         ilUtil::sendInfo($this->lng->txt('paya_user_already_assigned'));
         $this->showTrustees();
         return false;
     }
     if ($user_id == $this->user_obj->getId()) {
         ilUtil::sendInfo($this->lng->txt('paya_not_assign_yourself'));
         $this->showTrustees();
         return false;
     }
     // checks passed => add trustee
     $this->trustee_obj->setTrusteeId($user_id);
     $this->trustee_obj->toggleObjectPermission(true);
     $this->trustee_obj->toggleStatisticPermission(true);
     $this->trustee_obj->toggleCouponsPermission(true);
     $this->trustee_obj->add();
     ilUtil::sendInfo($this->lng->txt('paya_added_trustee'));
     $this->showTrustees();
     return true;
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:32,代码来源:class.ilPaymentTrusteeGUI.php

示例7: submitAssistanceForm

 /** Reads the submitted data from the password assistance form.
  * 
  * The following form fields are read as HTTP POST parameters:
  * username
  * email
  *
  * If the submitted username and email address matches an entry in the user data 
  * table, then ILIAS creates a password assistance session for the user, and
  * sends a password assistance mail to the email address.
  * For details about the creation of the session and the e-mail see function
  * sendPasswordAssistanceMail().
  */
 function submitAssistanceForm()
 {
     global $tpl, $ilias, $lng, $rbacadmin, $rbacreview;
     require_once './Services/User/classes/class.ilObjUser.php';
     require_once "./Services/Utilities/classes/class.ilUtil.php";
     // Retrieve form data
     $username = ilUtil::stripSlashes($_POST["username"]);
     $email = ilUtil::stripSlashes($_POST["email"]);
     // Retrieve a user object with matching user name and email address.
     $userObj = null;
     $userid = ilObjUser::getUserIdByLogin($username);
     $txt_key = "pwassist_invalid_username_or_email";
     if ($userid != 0) {
         $userObj = new ilObjUser($userid);
         if (strcasecmp($userObj->getEmail(), $email) != 0) {
             $userObj = null;
         } elseif (!strlen($email)) {
             $userObj = null;
             $txt_key = 'pwassist_no_email_found';
         } else {
             if ($userObj->getAuthMode(true) != AUTH_LOCAL || $userObj->getAuthMode(true) == AUTH_DEFAULT && AUTH_DEFAULT != AUTH_LOCAL) {
                 $userObj = null;
                 $txt_key = "pwassist_invalid_auth_mode";
             }
         }
     }
     // No matching user object found?
     // Show the password assistance form again, and display an error message.
     if ($userObj == null) {
         $this->showAssistanceForm($lng->txt($txt_key), $username, $email);
     } else {
         // FIXME: Extend this if-statement to check whether the user
         // has the permission to use the password assistance function.
         // The anonymous user and users who are system administrators are
         // not allowed to use this feature
         if ($rbacreview->isAssigned($userObj->getID, ANONYMOUS_ROLE_ID) || $rbacreview->isAssigned($userObj->getID, SYSTEM_ROLE_ID)) {
             $this->showAssistanceForm($lng->txt("pwassist_not_permitted"), $username, $email);
         } else {
             $this->sendPasswordAssistanceMail($userObj);
             $this->showMessageForm(null, sprintf($lng->txt("pwassist_mail_sent"), $email));
         }
     }
 }
开发者ID:khanhnnvn,项目名称:ilias_E-learning,代码行数:55,代码来源:class.ilPasswordAssistanceGUI.php

示例8: generateLogin

 /**
  * Automatically generates the username/screenname of a Shibboleth user or returns
  * the user's already existing username
  *
  * @access private
  * @return String Generated username
  */
 function generateLogin()
 {
     global $ilias, $ilDB;
     $shibID = $_SERVER[$ilias->getSetting('shib_login')];
     $lastname = $this->getFirstString($_SERVER[$ilias->getSetting('shib_lastname')]);
     $firstname = $this->getFirstString($_SERVER[$ilias->getSetting('shib_firstname')]);
     if (trim($shibID) == "") {
         return;
     }
     //***********************************************//
     // For backwards compatibility with previous versions
     // We use the passwd field as mapping attribute for Shibboleth users
     // because they don't need a password
     $ilias->db->query("UPDATE usr_data SET auth_mode='shibboleth', passwd=" . $ilDB->quote(md5(end(ilUtil::generatePasswords(1)))) . ", ext_account=" . $ilDB->quote($shibID) . " WHERE passwd=" . $ilDB->quote($shibID));
     //***********************************************//
     // Let's see if user already is registered
     $local_user = ilObjUser::_checkExternalAuthAccount("shibboleth", $shibID);
     if ($local_user) {
         return $local_user;
     }
     // Let's see if user already is registered but authenticates by ldap
     $local_user = ilObjUser::_checkExternalAuthAccount("ldap", $shibID);
     if ($local_user) {
         return $local_user;
     }
     // User doesn't seem to exist yet
     // Generate new username
     // This can be overruled by the data conversion API but you have
     // to do it yourself in that case
     // Generate the username out of the first character of firstname and the
     // first word in lastname (adding the second one if the login is too short,
     // avoiding meaningless last names like 'von' or 'd' and eliminating
     // non-ASCII-characters, spaces, dashes etc.
     $ln_arr = preg_split("/[ '-;]/", $lastname);
     $login = substr($this->toAscii($firstname), 0, 1) . "." . $this->toAscii($ln_arr[0]);
     if (strlen($login) < 6) {
         $login .= $this->toAscii($ln_arr[1]);
     }
     $prefix = strtolower($login);
     // If the user name didn't contain any ASCII characters, assign the
     // name 'shibboleth' followed by a number, starting with 1.
     if (strlen($prefix) == 0) {
         $prefix = 'shibboleth';
         $number = 1;
     } else {
         // Try if the login name is not already taken
         if (!ilObjUser::getUserIdByLogin($prefix)) {
             return $prefix;
         }
         // If the login name is in use, append a number, starting with 2.
         $number = 2;
     }
     // Append a number, if the username is already taken
     while (ilObjUser::getUserIdByLogin($prefix . $number)) {
         $number++;
     }
     return $prefix . $number;
 }
开发者ID:Walid-Synakene,项目名称:ilias,代码行数:65,代码来源:class.ilShibboleth.php

示例9: lookupUser

 function lookupUser($sid, $user_name)
 {
     $this->initAuth($sid);
     $this->initIlias();
     if (!$this->__checkSession($sid)) {
         return $this->__raiseError($this->__getMessage(), $this->__getMessageCode());
     }
     if (!strlen($user_name)) {
         return $this->__raiseError('No username given. Aborting', 'Client');
     }
     global $rbacsystem, $ilUser;
     if (strcasecmp($ilUser->getLogin(), $user_name) != 0 && !$rbacsystem->checkAccess('read', USER_FOLDER_ID)) {
         return $this->__raiseError('Check access failed. ' . USER_FOLDER_ID, 'Server');
     }
     $user_id = ilObjUser::getUserIdByLogin($user_name);
     return $user_id ? $user_id : "0";
 }
开发者ID:Walid-Synakene,项目名称:ilias,代码行数:17,代码来源:class.ilSoapUserAdministration.php

示例10: submitAssistanceForm

 /**
  * Reads the submitted data from the password assistance form.
  * The following form fields are read as HTTP POST parameters:
  * username
  * email
  * If the submitted username and email address matches an entry in the user data
  * table, then ILIAS creates a password assistance session for the user, and
  * sends a password assistance mail to the email address.
  * For details about the creation of the session and the e-mail see function
  * sendPasswordAssistanceMail().
  */
 public function submitAssistanceForm()
 {
     $form = $this->getAssistanceForm();
     if (!$form->checkInput()) {
         $form->setValuesByPost();
         $this->showAssistanceForm($form);
         return;
     }
     $username = $form->getInput('username');
     $email = $form->getInput('email');
     $userObj = null;
     $userid = ilObjUser::getUserIdByLogin($username);
     $txt_key = 'pwassist_invalid_username_or_email';
     if ($userid != 0) {
         $userObj = new ilObjUser($userid);
         if (strcasecmp($userObj->getEmail(), $email) != 0) {
             $userObj = null;
         } elseif (!strlen($email)) {
             $userObj = null;
             $txt_key = 'pwassist_no_email_found';
         } else {
             if ($userObj->getAuthMode(true) != AUTH_LOCAL || $userObj->getAuthMode(true) == AUTH_DEFAULT && AUTH_DEFAULT != AUTH_LOCAL) {
                 $userObj = null;
                 $txt_key = 'pwassist_invalid_auth_mode';
             }
         }
     }
     // No matching user object found?
     // Show the password assistance form again, and display an error message.
     if ($userObj == null) {
         ilUtil::sendFailure(str_replace("\\n", '', $this->lng->txt($txt_key)));
         $form->setValuesByPost();
         $this->showAssistanceForm($form);
     } else {
         // Matching user object found?
         // Check if the user is permitted to use the password assistance function,
         // and then send a password assistance mail to the email address.
         // FIXME: Extend this if-statement to check whether the user
         // has the permission to use the password assistance function.
         // The anonymous user and users who are system administrators are
         // not allowed to use this feature
         if ($this->rbacreview->isAssigned($userObj->getId, ANONYMOUS_ROLE_ID) || $this->rbacreview->isAssigned($userObj->getId, SYSTEM_ROLE_ID)) {
             ilUtil::sendFailure(str_replace("\\n", '', $this->lng->txt('pwassist_not_permitted')));
             $form->setValuesByPost();
             $this->showAssistanceForm($form);
         } else {
             $this->sendPasswordAssistanceMail($userObj);
             $this->showMessageForm(sprintf($this->lng->txt('pwassist_mail_sent'), $email));
         }
     }
 }
开发者ID:Walid-Synakene,项目名称:ilias,代码行数:62,代码来源:class.ilPasswordAssistanceGUI.php


注:本文中的ilObjUser::getUserIdByLogin方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。