當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserDB::getAuthUserByEmail方法代碼示例

本文整理匯總了PHP中UserDB::getAuthUserByEmail方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserDB::getAuthUserByEmail方法的具體用法?PHP UserDB::getAuthUserByEmail怎麽用?PHP UserDB::getAuthUserByEmail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UserDB的用法示例。


在下文中一共展示了UserDB::getAuthUserByEmail方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: post

 public static function post()
 {
     $errMsgs = LoginViewValidator::validate($_POST);
     if (empty($errMsgs)) {
         try {
             //Get the user's password salt and calculate password hash
             $passwordSalt = UserDB::getPasswordSaltByEmail($_POST['email']);
             $passwordHash = hash_pbkdf2("sha256", $_POST['password'], $passwordSalt, SecurityConfig::N_PASSWORD_HASH_ITERATIONS);
             //Get user from database. This gets the user only if he's a member this year or if it's the admin account.
             $user = UserDB::getAuthUserByEmail($_POST['email']);
             if ($user->passwordHash == $passwordHash) {
                 //Put the user in session
                 $_SESSION['Stippers']['user'] = $user;
                 /*
                 At this point we have a POST request with data from the login form. Because of that the router will try to run 'POST'
                 on the controller of the requested page. This is incorrect and instead it should 'GET' the requested page.
                 By forcing the REQUEST_METHOD to GET we trick the router into calling 'GET' on the controller.
                 */
                 $_SERVER['REQUEST_METHOD'] = 'GET';
                 /*
                 We're redirecting to another page, so we don't want the login details to be in post for that page.
                 For example the user search pages will pre populate their fields with this data if we don't clear it.
                 */
                 unset($_POST);
                 //If we directly request the login page we redirect to the home page
                 if (explode('?', str_replace(DomainConfig::DOMAIN_SUFFIX, '', strtolower($_SERVER['REQUEST_URI'])), 2)[0] == 'login') {
                     header('Location: home', true, 303);
                 }
             } else {
                 $page = new Page();
                 $page->data['title'] = 'Login';
                 $page->data['LoginView']['login_formAction'] = $_SERVER['REQUEST_URI'];
                 $page->data['LoginView']['email'] = $_POST['email'];
                 $page->data['LoginView']['errMsgs']['global'] = '<h2 class="error_message" id="login_form_error_message">E-mailadres en/of wachtwoord onjuist.</h2>';
                 $page->addView('authorization/LoginView');
                 $page->addView('authorization/UserOfPastYearView');
                 $page->showWithMenu();
             }
         } catch (Exception $ex) {
             if (is_a($ex, 'UserDBException')) {
                 $page = new Page();
                 $page->data['title'] = 'Login';
                 $page->data['LoginView']['login_formAction'] = $_SERVER['REQUEST_URI'];
                 $page->data['LoginView']['email'] = $_POST['email'];
                 // If the user doesn't exist we show the invalid credentials error, otherwise a generic error.
                 if ($ex->getCode() == UserDBException::NOUSERFOREMAIL) {
                     $page->data['LoginView']['errMsgs']['global'] = '<h2 class="error_message" id="login_form_error_message">E-mailadres en/of wachtwoord onjuist.</h2>';
                 } else {
                     $page->data['LoginView']['errMsgs']['global'] = '<h2 class="error_message" id="login_form_error_message">Kan niet aanmelden, probeer het opnieuw.</h2>';
                 }
                 $page->addView('authorization/LoginView');
                 $page->addView('authorization/UserOfPastYearView');
                 $page->showWithMenu();
             }
         }
     } else {
         $page = new Page();
         $page->data['title'] = 'Login';
         $page->data['LoginView']['login_formAction'] = $_SERVER['REQUEST_URI'];
         $page->data['LoginView']['email'] = $_POST['email'];
         $page->data['LoginView']['errMsgs'] = LoginViewValidator::initErrMsgs();
         $page->data['LoginView']['errMsgs'] = array_merge($page->data['LoginView']['errMsgs'], $errMsgs);
         $page->addView("authorization/LoginView");
         $page->addView('authorization/UserOfPastYearView');
         $page->showWithMenu();
     }
 }
開發者ID:JHDeStip,項目名稱:Stippers,代碼行數:67,代碼來源:LoginController.php


注:本文中的UserDB::getAuthUserByEmail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。