X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FEntity%2FPerson.php;h=62cb46b3a446ccb2cf0648191b7107faeada4fa7;hb=3d47ccc80097bec1a6890e103357d7c7cf0cff87;hp=701b9e63cc6a550591be4a919a690e2b3193eb2a;hpb=dec6d0310680edbf06e4564590d6e4a3ffde8a6e;p=Project_proches_de_moi-server.git diff --git a/src/Entity/Person.php b/src/Entity/Person.php index 701b9e6..62cb46b 100644 --- a/src/Entity/Person.php +++ b/src/Entity/Person.php @@ -3,11 +3,13 @@ namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; +use JMS\Serializer\Annotation as Serializer; /** * @ORM\Entity() * @ORM\Table(name="Person", indexes={@ORM\Index(name="authentification_idx", columns={"email", "password"}), - * @ORM\Index(name="search_idx", columns={"firstname", "lastname"})}); + * @ORM\Index(name="search_idx", columns={"firstname", "lastname", "email"})}); + * @Serializer\ExclusionPolicy("all") */ class Person { @@ -15,21 +17,25 @@ class Person * @ORM\Id * @ORM\Column(type="bigint") * @ORM\GeneratedValue(strategy="AUTO") + * @Serializer\Expose */ protected $id; /** * @ORM\Column(type="string") + * @Serializer\Expose */ protected $firstname; /** * @ORM\Column(type="string") + * @Serializer\Expose */ protected $lastname; /** * @ORM\Column(type="string", unique=true) + * @Serializer\Expose */ protected $email; @@ -40,18 +46,19 @@ class Person /** * @ORM\Column(type="boolean", options={"default":false}) + * @Serializer\Expose */ protected $online; /** * One person have many friends - * @ORM\OneToMany(targetEntity="App\Entity\Friendship", mappedBy="person", cascade={"all"}) + * @ORM\OneToMany(targetEntity="App\Entity\Friendship", mappedBy="person") */ protected $friends; /** * One person have many friends - * @ORM\OneToMany(targetEntity="App\Entity\Friendship", mappedBy="friend", cascade={"all"}) + * @ORM\OneToMany(targetEntity="App\Entity\Friendship", mappedBy="friend") */ protected $friends_with_me; @@ -154,7 +161,7 @@ class Person $this->friends_with_me->add($friendship); } - public function addFriend(User $friend) + public function addFriend(Person $friend) { $fs = new Friendship(); $fs->setPerson($this);