gpt4 book ai didi

php - 如何使用 Laravel 5.0 制作 Restful 密码提醒并将用户电子邮件字段更改为用户名字段?

转载 作者:行者123 更新时间:2023-11-29 01:13:12 25 4
gpt4 key购买 nike

我正在尝试使用 Laravel 5.0 进行密码提醒,我的 user 表在 config/auth.php 中设置为正确的表,但该表没有字段电子邮件,因为在我的业务中,用户名比电子邮件更适合作为用户的电子邮件属性。

因此,当我尝试调用 POST/password/username 时(在我的例子中,我需要在我的 PasswordController 中创建一个 postUsername 方法,该方法利用 ResetsPasswords trait 因为我有用户名而不是电子邮件而且我无法将用户名字段重命名为电子邮件),我收到以下 mysql 错误:

未找到列:1054“where 子句”中的未知列“email”(SQL:select * fromuserwhereemail= email@email.com限制 1

如何更改 Laravel 5.0 中密码提醒的默认行为,以使用用户名字段而不是电子邮件字段?

我尝试使用 mutator(setter) 和 accessor(getter) 方法来发送电子邮件,但无法正常工作,这种方式:

<?php
// class User extends Model implements AuthenticatableContract, CanResetPasswordContract...

public function getEmail() {
return $this->username;
}

public function setEmail($email) {
return $this->username = $email;
}

最佳答案

在 User 模型上设置一个 getEmailForPasswordReset 方法解决了这个问题:

<?php
public function getEmailForPasswordReset() {
return $this->username;
}

我的 PasswordController 使用 POST/password/username/{token} 字段而不是 email 字段:

<?php namespace Reverse\Http\Controllers\Auth;

use Illuminate\Http\Request;
use Reverse\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Auth\PasswordBroker;
use Illuminate\Foundation\Auth\ResetsPasswords;

class PasswordController extends Controller {

/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/

use ResetsPasswords;

/**
* Create a new password controller instance.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
* @param \Illuminate\Contracts\Auth\PasswordBroker $passwords
* @return void
*/
public function __construct(Guard $auth, PasswordBroker $passwords)
{
$this->auth = $auth;
$this->passwords = $passwords;

// With this, when logged says: "You're logged!" and not send the email token
//$this->middleware('guest');
}

/**
* Send a reset link to the given user.
*
* @param Request $request
* @return Response
*/
public function postUsername(Request $request)
{
$validator = \Validator::make(
['username' => $request->get('username')],
['username' => 'required|email|min:6|max:255']
);

if($validator->passes()) {
$response = $this->passwords->sendResetLink($request->only('username'), function ($m) {
$m->subject($this->getEmailSubject());
});

switch ($response) {
case PasswordBroker::RESET_LINK_SENT:
return \Response::json(['success' => 'true']);
//return redirect()->back()->with('status', trans($response));

case PasswordBroker::INVALID_USER:
return \Response::json(['success' => 'true', 'status' => trans($response)]);
//return redirect()->back()->withErrors(['username' => trans($response)]);
}
} else {
return \Response::json(['error' => [
'messages' => $validator->getMessageBag(),
'rules' => $validator->getRules()
]]);
}
}

/**
* Reset the given user's password.
*
* @param Request $request
* @return Response
*/
public function postReset(Request $request)
{
$this->validate($request, [
'token' => 'required',
'username' => 'required|email|min:6|max:255',
'password' => 'required|confirmed',
]);

$credentials = $request->only(
'username', 'password', 'password_confirmation', 'token'
);

$response = $this->passwords->reset($credentials, function($user, $password)
{
$user->password = bcrypt($password);
$user->save();
$this->auth->login($user);
});

switch ($response)
{
case PasswordBroker::PASSWORD_RESET:
return \Response::json(['success' => 'true']);
//return redirect($this->redirectPath());

default:
return \Response::json(['success' => 'false', 'status' => trans($response)]);
/*return redirect()->back()
->withInput($request->only('email'))
->withErrors(['email' => trans($response)]);*/
}
}

}

我也更改了重置 View ...

// /resources/views/auth/reset.blade.php
<input type="email" class="form-control" name="username" value="{{ old('username') }}">

我更改了我的/config/mail.php 配置文件以使用 env 变量,例如 .env 配置文件上的新 SMTP_HOST 变量:

<?php

return [

/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail.
|
| Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log"
|
*/

'driver' => env('MAIL_DRIVER', 'smtp'),

/*
|--------------------------------------------------------------------------
| SMTP Host Address
|--------------------------------------------------------------------------
|
| Here you may provide the host address of the SMTP server used by your
| applications. A default option is provided that is compatible with
| the Mailgun mail service which will provide reliable deliveries.
|
*/

'host' => env('SMTP_HOST', 'smtp.mailgun.org'),

/*
|--------------------------------------------------------------------------
| SMTP Host Port
|--------------------------------------------------------------------------
|
| This is the SMTP port used by your application to deliver e-mails to
| users of the application. Like the host we have set this value to
| stay compatible with the Mailgun e-mail application by default.
|
*/

'port' => env('SMTP_PORT', 587),

/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/

'from' => [
'address' => env('MAIL_FROM_DEFAULT', 'admin@127.0.0.1'),
'name' => env('MAIL_NAME_DEFAULT', 'Admin')
],

/*
|--------------------------------------------------------------------------
| E-Mail Encryption Protocol
|--------------------------------------------------------------------------
|
| Here you may specify the encryption protocol that should be used when
| the application send e-mail messages. A sensible default using the
| transport layer security protocol should provide great security.
|
*/

'encryption' => env('SMTP_ENCRYPTION', 'tls'),

/*
|--------------------------------------------------------------------------
| SMTP Server Username
|--------------------------------------------------------------------------
|
| If your SMTP server requires a username for authentication, you should
| set it here. This will get used to authenticate with your server on
| connection. You may also set the "password" value below this one.
|
*/

'username' => env('SMTP_USERNAME', null),

/*
|--------------------------------------------------------------------------
| SMTP Server Password
|--------------------------------------------------------------------------
|
| Here you may set the password required by your SMTP server to send out
| messages from your application. This will be given to the server on
| connection so that the application will be able to send messages.
|
*/

'password' => env('SMTP_PASSWORD', null),

/*
|--------------------------------------------------------------------------
| Sendmail System Path
|--------------------------------------------------------------------------
|
| When using the "sendmail" driver to send e-mails, we will need to know
| the path to where Sendmail lives on this server. A default path has
| been provided here, which will work well on most of your systems.
|
*/

'sendmail' => '/usr/sbin/sendmail -bs',

/*
|--------------------------------------------------------------------------
| Mail "Pretend"
|--------------------------------------------------------------------------
|
| When this option is enabled, e-mail will not actually be sent over the
| web and will instead be written to your application's logs files so
| you may inspect the message. This is great for local development.
|
*/

'pretend' => false,

];

现在,一切正常!

关于php - 如何使用 Laravel 5.0 制作 Restful 密码提醒并将用户电子邮件字段更改为用户名字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29268071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com