- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Symfony2 中遇到登录和身份验证的问题。异常(exception)是“$user 必须是 UserInterface 的实例、实现 __toString 方法的对象或原始字符串。”
调试我的代码我可以注意到我尝试登录我的应用程序的用户可以成功通过身份验证 (app/log/dev.log) 但凭据 var 为空:
AbstractToken 中的用户变量具有来自数据库的用户数据。
我继续在 ContextListener->refreshUser 函数中调试,我得到这些值:
一切都具有 null 值并且在 Symfony\Bridge\Doctrine\Security\User\EntityUserProvider->refreshUser 函数上返回变量 $refreshedUser 为 null,因此当 ContextListener 类上的函数 $token->setUser($refreshedUser) 失败并且抛出异常。
我写下我的 security.yml 和我正在使用的实体:
安全.yml:
security:
encoders:
Pladuch\BackBundle\Entity\BaseUser:
algorithm: sha512
encode_as_base64: false
iterations: 1
providers:
sga:
entity: { class: 'PladuchBackBundle:Usuario', property: username }
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
sga:
pattern: ^/gestion
anonymous: ~
form_login:
login_path: pladuch_login_sga
check_path: pladuch_login_check
default_target_path: pladuch_sga_index
csrf_provider: form.csrf_provider
provider: sga
logout:
path: pladuch_logout_sga
target: pladuch_login_sga
access_control:
- { path: ^/gestion/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/gestion, roles: ROLE_ADMIN }
<?php
namespace Pladuch\BackBundle\Entity;
use Symfony\Component\Security\Core\User\AdvancedUserInterface;
abstract class BaseUser implements AdvancedUserInterface, \Serializable
{
protected $id;
protected $salt;
protected $username;
protected $password;
public function __construct()
{
$this->isActive = true;
$this->salt = $this->generateSalt();
}
public function serialize()
{
return serialize(array($this->id, $this->username, $this->password));
}
public function unserialize($serialized)
{
list($this->id, $this->username, $this->password) = unserialize($serialized);
}
public function getRoles()
{
return array('ROLE_ADMIN');
}
public function getPassword()
{
return $this->password;
}
public function setPassword($password)
{
$this->password = $password;
}
public function getUsername()
{
return $this->username;
}
public function eraseCredentials()
{
}
public function setSalt($salt)
{
$this->salt = $salt;
return $this;
}
public function getSalt()
{
return $this->salt;
}
public function generateSalt()
{
return base_convert(sha1(uniqid(mt_rand(), true)), 16, 36);
}
public function isAccountNonExpired()
{
return true;
}
public function isAccountNonLocked()
{
return true;
}
public function isCredentialsNonExpired()
{
return true;
}
public function isEnabled()
{
return true;
}
}
<?php
namespace Pladuch\BackBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Usuario
*
* @ORM\Table(name="usuario",
* uniqueConstraints={
* @ORM\UniqueConstraint(name="username", columns={"username"})
* },
* indexes={@ORM\Index(name="FK_USUARIO_ROL", columns={"rol_id"})})
* @ORM\Entity(repositoryClass="Pladuch\BackBundle\Repository\UsuarioRepository")
*/
class Usuario extends BaseUser
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id()
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* @var string
*
* @ORM\Column(name="username", type="string", length=255, nullable=false)
*/
protected $username;
/**
* @var string
*
* @ORM\Column(name="password", type="string", length=1024, nullable=false)
*/
protected $password;
/**
* @var string
*
* @ORM\Column(name="salt", type="string", length=1024, nullable=false)
*/
protected $salt;
/**
* @var string
*
* @ORM\Column(name="email", type="string", length=255, nullable=false)
*/
protected $email;
/**
* @var Rol
*
* @ORM\ManyToOne(targetEntity="Rol", inversedBy="id")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="rol_id", referencedColumnName="id")
* })
*/
protected $rol;
/**
* @var bool
*
* @ORM\Column(name="activo", type="boolean", nullable=true)
*/
protected $activo = true;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set username
*
* @param string $username
* @return Usuario
*/
public function setUsername($username)
{
$this->username = $username;
return $this;
}
/**
* Get username
*
* @return string
*/
public function getUsername()
{
return $this->username;
}
/**
* Set password
*
* @param string $password
* @return Usuario
*/
public function setPassword($password)
{
$this->password = $password;
return $this;
}
/**
* Get password
*
* @return string
*/
public function getPassword()
{
return $this->password;
}
/**
* Set salt
*
* @param string $salt
* @return Usuario
*/
public function setSalt($salt)
{
$this->salt = $salt;
return $this;
}
/**
* Get salt
*
* @return string
*/
public function getSalt()
{
return $this->salt;
}
/**
* Set email
*
* @param string $email
* @return Usuario
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set rol
*
* @param Rol $rol
* @return Usuario
*/
public function setRol(Rol $rol = null)
{
$this->rol = $rol;
return $this;
}
/**
* Get rol
*
* @return Rol
*/
public function getRol()
{
return $this->rol;
}
/**
* @return array|\Symfony\Component\Security\Core\Role\Role[]
*/
public function getRoles()
{
return array($this->getRol()->getRol());
}
/**
* Set activo
*
* @param $activo
* @return $this
*/
public function setActivo($activo)
{
$this->activo = $activo;
return $this;
}
/**
* Get activo
*
* @return bool
*/
public function getActivo()
{
return $this->activo;
}
}
class UsuarioRepository extends EntityRepository implements UserProviderInterface
{
public function loadUserByUsername($username)
{
$q = $this->createQueryBuilder('u')
->where('u.username = :username')
->setParameter('username', $username)
->getQuery();
try {
$user = $q->getSingleResult();
} catch (NoResultException $e) {
$message = sprintf('Unable to find an active Usuario object identified by %s', $username);
throw new UsernameNotFoundException($message, 0, $e);
}
return $user;
}
public function refreshUser(UserInterface $userInterface)
{
$class = get_class($userInterface);
if (! $this->supportsClass($class)) {
throw new UnsupportedUserException(sprintf('Instances of %s are not suppoted', $class));
}
}
public function supportsClass($class)
{
return $this->getEntityName() === $class || is_subclass_of($class, $this->getEntityName());
}
}
最佳答案
好吧,我忘了在我的存储库中的 refreshUser 函数上添加返回语句...
return $this->find($userInterface->getId());
return $userInterface;
关于Symfony2 $user 必须是 UserInterface 的一个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27196221/
我正在使用 Symfony 2.1 制作一个客户案例管理系统,我偶然发现了这个我无法解决的奇怪问题。由于某种原因,当我使用 CustomerCaseController 执行 showAction 时
我注意到在 FOSUserBundle Controllers ( ProfileController) 中检查 $user 是否是 UserInteface 的实例 $user = $this->g
Symfony 实现 - 自定义表单密码验证器 http://symfony.com/doc/current/cookbook/security/custom_password_authenticat
我在 Symfony2 中遇到登录和身份验证的问题。异常(exception)是“$user 必须是 UserInterface 的实例、实现 __toString 方法的对象或原始字符串。” 调试我
我有 25 tabs在 UITabBarController每个选项卡显示 tableview用不同的数据。我可以使用相同的tableview在所有选项卡中都有不同的数据。底部显示 4 个选项卡,剩余
我最近开始为我的 Symfony2 项目设置安全性。我选择使用盐用 sha256 进行编码。当我尝试使用数据库中的示例帐户(使用自计算的 sha256 salt/hash)登录时,它一直失败而没有给我
我实际上是在尝试创建一个与我的数据库相匹配的登录表单。 表单运行良好,但我在使用 UserRepository 时遇到问题。 Symfony 给我以下错误: The user provider mus
我想 eraseCredentials是为了注销?如果是这样,我如何从 Doctrine 实体清除 session ? 最佳答案 不,eraseCredentials()用于在持久化 token 之前
我正在寻找类似Pharo 的UIPainter (VW) 工具。我看到 Glamour 中有一些示例,但我无法将 Glamour 应用到 Pharo2.0 图像上。如果我能得到一些建议,那就太好了。
我一直在阅读 Udi Dahan 关于 [命令查询分离和 SOA][1] 的文章。考虑如何在我目前正在处理的系统中实际使用它提出了一些问题...... 1. 考虑以下情况,我有一个允许用户编辑条目列表
我用过createTemplateFromFile过去很多次。它允许我使用包含方法,以便可以将 CSS 和 JavaScript 分解为不同的文件。但今天我似乎无法让它工作。下面是我绑定(bind)到
从UserInterface类 interface UserInterface { /** * The equality comparison should neither be d
当我将 UserInterface 添加到我的事件监听器时,出现以下错误: Cannot autowire service "App\EventListener\ControllerListener"
我已经以用户模式安装了应用程序,但没有获得 root 权限。因此一些 android.permissions 像写权限被忽略并且没有被设置。能够从 packages.xml 以及命令“adb shel
我有一个使用 OAuth2 执行的 Facebook 登录,然后我使用 Laravel 4 的内置身份验证系统在重新访问时重新登录用户。对于大多数用户,我认为我所拥有的没有任何问题,但对于一位用户,他
我是一名优秀的程序员,十分优秀!