2

我想检查用户的角色是否发生了变化。

看这个例子:我是一个管理员,我想改变另一个管理员的角色(ROLE_MEMBER_ADMINROLE_USER)。但是,只有当他断开连接并重新连接时,成员的角色才会发生变化。

请问isEqualTo方法EquatableInterface是解决方法吗?我该如何实施?

4

2 回答 2

0

我认为你应该自己实现它。这听起来有点像用户日志。

您可以创建一个新表,在其中记录与用户 ID 相关的所有事件。然后,您可以记录每个事件。

之后,您可以编写一个函数来检查用户是否有更改。

于 2013-10-06T10:53:35.677 回答
0

在您的用户实体中:

use Symfony\Component\Security\Core\User\EquatableInterface;
use Symfony\Component\Security\Core\User\UserInterface;

class User implements UserInterface, \Serializable, EquatableInterface {

    /* took out getters/setters/ members declaration for clarity */

    /**
    * @see \Serializable::serialize()
    */
    public function serialize() {
        return serialize(array(
            $this->id,
            $this->username,
            $this->email,
            $this->password,
            $this->isActive,
            $this->roles
        ));
    }

    /**
     * @see \Serializable::unserialize()
     */
    public function unserialize($serialized) {
        list (
            $this->id,
            $this->username,
            $this->email,
            $this->password,
            $this->isActive,
            $this->roles
        ) = unserialize($serialized);
    }

    public function isEqualTo(UserInterface $user) {
        if (!$user instanceof User) {
            return false;
        }

        if ($this->password !== $user->getPassword()) {
            return false;
        }

        if ($this->username !== $user->getUsername()) {
            return false;
        }

        if ($this->email !== $user->getEmail()) {
            return false;
        }

        if ($this->isActive !== $user->isEnabled()) {
            return false;
        }

        // check roles
        // http://www.metod.si/symfony2-reload-user-roles/
        if (md5(serialize($this->getRoles())) !== md5(serialize($user->getRoles()))) {
            return false;
        }

        return true;
    }
}

应该可以,用 PHP 5.3.27 测试过,PHP 5.4.X 有一些序列化问题。

希望这可以帮助。

于 2015-03-12T21:29:42.617 回答