示例詳解Laravel重置密碼代碼重構(gòu)
來源:易賢網(wǎng) 閱讀:915 次 日期:2016-08-29 13:46:40
溫馨提示:易賢網(wǎng)小編為您整理了“示例詳解Laravel重置密碼代碼重構(gòu)”,方便廣大網(wǎng)友查閱!

1、首先確定重置密碼的路由

我們在安裝好laravel的時候默認(rèn)生成的重置密碼是在用戶未登錄的情況下進(jìn)行的。所以使用原來的控制器是不可行的,并且原有的重置密碼,并不需要查看原始密碼是否正確,而是通過郵件來進(jìn)行直接更改密碼,所以控制器方法的話,我們也需要重新寫個。我們使用php artisan make:controller UserController創(chuàng)建一個控制器類,然后創(chuàng)建兩條路由Route::get('reset', 'UserController@getReset')和Route::post('reset', 'UserController@postReset')。

前者是顯示一個重置密碼的頁面get請求,后面是重置密碼post請求。

2、顯示重置密碼頁

這個使用的是getReset這個方法,這個方法只需要顯示一個視圖所以并沒有特別的邏輯

public function getReset()

{

  return view('auth.reset');

}

3、請求重置密碼

這個使用的是postReset這個方法,接收數(shù)據(jù)的話我們使用兩種方法接收傳過來的數(shù)據(jù)都可以:一種是使用request的方法接收數(shù)據(jù),另外一種是使用Input::get的方法獲取數(shù)據(jù)。Request的話需要引入use Illuminate\Http\Request類,Input的話需要引入use Input類,這里我們選擇使用request來接收。

4、驗證規(guī)則

驗證的話,laravel為我們提供了一套驗證的規(guī)則,使用validator的Validator::make()方法進(jìn)行驗證

$data = $request->all(); //接收所有的數(shù)據(jù)

$rules = [

  'oldpassword'=>'required|between:6,20',

  'password'=>'required|between:6,20|confirmed',

];

$messages = [

  'required' => '密碼不能為空',

  'between' => '密碼必須是6~20位之間',

  'confirmed' => '新密碼和確認(rèn)密碼不匹配'

];

$validator = Validator::make($data, $rules, $messages);

$data 接收到從from傳過來的數(shù)據(jù)信息;

rules 對接收到的值進(jìn)行判斷,其中數(shù)組前面的oldpassword和password是從前端from接收到的原始密碼和新密碼的name字段數(shù)據(jù)進(jìn)行驗證;

驗證規(guī)則的話在手冊的驗證章節(jié)都有,值得注意的是,使用confirmed的話是為了新密碼和確認(rèn)密碼進(jìn)行相同判斷,確認(rèn)密碼必須的name值必須是新密碼的name值后面加上'_confirmation',比如新密碼的name值為newpassword的話,確認(rèn)密碼的name值則必須為newpassword_confirmation才可以進(jìn)行判斷messages對驗證的數(shù)據(jù)請求,顯示什么提示。

然后通過上面的驗證,還有個情況是沒有驗證的,那就是輸入的原始密碼是否和數(shù)據(jù)庫里的原始密碼相同。

這里我們可以先把這個用戶的信息從數(shù)據(jù)庫里給查出來,然后和輸入的原始密碼進(jìn)行比對。這里我們使用Auth::user()來獲取用戶的信息,這個方法需要引入use Auth;類,然后通過Hash::check()來進(jìn)行密碼判斷。判斷完以后還有個問題,那就是,如何把錯誤信息給壓入到validator的錯誤信息里,這里laravel為我們提供了after方法:

$user = Auth::user();

$validator->after(function($validator) use ($oldpassword, $user) {

  if (!\Hash::check($oldpassword, $user->password)) { //原始密碼和數(shù)據(jù)庫里的密碼進(jìn)行比對

    $validator->errors()->add('oldpassword', '原密碼錯誤'); //錯誤的話顯示原始密碼錯誤

  }

});

if ($validator->fails()) {   //判斷是否有錯誤

  return back()->withErrors($validator); //重定向頁面,并把錯誤信息存入一次性session里

}

$user->password = bcrypt($password);    //使用bcrypt函數(shù)進(jìn)行新密碼加密

