主頁(yè) > 知識(shí)庫(kù) > laravel的用戶(hù)修改密碼與綁定郵箱的詳細(xì)操作

laravel的用戶(hù)修改密碼與綁定郵箱的詳細(xì)操作

熱門(mén)標(biāo)簽:上海400客服電話(huà)怎么申請(qǐng) 天津電銷(xiāo)外呼系統(tǒng)違法嗎 400電話(huà)個(gè)人能不能辦理 銀行信貸電話(huà)機(jī)器人 手機(jī)外呼系統(tǒng)什么原理 滄州電銷(xiāo)外呼系統(tǒng)價(jià)格 合肥ai電銷(xiāo)機(jī)器人費(fèi)用 凱立德地鐵站地圖標(biāo)注 溫州外呼系統(tǒng)招商

一、修改密碼

1.1 創(chuàng)建修改密碼控制器

運(yùn)行命令php artisan make:controller Auth/PasswordController

寫(xiě)入修改密碼方法:

/**
     * 修改密碼
     */
    public function updatePassword(Request $request) {
        $request->validate([
            'old_password' => 'required|min:6|max:16',
            'password' => 'required|min:6|max:16|confirmed',
        ], [
            'old_password.required' => '舊密碼不能為空',
            'old_password.min' => '舊密碼最少6個(gè)字符',
            'old_password.max' => '舊密碼最多16個(gè)字符',
        ]);

        // 舊密碼
        $old_password = $request->input('old_password');
        // 用戶(hù)實(shí)例
        $user = auth('api')->user();
        // 驗(yàn)證舊密碼是否正確
        if (!password_verify($old_password, $user->password)) {
            return $this->response->errorBadRequest('舊密碼不正確');
        } 
        // 更新用戶(hù)密碼  
        $user->password = bcrypt($request->input('password'));
        $user->save();

        return $this->response->noContent();
    }

1.2 創(chuàng)建修改密碼路由

 // 修改密碼
            $api->post('password/update', [PasswordController::class, 'updatePassword']);

1.3 測(cè)試效果

二、綁定郵箱

 2.1 綁定郵箱控制器

運(yùn)行命令php artisan make:controller Auth/BindController創(chuàng)建綁定郵箱的控制器:

寫(xiě)入發(fā)送郵箱驗(yàn)證碼和更新郵箱的處理函數(shù):

?php

namespace App\Http\Controllers\Auth;

use App\Http\Controllers\BaseController;
use App\Mail\SendEmailCode;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Mail;

class BindController extends BaseController
{
    /**
     * 獲取郵件的驗(yàn)證碼
     */
    public function emailCode(Request $request) {
        $request->validate([
            'email' => 'required|email'
        ]);

        // 發(fā)送驗(yàn)證碼到郵件
        Mail::to($request->input('email'))->queue(new SendEmailCode($request->input('email')));
        return $this->response->noContent();
    }

    /**
     * 更新郵箱
     */
    public function updateEmail(Request $request) {
        $request->validate([
            'email' => 'required|email',
            'code' => 'required'
        ], [
            'code.required' => "驗(yàn)證碼不能為空",
        ]);

        // 驗(yàn)證code是否正確
        if (cache($request->input('email')) != $request->input('code')) {
            return $this->response->errorBadRequest('驗(yàn)證碼或郵箱錯(cuò)誤!');
        }

        // 更新郵箱
        $user = auth('api')->user(); 
        $user->email = $request->input('email');
        $user->save();
        return $this->response->noContent();
    } 
}

如果修改了隊(duì)列了,就要重啟隊(duì)列,命令sudo supervisorctl restart all

2.2 創(chuàng)建對(duì)應(yīng)路由

  // 發(fā)送郵件驗(yàn)證碼
            $api->post('email/code', [BindController::class, 'emailCode']);

            // 更新郵箱
            $api->post('email/update', [BindController::class, 'updateEmail']);

2.3 創(chuàng)建發(fā)送郵件的類(lèi)

運(yùn)行命令php artisan make:mail SendEmailCode:

寫(xiě)入:

?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Cache;

class SendEmailCode extends Mailable
{
    use Queueable, SerializesModels;

    protected $email;
    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct($eamil)
    {
        $this->email = $eamil;
    }

    /**
     * Build the message.
     *
     * @return $this
     */
    public function build()
    {
        // 生成code
        $code = rand(1000, 9999);

        // 獲取郵箱

        // 使用緩存郵箱對(duì)應(yīng)的code
        Cache::put($this->email, $code, now()->addMinute(5)); // 5分鐘過(guò)期

        return $this->view('emails.send-email-code', ['code' => $code]);
    }
}

創(chuàng)建發(fā)送郵件的模版:

模版寫(xiě)入:

h3>郵箱驗(yàn)證碼是:{{$code}}/h3>
h3>驗(yàn)證碼5分鐘內(nèi)有效,請(qǐng)及時(shí)使用!/h3>

2.4 測(cè)試效果

可以看到這邊收到郵箱驗(yàn)證碼。
測(cè)試更新的輸入郵箱不正確或者驗(yàn)證碼不正確:

輸入正確的郵箱和驗(yàn)證碼就會(huì)修改了。

到此這篇關(guān)于laravel的用戶(hù)修改密碼與綁定郵箱的文章就介紹到這了,更多相關(guān)laravel修改密碼內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python模擬自動(dòng)存取款機(jī)的查詢(xún)、存取款、修改密碼等操作
  • python實(shí)現(xiàn)linux服務(wù)器批量修改密碼并生成execl

標(biāo)簽:溫州 怒江 赤峰 白城 金華 七臺(tái)河 酒泉 洛陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《laravel的用戶(hù)修改密碼與綁定郵箱的詳細(xì)操作》,本文關(guān)鍵詞  laravel,的,用戶(hù),修改,密碼,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《laravel的用戶(hù)修改密碼與綁定郵箱的詳細(xì)操作》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于laravel的用戶(hù)修改密碼與綁定郵箱的詳細(xì)操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章