dsw7547 2017-02-14 08:27
浏览 67
已采纳

在Dingo API laravel包中收听Auth事件

I used Dingo API package to create an api like Telegram api.

In the first step User sends some parameters , then I verify those and if all things was true user informations included a Token returned. like this :

public function signIn (Request $request)
{
    $phone_number    = $request->get('phone_number');
    $phone_code_hash = $request->get('phone_code_hash');
    $phone_code      = $request->get('phone_code');

    if ($this->verifyCode($phone_code_hash, $phone_code, $phone_number)) {
        $user = User::where('phone_number', $phone_number)->firstOrFail();
        $user->injectToken();
        return $this->response->item($user, new UserTransformer);
    } else {    
        return [
            'success'     => false,
            'type'        => 'PHONE_NUMBER_IS_NOT_REGISTERED',
            'code'        => 703,
            'message'     => 'Phone Code Is Correct But Phone Number Is Not Registered.'
        ];
    }
}

As you can see signIn method has user authentication duty.

Now I do not know how can I listen to authentication events like Illuminate\Auth\Events\Authenticated ,Illuminate\Auth\Events\Login and etc described here.

In fact I want to run an event whenever user login was successfull.

I'm using larvel 5.3.

Any solution ؟

  • 写回答

1条回答 默认 最新

  • duanluanhui8348 2017-02-14 10:14
    关注

    These events are not supported out of the box by Dingo.

    You may however, create a custom middleware to fire an Illuminate\Auth\Events\Authenticated event on success like so:

    app/Http/Middleware/Auth.php

    namespace App\Http\Middleware;
    
    use Dingo\Api\Http\Middleware\Auth as BaseAuth;
    use Closure;
    
    class Auth extends BaseAuth {
    
         /**
         * Perform authentication before a request is executed.
         *
         * @param \Illuminate\Http\Request $request
         * @param \Closure                 $next
         *
         * @return mixed
         */
        public function handle($request, Closure $next)
        {
            $route = $this->router->getCurrentRoute();
            if (! $this->auth->check(false)) {
                $this->auth->authenticate($route->getAuthenticationProviders());
                event(new \Illuminate\Auth\Events\Authenticated($this->auth->getUser());
            }
            return $next($request);
        }
    }
    

    Finally, just register and add this middleware to your routes

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

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog