dongzhuo3376 2017-10-03 11:20
浏览 119
已采纳

Laravel 5.4:密码重置令牌自定义长度?

I am using laravel 5.4 building an API where I email the user a token on password reset if user verified, which user provides before resetting password. Currently the sent token has 64 characters and too large for user to grab, and I'm not sure if laravel has configuration to give a custom length to token?

  • 写回答

1条回答 默认 最新

  • dongsigan2636 2017-10-03 14:23
    关注

    The solution is a little bit tricky, ill try to explain the procedure as clearly as possible:

    STEP 1 - Extend the standard DatabaseTokenRepository

    Create a class that extends Illuminate\Auth\Passwords\DatabaseTokenRepository in order to define a new token creation policy.

    <?php
    
    namespace App\Auth\Passwords;
    
    use Illuminate\Auth\Passwords\DatabaseTokenRepository;
    
    class CustomDatabaseTokenRepository extends DatabaseTokenRepository
    {
    
        // Overrides the standard token creation function
        public function createNewToken()
        {
            retrun substr(parent::createNewToken(), 0, 30);
        }
    
    }
    

    I've just trimmed the token generated by Laravel down to 30 chars, feel free to implement your own token generation routine.

    STEP 2 - Extend the standard PasswordBrokerManager

    Now you have to tell the PasswordBrokerManager to use your token repository instead of the standard one. In order to do so you have to extend the class Illuminate\Auth\Passwords\PasswordBrokerManager.

    <?php
    
    namespace App\Auth\Passwords;
    
    use Illuminate\Auth\Passwords\PasswordBrokerManager;
    
    class CustomPasswordBrokerManager extends PasswordBrokerManager
    {
    
        // Override the createTokenRepository function to return your
        // custom token repository instead of the standard one
        protected function createTokenRepository(array $config)
        {
            $key = $this->app['config']['app.key'];
    
            if (Str::startsWith($key, 'base64:')) {
                $key = base64_decode(substr($key, 7));
            }
    
            $connection = isset($config['connection']) ? $config['connection'] : null;
    
            return new CustomDatabaseTokenRepository(
                $this->app['db']->connection($connection),
                $this->app['hash'],
                $config['table'],
                $key,
                $config['expire']
            );
        }
    
    }
    

    STEP 3 - Extend the standard PasswordResetServiceProvider

    Now you have to extend the standard Illuminate\Auth\Passwords\PasswordResetServiceProvider in order to tell Laravel to instantiate your CustomPasswordBrokerManager.

    <?php
    
    namespace App\Auth\Passwords;
    
    use Illuminate\Auth\Passwords\PasswordResetServiceProvider;
    
    class CustomPasswordResetServiceProvider extends PasswordServiceProvider
    {
    
        // Override the method registerPasswordBroker
        // in order to specify your customized manager
        protected function registerPasswordBroker()
        {
            $this->app->singleton('auth.password', function ($app) {
                return new CustomPasswordBrokerManager($app);
            });
    
            $this->app->bind('auth.password.broker', function ($app) {
                return $app->make('auth.password')->broker();
            });
        }
    }
    

    STEP 4 - Final step, replace the provider in config/app.php

    Comment out the following line in your config/app.php files under the providers key:

    // Illuminate\Auth\Password\PasswordResetServiceProvider::class,

    And add the following line just below:

    App\Auth\Passwords\CustomPasswordResetServiceProvider::class,

    CONSIDERATIONS

    Be careful when doing such things, the token is defined as hash_hmac('sha256', Str::random(40), $this->hashKey) where $this->hasKey is env('APP_KEY). This is used to ensure that no collision will occur when generating password reset tokens. I suggest you to investigate a secure method to reduce your token length securely.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化