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


PHP UserRepository::isThrottled方法代碼示例

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


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

示例1: postLogin

 /**
  * Attempt to do login
  *
  */
 public function postLogin()
 {
     $repo = App::make('UserRepository');
     $input = Input::all();
     if ($this->userRepo->login($input)) {
         return Redirect::intended('/');
     } else {
         if ($this->userRepo->isThrottled($input)) {
             $err_msg = Lang::get('confide::confide.alerts.too_many_attempts');
         } elseif ($this->userRepo->existsButNotConfirmed($input)) {
             $err_msg = Lang::get('confide::confide.alerts.not_confirmed');
         } else {
             $err_msg = Lang::get('confide::confide.alerts.wrong_credentials');
         }
         return Redirect::to('user/login')->withInput(Input::except('password'))->with('error', $err_msg);
     }
 }
開發者ID:LiveZenLK,項目名稱:Laravel-4-Bootstrap-Starter-Site,代碼行數:21,代碼來源:UserController.php

示例2: loginBeforePuchase

 public function loginBeforePuchase()
 {
     $id = Input::get('purchase');
     if (Auth::check()) {
         return Redirect::to('purchase/' . $id);
     } else {
         $repo = App::make('UserRepository');
         $input = Input::only(array('username', 'password'));
         if ($this->userRepo->login($input)) {
             return Redirect::to('purchase/' . $id);
         } else {
             if ($this->userRepo->isThrottled($input)) {
                 $err_msg = Lang::get('confide::confide.alerts.too_many_attempts');
             } elseif ($this->userRepo->existsButNotConfirmed($input)) {
                 $err_msg = Lang::get('confide::confide.alerts.not_confirmed');
             } else {
                 $err_msg = Lang::get('confide::confide.alerts.wrong_credentials');
             }
             return Redirect::to('purchase/' . $id)->withInput(Input::except('password'))->with('error', $err_msg);
         }
     }
 }
開發者ID:EricBui0512,項目名稱:FYP,代碼行數:22,代碼來源:UserController.php

示例3: postLogin

 /**
  * Attempt to do login
  *
  */
 public function postLogin()
 {
     //$repo = App::make('UserRepository');
     $input = Input::all();
     /*$input = array(
           'username'              =>Input::get('username'),
           'password'              =>Input::get('password'),            
       );*/
     $err_msg = "";
     if ($this->userRepo->login($input)) {
         //return Redirect::intended('/');
         //Administratorul platformei si utilizatorii care au acces la aplicatia vor putea continua
         if (Entrust::can('administrare_platforma') || $this->userRepo->hasAccessApp(1)) {
             if (Entrust::can('hostinger')) {
                 return Redirect::intended('/proba');
             } else {
                 self::registerLogin(Input::get('username'), Input::get('password'), 'Login OK');
                 Confide::getDepartamente();
                 return Redirect::intended('/dashboard');
             }
         } else {
             //altfel se afiseaza mesajul de eroare si sunt redirectionati la pagina de login
             $err_msg = Lang::get('confide::confide.alerts.access_denied');
         }
     } else {
         if ($this->userRepo->isThrottled($input)) {
             $err_msg = Lang::get('confide::confide.alerts.too_many_attempts');
         } elseif ($this->userRepo->existsButNotConfirmed($input)) {
             $err_msg = Lang::get('confide::confide.alerts.not_confirmed');
         } elseif ($this->userRepo->isUserBlocked($input)) {
             $err_msg = Lang::get('confide::confide.alerts.user_blocked');
         } else {
             $err_msg = Lang::get('confide::confide.alerts.wrong_credentials');
         }
     }
     self::registerLogin(Input::get('username'), Input::get('password'), $err_msg);
     return Redirect::to('user/login')->withInput(Input::except('password'))->with('error', $err_msg);
 }
開發者ID:binaryk,項目名稱:lareab,代碼行數:42,代碼來源:UserController.php


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