Я использую Symfony 4.4 в качестве успокоительного API без каких-либо представлений. Я хочу избежать раздражающего кода, подобного следующему:
$email = $request->get('email');
$password = $request->get('password');
$newUser = new User();
$newUser->setEmail($email)->setPassword($password));
Потому что, если у одной сущности много свойств, мне приходится тратить много времени на получение каждой переменной из свойства request-> get (' «) . Поэтому я решил попробовать использовать Symfony формы.
Но я всегда получаю эту ошибку:
Expected argument of type \"array\", \"null\" given at property path \"roles\"."
Мой пользовательский класс
<?php
namespace App\Entity;
use DateTime;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity(repositoryClass="App\Repository\UserRepository")
*/
class User implements UserInterface
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
* @Groups({"public"})
*/
private $id;
/**
* @ORM\Column(type="string", length=180, unique=true)
* @Assert\Email
* @Assert\NotBlank
* @Assert\NotNull
* @Groups({"public"})
*/
private $email;
/**
* @ORM\Column(type="json")
* @Groups({"public"})
*/
private $roles = [];
/**
* @var string The hashed password
* @ORM\Column(type="string")
* @Assert\Type("string")
* @Assert\NotBlank
* @Assert\NotNull
*/
private $password;
/**
* @ORM\Column(type="datetime")
* @Groups({"public"})
*/
private $createdAt;
/**
* @ORM\Column(type="datetime")
* @Groups({"public"})
*/
private $updatedAt;
/**
* @ORM\OneToMany(targetEntity="App\Entity\Log", mappedBy="user")
*/
private $logs;
/**
* User constructor.
*/
public function __construct()
{
$this->createdAt = new DateTime();
$this->updatedAt = new DateTime();
$this->logs = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = strtolower($email);
return $this;
}
/**
* A visual identifier that represents this user.
*
* @see UserInterface
*/
public function getUsername(): string
{
return (string) $this->email;
}
/**
* @see UserInterface
*/
public function getRoles(): array
{
$roles = $this->roles;
// guarantee every user at least has ROLE_USER
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function setRoles(array $roles): self
{
$this->roles = $roles;
return $this;
}
/**
* @see UserInterface
*/
public function getPassword(): string
{
return (string) $this->password;
}
public function setPassword(string $password): self
{
$this->password = $password;
$this->updatedAt = new DateTime(); // updates the updatedAt field
return $this;
}
/**
* @see UserInterface
*/
public function getSalt()
{
// not needed when using the "bcrypt" algorithm in security.yaml
}
/**
* @see UserInterface
*/
public function eraseCredentials()
{
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;
}
/**
* Get the value of createdAt
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* Set the value of createdAt
*
* @return self
*/
public function setCreatedAt($createdAt)
{
$this->createdAt = $createdAt;
return $this;
}
public function getUpdatedAt(): ?\DateTimeInterface
{
return $this->updatedAt;
}
public function setUpdatedAt(\DateTimeInterface $updatedAt): self
{
$this->updatedAt = $updatedAt;
return $this;
}
/**
* @return Collection|Log[]
*/
public function getLogs(): Collection
{
return $this->logs;
}
public function addLog(Log $log): self
{
if (!$this->logs->contains($log)) {
$this->logs[] = $log;
$log->setUser($this);
}
return $this;
}
public function removeLog(Log $log): self
{
if ($this->logs->contains($log)) {
$this->logs->removeElement($log);
// set the owning side to null (unless already changed)
if ($log->getUser() === $this) {
$log->setUser(null);
}
}
return $this;
}
}
форму, которую я создал просто используя makerbundle
class UserType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options):void
{
$builder
->add('email')
->add('roles')
->add('password')
->add('createdAt')
->add('updatedAt')
;
}
public function configureOptions(OptionsResolver $resolver):void
{
$resolver->setDefaults([
'data_class' => User::class,
]);
}
И мой контроллер
public function postUsersAction(Request $request): View
{
$data = json_decode($request->getContent(), true);
$user = new User();
$form = $this->createForm(UserType::class);
$form->handleRequest($request);
$form->submit($data);
return $this->view(['message' => $form->isValid()], Response::HTTP_OK); // for testing purposes
Данные, которые я отправляю через почтальона, выглядят примерно так:
email=duuuu@gmail.com&password=1234