2

DB に 'member' と呼ばれるテーブルがあり、ユーザー名、パスワード、およびその他すべての関連情報を格納する予定であり、yii2 のデフォルトの User.php モデルの代わりにそれらのユーザー名/パスワードをログインに使用したいと考えています。私はほぼ 1 日試しており、Member.php モデルを変更しましたが、機能させることができません。カスタムのユーザー名/パスワードを db から使用するたびに、ユーザー名またはパスワードが正しくないと表示されます。誰でも私を助けてもらえますか?前もって感謝します。:)

参考までに、authKey や accessToken などのメンバー テーブルにそのようなフィールドはありません。関連するすべてのスタックオーバーフローの投稿を試しましたが、うまくいきませんでした。

Member.php モデル

namespace app\models;
use Yii;
use yii\web\IdentityInterface;

class Member extends \yii\db\ActiveRecord implements IdentityInterface
{
    public static function tableName()
    {
        return 'member';
    }

    public function rules()
    {
        return [
            [['username', 'password', 'first_name', 'last_name', 'role'], 'required'],
            [['created_by_date', 'last_modified_by_date'], 'safe'],
            [['username', 'password', 'role', 'created_by_id', 'last_modified_by_id'], 'string', 'max' => 50],
            [['first_name', 'last_name', 'middle_name', 'phone', 'mobile'], 'string', 'max' => 100],
            [['email'], 'string', 'max' => 250],
            [['address_line1', 'address_line2', 'address_line3'], 'string', 'max' => 512]
        ];
    }

    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'username' => 'Username',
            'password' => 'Password',
            'first_name' => 'First Name',
            'last_name' => 'Last Name',
            'middle_name' => 'Middle Name',
            'email' => 'Email',
            'phone' => 'Phone',
            'mobile' => 'Mobile',
            'address_line1' => 'Address Line1',
            'address_line2' => 'Address Line2',
            'address_line3' => 'Address Line3',
            'role' => 'Role',
            'created_by_id' => 'Created By ID',
            'created_by_date' => 'Created By Date',
            'last_modified_by_id' => 'Last Modified By ID',
            'last_modified_by_date' => 'Last Modified By Date',
        ];
    }

    public static function find()
    {
        return new MemberQuery(get_called_class());
    }

    public static function findIdentity($id) 
    {
        $dbUser = self::find()
            ->where([
                "id" => $id
            ])
            ->one();
        if (!count($dbUser)) {
            return null;
        }
        return new static($dbUser);
    }

    public static function findIdentityByAccessToken($token, $userType = null) 
    {
        $dbUser = self::find()
            ->where(["accessToken" => $token])
            ->one();
        if (!count($dbUser)) {
            return null;
        }
        return new static($dbUser);
    }


    public static function findByUsername($username) 
    {
        $dbUser = self::find()
            ->where(["username" => $username])
            ->one();
        if (!count($dbUser)) {
            return null;
        }
        return $dbUser;
    }

    public function getId() 
    {
        return $this->id;
    }

    public function getAuthKey() 
    {
        return $this->authKey;
    }

    public function validateAuthKey($authKey) 
    {
        return $this->authKey === $authKey;
    }

    /**
     * Validates password
     *
     * @param  string  $password password to validate
     * @return boolean if password provided is valid for current user
     */
    public function validatePassword($password) 
    {
        return $this->password === $password;
    }
}

config/web.php

'user' => [
        'identityClass' => 'app\models\Member',
        'enableAutoLogin' => true,
    ],

User.php モデルを変更しませんでした。ここにあります:

namespace app\models;

class User extends \yii\base\Object implements \yii\web\IdentityInterface
{
    private static $users = [
        '100' => [
            'id' => '100',
            'username' => 'admin',
            'password' => 'admin',
        'authKey' => 'test100key',
        'accessToken' => '100-token',
    ],
    '101' => [
        'id' => '101',
        'username' => 'demo',
        'password' => 'demo',
        'authKey' => 'test101key',
        'accessToken' => '101-token',
    ],
];

/**
 * @inheritdoc
 */
public static function findIdentity($id)
{
    return isset(self::$users[$id]) ? new static(self::$users[$id]) : null;
}

/**
 * @inheritdoc
 */
public static function findIdentityByAccessToken($token, $type = null)
{
    foreach (self::$users as $user) {
        if ($user['accessToken'] === $token) {
            return new static($user);
        }
    }

    return null;
}

/**
 * Finds user by username
 *
 * @param  string      $username
 * @return static|null
 */
public static function findByUsername($username)
{
    foreach (self::$users as $user) {
        if (strcasecmp($user['username'], $username) === 0) {
            return new static($user);
        }
    }

    return null;
}

/**
 * @inheritdoc
 */
public function getId()
{
    return $this->id;
}

/**
 * @inheritdoc
 */
public function getAuthKey()
{
    return $this->authKey;
}

/**
 * @inheritdoc
 */
public function validateAuthKey($authKey)
{
    return $this->authKey === $authKey;
}

/**
 * Validates password
 *
 * @param  string  $password password to validate
 * @return boolean if password provided is valid for current user
 */
public function validatePassword($password)
{
    return $this->password === $password;
}
}
4

2 に答える 2

0

User クラスを Member クラスで拡張し、メイン構成で設定する必要があります。

[...]
'modules' => [
        'user' => [
            'class' => 'member class
            'modelMap' => [
                'User' => 'app\models\member',

詳細: yii 2 : ユーザー モデルをオーバーライドする

于 2015-08-14T14:52:13.873 に答える