This error occurs when I try to upload a bad file which does not match with the image assert. Only image are accepted.
user entity :
<?php
namespace TestBackBundleEntity;
use DoctrineORMMapping as ORM;
use SymfonyComponentSecurityCoreUserUserInterface;
use SymfonyComponentValidatorConstraints as Assert;
use SymfonyComponentHttpFoundationFileUploadedFile;
use SymfonyBridgeDoctrineValidatorConstraintsUniqueEntity;
/**
* User
*
* @ORMTable(name="user")
* @ORMEntity
* @UniqueEntity(
* fields={"email"},
* message="This email already exists."
* )
*/
class User implements UserInterface
{
/**
* @var integer
*
* @ORMColumn(name="id", type="integer")
* @ORMId
* @ORMGeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORMColumn(name="lastName", type="string", length=255)
* @AssertNotBlank()
*/
private $lastName;
/**
* @var string
*
* @ORMColumn(name="firstName", type="string", length=255)
* @AssertNotBlank()
*/
private $firstName;
/**
* @var string
*
* @ORMColumn(name="job", type="string", length=255, nullable=true)
*/
private $job;
/**
* @var string
*
* @ORMColumn(name="email", type="string", length=255, unique=true)
* @AssertEmail()
*/
private $email;
/**
* @var string
*
* @ORMColumn(name="password", type="string", length=255)
* @AssertNotBlank()
*/
private $password;
/**
* @var string
*
* @ORMColumn(name="salt", type="string", length=255)
*/
private $salt;
/**
* @var array
*
* @ORMColumn(name="roles", type="array")
* @AssertNotBlank()
*/
private $roles;
/**
* @var boolean
*
* @ORMColumn(name="isActive", type="boolean")
*/
private $isActive;
/**
* @var string
*
* @ORMColumn(name="avatar", type="string", length=255, nullable=true)
*/
private $path;
/**
* @var string
*
* @AssertImage()
*/
public $file;
public function __construct()
{
$this->isActive = true;
$this->salt = md5(uniqid(null, true));
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set lastName
*
* @param string $lastName
* @return User
*/
public function setLastName($lastName)
{
$this->lastName = $lastName;
return $this;
}
/**
* Get lastName
*
* @return string
*/
public function getLastName()
{
return $this->lastName;
}
/**
* Set firstName
*
* @param string $firstName
* @return User
*/
public function setFirstName($firstName)
{
$this->firstName = $firstName;
return $this;
}
/**
* Get firstName
*
* @return string
*/
public function getFirstName()
{
return $this->firstName;
}
/**
* Set job
*
* @param string $job
* @return User
*/
public function setJob($job)
{
$this->job = $job;
return $this;
}
/**
* Get job
*
* @return string
*/
public function getJob()
{
return $this->job;
}
/**
* Set email
*
* @param string $email
* @return User
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set password
*
* @param string $password
* @return User
*/
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 User
*/
public function setSalt($salt)
{
$this->salt = $salt;
return $this;
}
/**
* Get salt
*
* @return string
*/
public function getSalt()
{
return $this->salt;
}
/**
* Set role
*
* @param array $role
* @throws InvalidArgumentException
* @return User
*/
public function setRoles($role)
{
if(array_diff($role, array("ROLE_SUPER_ADMIN", "ROLE_ADMIN", "ROLE_CUSTOMER"))) {
throw new InvalidArgumentException("Bad role");
}
$this->roles = $role;
return $this;
}
/**
* Get role
*
* @return array
*/
public function getRoles()
{
return $this->roles;
}
/**
* Set isActive
*
* @param boolean $isActive
* @return User
*/
public function setIsActive($isActive)
{
$this->isActive = $isActive;
return $this;
}
/**
* Get isActive
*
* @return boolean
*/
public function getIsActive()
{
return $this->isActive;
}
/**
* @inheritDoc
*/
public function eraseCredentials()
{
}
/**
* Set username
*
* @param string $email
*
* @return string
*/
public function setUsername($email)
{
$this->email = $email;
return $this;
}
/**
* Get username
*
* @return string
*/
public function getUsername()
{
return $this->email;
}
public function getAbsolutePath()
{
return null === $this->path ? null : $this->getUploadRootDir().'/'.$this->path;
}
public function getWebPath()
{
return null === $this->path ? null : $this->getUploadDir().'/'.$this->path;
}
protected function getUploadRootDir()
{
return __DIR__.'/../../../../web/'.$this->getUploadDir();
}
protected function getUploadDir()
{
return 'uploads/img';
}
public function upload()
{
if (null === $this->file) {
return;
} else {
$this->path = $this->firstName.'_'.$this->lastName.'_'.sha1(uniqid(mt_rand(), true)).'.'.$this->file->guessExtension();
}
$this->file->move($this->getUploadRootDir(), $this->path);
$this->file = null;
}
public function getPath()
{
return $this->getWebPath();
}
}
userType:
$builder
->add('firstName', 'text', array(
'required' => true
))
->add('lastName', 'text', array(
'required' => true
))
->add('email', 'email', array(
'required' => true
))
->add('job', 'text', array(
'required' => false
))
->add('file', 'file', array(
'label' => false,
'required' => false,
))
;
controller :
public function updateMyAccountAction($id, Request $request)
{
$entityManager = $this->get('doctrine')->getManager();
$user = $this->get('doctrine')
->getRepository('TestBackBundle:User')
->find($id);
if (!$user) {
throw $this->createNotFoundException('Unable to find User entity.');
}
$editForm = $this->createForm(new UserType(), $user);
$editForm->handleRequest($request);
if ($editForm->isValid()) {
$user->upload();
$entityManager->persist($user);
$entityManager->flush();
$this->get('session')->getFlashBag()->add('success', 'Your profile has been updated');
return $this->redirect($this->generateUrl('my_account', array('id' => $id)));
} else {
$this->get('session')->getFlashBag()->add('error', 'Erreur');
return $this->redirect($this->generateUrl('my_account', array('id' => $id)));
}
}
When I try to test if the image assert works updating for example a pdf file, this error occurs. The file is not updated so it is good. But my flash bag and redirection in my controller don't work... if I write var_dump("test")
in the else in my controller "test"
is displayed and the error too so Symfony detects that the form is not valid.
This is a part of the Stack Trace when error occurs :
in
/home/user/www/sf2/vendor/symfony/symfony/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php
at line 155
152. $this->roles,
153. $this->attributes
154. )
155. );
}
/**
at serialize (array(object(User), true, array(object(Role)), array()))
in
/home/kevin/www/sf2/vendor/symfony/symfony/src/Symfony/Component/Security/Core/Authentication/Token/AbstractToken.php
at line 155
Reading it, I feel that there is a problem with the roles attribute to serialize it because it is an array (we have to declare this attribute as an array implementing UserInterface
)
So why this error occurs ?
See Question&Answers more detail:
os