$user->save();   //成功后,保存新密碼

這里因為after 引入了一個PHP的匿名函數(shù),所以我們需要使用use 關(guān)鍵字把外部數(shù)據(jù)給傳入到匿名函數(shù)里(PS:php新特性,閉包和匿名函數(shù))

在匿名函數(shù)里我們引入了一個全局函數(shù)所以我們需要在函數(shù)前面加\(PS:php新特性,命名空間章節(jié),全局命名空間)

5、前端顯示錯誤信息

前端顯示的話,我們使用$errors變量來顯示錯誤,根據(jù)官方文檔說明,調(diào)用的是Illuminate\Support\MessageBag的示例,有興趣的話,可以看下。我們使用count($errors) > 0來判斷是否有錯誤,使用 $errors->first()顯示一條錯誤信息:

@if(count($errors) > 0)

  <div class="alert alert-danger display-hide" style="display: block;">

    <button class="close" data-close="alert"></button>

    <span>  </span>

  </div>

@endif

可能會有人問,如果我的錯誤不是顯示在固定的一個地方,而是在每個表單的后面顯示錯誤信息的話,這樣我們該怎么判斷和顯示呢? 答案是使用$errors->has('oldpassword')來判斷有沒有這個名稱的錯誤,如果有的話,使用 $errors->first('oldpassword') 顯示這條錯誤:

@if( $errors->has('oldpassword') )

  <div class="alert alert-danger display-hide" style="display: block;">

    <button class="close" data-close="alert"></button>

    <span>  </span>

  </div>

@endif

其中oldpassword是每個表單的里的name值,所以在使用after方法添加自定義錯誤的時候 $validator->errors()->add('oldpassword', '原密碼錯誤');中,oldpassword一定要寫對是在哪個表單的錯誤,這樣才能正確的顯示。

6、完成后的示例

UserController

public function getReset()

{

  return view('auth.reset');

}

public function postReset(Request $request)

{

  $oldpassword = $request->input('oldpassword');

  $password = $request->input('password');

  $data = $request->all();

  $rules = [

    'oldpassword'=>'required|between:6,20',

    'password'=>'required|between:6,20|confirmed',

  ];

  $messages = [

    'required' => '密碼不能為空',

    'between' => '密碼必須是6~20位之間',

    'confirmed' => '新密碼和確認(rèn)密碼不匹配'

  ];

  $validator = Validator::make($data, $rules, $messages);

  $user = Auth::user();

  $validator->after(function($validator) use ($oldpassword, $user) {

    if (!\Hash::check($oldpassword, $user->password)) {

      $validator->errors()->add('oldpassword', '原密碼錯誤');

    }

  });

  if ($validator->fails()) {

    return back()->withErrors($validator); //返回一次性錯誤

  }

  $user->password = bcrypt($password);

  $user->save();

  Auth::logout(); //更改完這次密碼后,退出這個用戶

  return redirect('/login');

}

reset.blade

<form class="login-form" action="" method="post">

    <h3 class="font-green">修改密碼</h3>

    @if($errors->first())

      <div class="alert alert-danger display-hide" style="display: block;">

        <button class="close" data-close="alert"></button>

        <span>  </span>

      </div>

    @endif

    {!! csrf_field() !!}

    <div class="form-group">

      <label class="control-label visible-ie8 visible-ie9">原始密碼</label>

      <input class="form-control placeholder-no-fix" type="password" autocomplete="off" placeholder="Old Password" name="oldpassword"> </div>

    <div class="form-group">

      <label class="control-label visible-ie8 visible-ie9">新密碼</label>

      <input class="form-control placeholder-no-fix" type="password" autocomplete="off" id="register_password" placeholder="New password" name="password"> </div>

    <div class="form-group">

      <label class="control-label visible-ie8 visible-ie9">重復(fù)密碼</label>

      <input class="form-control placeholder-no-fix" type="password" autocomplete="off" placeholder="Repeat password" name="password_confirmation"> </div>

    <div class="form-actions">

      <button type="submit" id="register-submit-btn" class="btn btn-success uppercase pull-right">確定</button>

    </div>

  </form>

總結(jié)

以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)使用Laravel有所幫助

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:示例詳解Laravel重置密碼代碼重構(gòu)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)