我使用laravel的ResetsPasswords特征来实现密码重置。我想要实现的是使用队列发送电子邮件。挖掘代码我在函数postEmail()中找到了下面的行:
$response = Password::sendResetLink($request->only('email'), function (Message $message) {
$message->subject($this->getEmailSubject());
});
进一步挖掘我注意到sendResetLink()函数是在PasswordBroker类中实现的,而PasswordBroker类又调用函数emailResetLink()。 emailResetLink函数返回以下内容:
return $this->mailer->send($view, compact('token', 'user'), function ($m) use ($user, $token, $callback) {
$m->to($user->getEmailForPasswordReset());
我只需将mailer->send
更改为mailer->queue
即可。如果不修改这个非项目文件,它们是更好的方法吗?
答案 0 :(得分:18)
我知道这已经得到了解答,但我找到了另一种排队密码重置通知的方法,我觉得这更简单了。我已在 Laravel 5.3 上测试了它。
默认情况下,密码重置通知由Illuminate\Auth\Notifications\ResetPassword
类实现。此类在User
模型中以sendPasswordResetNotification
方式实例化,并传递给notify
特征的Illuminate\Notifications\Notifiable
方法。
因此,要对密码重置通知进行排队,您只需通过ResetPassword
创建新的artisan make:notification ResetPassword
通知类,并将其替换为以下代码:
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Auth\Notifications\ResetPassword as ResetPasswordNotification;
class ResetPassword extends ResetPasswordNotification implements ShouldQueue
{
use Queueable;
}
现在只需覆盖sendPasswordResetNotification
课程中的App\User
方法:
<?php
...
use App\Notifications\ResetPassword as ResetPasswordNotification;
...
/**
* Send the password reset notification.
*
* @param string $token
* @return void
*/
public function sendPasswordResetNotification($token)
{
$this->notify(new ResetPasswordNotification($token));
}
答案 1 :(得分:4)
这是Laravel集装箱救援的地方。如果您不喜欢核心组件的功能,那么您可以继续并轻松地覆盖它。
首先,您需要创建自己的PasswordBroker:
namespace App\Auth\Passwords;
use Illuminate\Auth\Passwords\PasswordBroker as IlluminatePasswordBroker;
class PasswordBroker extends IlluminatePasswordBroker
{
public function emailResetLink()
{
$view = $this->emailView;
return $this->mailer->queue($view, compact('token', 'user'), function ($m) use ($user, $token, $callback) {
$m->to($user->getEmailForPasswordReset());
if (! is_null($callback)) {
call_user_func($callback, $m, $user, $token);
}
});
}
}
如果要将名称空间放在应用程序的其他位置,请将名称空间更改为您想要的名称。
由于注册服务的服务提供商是deferred service provider,您需要创建自己的提供商来替换它。可能最简单的方法是使用以下内容扩展Illuminate\Auth\Passwords\PasswordResetServiceProvider
:
namespace App\Providers;
use App\Auth\Passwords\PasswordBroker;
class PasswordResetServiceProvider extends \Illuminate\Auth\Passwords\PasswordResetServiceProvider
{
protected function registerPasswordBroker()
{
$this->app->singleton('auth.password', function ($app) {
$tokens = $app['auth.password.tokens'];
$users = $app['auth']->driver()->getProvider();
$view = $app['config']['auth.password.email'];
return new PasswordBroker(
$tokens, $users, $app['mailer'], $view
);
});
}
}
最后在您的config/app.php
文件中删除Illuminate\Auth\Passwords\PasswordResetServiceProvider::class
并将App\Providers\PasswordResetServiceProvider::class
添加到您的'providers'
数组中。
Laravel现在将使用您的PasswordBroker实现而不是库存框架,您不必担心修改框架代码。
答案 2 :(得分:1)
如果你得到&#34;在null&#34;上调用成员函数onQueue();在尝试指定队列fakemeta的解决方案之后,只需在您的类的构造函数中指定您要定位的队列。
<?php
namespace App;
use Illuminate\Auth\Notifications\ResetPassword;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
class ResetPasswordNotification extends ResetPassword implements ShouldQueue
{
use Queueable;
public function __construct()
{
$this->queue = "authentication";
}
}
然后使用通知外观以覆盖方法发送邮件。通知方法也有效
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use App\ResetPasswordNotification;
class User extends Authenticatable
{
public function sendPasswordResetNotification($token)
{
// either of the two work
// $this->notify(new ResetPasswordNotification($token));
\Notification::send($this, new ResetPasswordNotification($token));
}
}