多版本不在laravel 5.1中工作

时间:2016-08-31 11:21:02

标签: laravel laravel-5.1 multi-tenant

我正在使用Laravel 5.1,我需要在我的项目中进行多次登录,所以我正在尝试使用 Kbwebs \ MultiAuth Sarav \ Multiauth 进行多次身份验证,两者都使用< strong>用户模型模型但不幸的是,当我使用 TenderApplicant 模型 Auth :: attempt 时,每次都返回false。

这是我的代码:

app.php

'providers' => [

    /*
     * Laravel Framework Service Providers...
     */
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
    Illuminate\Auth\AuthServiceProvider::class,
    Sarav\Multiauth\MultiauthServiceProvider::class,
    ...

auth.php

return [
'multi' => [
    'admin' => [
        'driver' => 'eloquent',
        'model' => App\User::class,
        'table' => 'sa_users',
    ],
    'user' => [
        'driver' => 'eloquent',
        'model'  => App\Models\TenderApplicant::class,
        'table'  => 'tender_applicant',
    ],
],
'password' => [
    'email'  => 'emails.password',
    'table'  => 'sa_password_resets',
    'expire' => 60,
],

];

AuthController.php

class AuthController extends Controller
{

use AuthenticatesAndRegistersUsers, ThrottlesLogins;

public function __construct()
{
    $this->middleware('guest', ['except' => 'getLogout']);
}

public function userAuth(Request $request)
{
    $this->validate($request, ['email' => 'required','password' => 'required']);

    $email      = $request->input('email');
    $password   = $request->input('password');
    var_dump(Auth::attempt("user", ['email' => 'awal.ashu@gmail.com', 'password' => '123456']));
}

为用户返回false,但admin已完成。

TenderApplicant.php

namespace App\Models;

use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;

class TenderApplicant extends Model implements AuthenticatableContract, CanResetPasswordContract
{
    use Authenticatable, CanResetPassword;
    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table      = 'tender_applicant';
    protected $primaryKey = 'TE_APP_ID';
    const CREATED_AT      = 'CREATED_AT';
    const UPDATED_AT      = 'UPDATED_AT';

    protected $fillable = [
                        'TENDER_ID', 
                        'SCHEDULE_ID', 
                        'PR_DETAIL_ID', 
                        'NID', 
                        'PR_CATEGORY', 
                        'PR_TYPE', 
                        'APPLICANT_NAME',
                        'EMAIL',  
                        'APPLICANT_PHONE', 
                        'PASSWORD', 
                        'HOLDING_NO', 
                        'IS_TE_SC_BOUGHT', 
                        'TE_SC_AMOUNT', 
                        'TE_SC_DATE', 
                        'SPOUSE_NAME', 
                        'BID_AMOUNT',
                        'BG_AMOUNT', 
                        'BG_AMOUNT_TEXT',
                        'BANK_ID',
                        'B_DRAFT_NO', 
                        'B_DRAFT_DATE', 
                        'B_DRAFT_ATTACHMENT', 
                        'IS_SELECTED', 
                        'IS_ACTIVE', 
                        'CREATED_BY', 
                        'UPDATED_BY'
                    ];

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $guarded = ['TE_APP_ID'];

    /**
     * Password need to be all time encrypted.
     *
     * @param string $password
     */
    public function setPasswordAttribute($password)
    {
        $this->attributes['PASSWORD'] = bcrypt($password);
    }
}

1 个答案:

答案 0 :(得分:0)

默认情况下,Laravel会将您的密码字段保留为&#34;密码&#34;。如果您更改(您保留为密码),则必须通知Laravel您的密码字段更改。

请将以下代码添加到TenderApplicant.php文件中并检查

public function getAuthPassword()
{
    return $this->PASSWORD;
}

然后尝试访问以下内容,

Auth::attempt('admin', ['EMAIL' => 'youremail@gmail.com', 'password' => 'your_password']); 

注意:您不必在此处将密码更改为 PASSWORD ,因为我们已在模型中定义了我们的方法。

  1. 当您尝试尝试Auth :: attempt()时,laravel将运行以下查询

    SELECT * FROM&#34; your_auth_table&#34;电子邮件=&#34; given_email&#34;限制1

  2. 然后使用获得的结果,laravel将从获得的结果中获取密码字段,这将是哈希。
  3. 然后它将从模型中调用getAuthPassword()方法并获取您提供的密码字段。默认情况下,它将是&#34;密码&#34;。现在用php功能 password_verify ,laravel将使用用户给定的纯文本验证您的哈希密码并启动用户会话
  4. 有关详细信息,请查看此博客。

    http://blog.sarav.co/laravel-password-management-mechanism/