当前位置: 首页>>代码示例>>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;未经允许,请勿转载。