gpt4 book ai didi

laravel-4 - 设置 Laravel 的 Auth 用户

转载 作者:行者123 更新时间:2023-12-03 15:30:28 25 4
gpt4 key购买 nike

我正在使用 Laravel 的 Auth在我的网站上对用户进行身份验证的类,基本 Auth::attempt(...)东西。

最近有一个新要求(是的利益相关者!),现在需要用户创建新用户(二级用户)。由于主要用户的登录是通过第三方系统进行的,因此我无法将次要用户与主要用户一起存储(并重新使用当前的身份验证系统)。

我想到的是以某种方式告诉Auth类登录并强制设置用户在 Auth::user()方法。

有没有办法做到这一点?

最佳答案

编辑

为此,您必须在次要用户的模型中使用 UserInterface类(class)

use Illuminate\Auth\UserInterface;

然后你需要实现5个必需的方法: getAuthIdentifier , getAuthPassword , getRememberToken , setRememberTokengetRememberTokenName .

由于显然 config > auth无法在运行时更改,您必须手动检查用户的凭据,获取实例并执行 Auth::login($secondaryUser) .
<?php

use Illuminate\Auth\UserInterface;

class SecondaryUser extends Eloquent implements UserInterface {

/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'secondary_users';

/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = array('password');

/**
* Get the unique identifier for the secondary user.
*
* @return mixed
*/
public function getAuthIdentifier()
{
return $this->getKey();
}

/**
* Get the password for the secondary user.
*
* @return string
*/
public function getAuthPassword()
{
return $this->password;
}

/**
* Get the token value for the "remember me" session.
*
* @return string
*/
public function getRememberToken()
{
return $this->remember_token;
}

/**
* Set the token value for the "remember me" session.
*
* @param string $value
* @return void
*/
public function setRememberToken($value)
{
$this->remember_token = $value;
}

/**
* Get the column name for the "remember me" token.
*
* @return string
*/
public function getRememberTokenName()
{
return 'remember_token';
}

public function mainUser()
{
return $this->belongsTo('User');
}

}

原答案

我不确定是否理解您想要什么,但也许这可以帮助: http://laravel.com/docs/security#manually
$user = User::find(1);
Auth::login($user);

如果你有 2 user模型,我认为只要它们扩展主 User 类就应该可以工作

关于laravel-4 - 设置 Laravel 的 Auth 用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24563134/

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