X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/1b020b02e1d1fa56e737c8c5dbf5d7e5f48d587e..9f8c7e7014e3dfd8823926a3fc21c1fb2fe60de5:/Entity/User.php diff --git a/Entity/User.php b/Entity/User.php index 1fb9f1a..7a82144 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -1,83 +1,104 @@ + * (c) Raphaël Gertz * - * for the full copyright and license information, please view the license + * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Rapsys\AirBundle\Entity; +use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\ArrayCollection; -use Rapsys\AirBundle\Entity\Application; -use Rapsys\AirBundle\Entity\Group; -use Rapsys\AirBundle\Entity\Link; -use Rapsys\AirBundle\Entity\Snippet; +use Rapsys\UserBundle\Entity\Civility; use Rapsys\UserBundle\Entity\User as BaseUser; class User extends BaseUser { /** - * @var string + * City */ - protected $pseudonym; + private ?string $city; /** - * @var string + * Phone */ - protected $phone; + private ?string $phone; /** - * @var string + * Country */ - protected $slug; + private ?Country $country; /** - * @var ArrayCollection + * Pseudonym */ - private $applications; + private ?string $pseudonym; /** - * @var ArrayCollection + * Zipcode */ - private $dances; + private ?string $zipcode; /** - * @var ArrayCollection + * Applications collection */ - private $locations; + private Collection $applications; /** - * @var ArrayCollection + * Dances collection */ - private $snippets; + private Collection $dances; /** - * @var ArrayCollection + * Locations collection */ - private $subscribers; + private Collection $locations; /** - * @var ArrayCollection + * Snippets collection */ - private $subscriptions; + private Collection $snippets; + + /** + * Subscribers collection + */ + private Collection $subscribers; + + /** + * Subscriptions collection + */ + private Collection $subscriptions; + + /** + * Google tokens collection + */ + private Collection $googleTokens; /** * Constructor * * @param string $mail The user mail - */ - public function __construct(string $mail) { + * @param string $password The user password + * @param ?Civility $civility The user civility + * @param ?string $forename The user forename + * @param ?string $surname The user surname + * @param bool $active The user active + * @param bool $enable The user enable + */ + public function __construct(protected string $mail, protected string $password, protected ?Civility $civility = null, protected ?string $forename = null, protected ?string $surname = null, protected bool $active = false, protected bool $enable = true) { //Call parent constructor - parent::__construct($mail); + parent::__construct($this->mail, $this->password, $this->civility, $this->forename, $this->surname, $this->active, $this->enable); //Set defaults - $this->pseudonym = null; + $this->city = null; + $this->country = null; $this->phone = null; - $this->slug = null; + $this->pseudonym = null; + $this->zipcode = null; //Set collections $this->applications = new ArrayCollection(); @@ -86,28 +107,51 @@ class User extends BaseUser { $this->snippets = new ArrayCollection(); $this->subscribers = new ArrayCollection(); $this->subscriptions = new ArrayCollection(); + $this->googleTokens = new ArrayCollection(); } /** - * Set pseudonym + * Set city * - * @param string $pseudonym + * @param string $city * * @return User */ - public function setPseudonym(?string $pseudonym): User { - $this->pseudonym = $pseudonym; + public function setCity(?string $city): User { + $this->city = $city; return $this; } /** - * Get pseudonym + * Get city * * @return string */ - public function getPseudonym(): ?string { - return $this->pseudonym; + public function getCity(): ?string { + return $this->city; + } + + /** + * Set country + * + * @param Country $country + * + * @return User + */ + public function setCountry(?Country $country): User { + $this->country = $country; + + return $this; + } + + /** + * Get country + * + * @return Country + */ + public function getCountry(): ?Country { + return $this->country; } /** @@ -133,87 +177,78 @@ class User extends BaseUser { } /** - * Set slug + * Set pseudonym * - * @param string $slug + * @param string $pseudonym * * @return User */ - public function setSlug(?string $slug): User { - $this->slug = $slug; + public function setPseudonym(?string $pseudonym): User { + $this->pseudonym = $pseudonym; return $this; } /** - * Get slug + * Get pseudonym * * @return string */ - public function getSlug(): ?string { - return $this->slug; + public function getPseudonym(): ?string { + return $this->pseudonym; } /** - * Add application + * Set zipcode * - * @param Application $application + * @param string $zipcode * * @return User */ - public function addApplication(Application $application): User { - $this->applications[] = $application; + public function setZipcode(?string $zipcode): User { + $this->zipcode = $zipcode; return $this; } /** - * Remove application - * - * @param Application $application - */ - public function removeApplication(Application $application): bool { - return $this->applications->removeElement($application); - } - - /** - * Get applications + * Get zipcode * - * @return ArrayCollection + * @return string */ - public function getApplications(): ArrayCollection { - return $this->applications; + public function getZipcode(): ?string { + return $this->zipcode; } /** - * Add snippet + * Add application * - * @param Snippet $snippet + * @param Application $application * * @return User */ - public function addSnippet(Snippet $snippet): User { - $this->snippets[] = $snippet; + public function addApplication(Application $application): User { + $this->applications[] = $application; return $this; } /** - * Remove snippet + * Remove application * - * @param Snippet $snippet + * @param Application $application */ - public function removeSnippet(Snippet $snippet): bool { - return $this->snippets->removeElement($snippet); + public function removeApplication(Application $application): bool { + return $this->applications->removeElement($application); } /** - * Get snippets + * Get applications * - * @return ArrayCollection + * @return \Doctrine\Common\Collections\Collection */ - public function getSnippets(): ArrayCollection { - return $this->snippets; + public function getApplications(): Collection { + return $this->applications; } /** @@ -243,9 +278,9 @@ class User extends BaseUser { /** * Get dances * - * @return ArrayCollection + * @return \Doctrine\Common\Collections\Collection */ - public function getDances(): ArrayCollection { + public function getDances(): Collection { return $this->dances; } @@ -274,12 +309,43 @@ class User extends BaseUser { /** * Get locations * - * @return ArrayCollection + * @return \Doctrine\Common\Collections\Collection */ - public function getLocations(): ArrayCollection { + public function getLocations(): Collection { return $this->locations; } + /** + * Add snippet + * + * @param Snippet $snippet + * + * @return User + */ + public function addSnippet(Snippet $snippet): User { + $this->snippets[] = $snippet; + + return $this; + } + + /** + * Remove snippet + * + * @param Snippet $snippet + */ + public function removeSnippet(Snippet $snippet): bool { + return $this->snippets->removeElement($snippet); + } + + /** + * Get snippets + * + * @return \Doctrine\Common\Collections\Collection + */ + public function getSnippets(): Collection { + return $this->snippets; + } + /** * Add subscriber * @@ -288,6 +354,9 @@ class User extends BaseUser { * @return User */ public function addSubscriber(User $subscriber): User { + //Add from owning side + $subscriber->addSubscription($this); + $this->subscribers[] = $subscriber; return $this; @@ -299,15 +368,22 @@ class User extends BaseUser { * @param User $subscriber */ public function removeSubscriber(User $subscriber): bool { + if (!$this->subscriptions->contains($subscriber)) { + return true; + } + + //Remove from owning side + $subscriber->removeSubscription($this); + return $this->subscribers->removeElement($subscriber); } /** * Get subscribers * - * @return ArrayCollection + * @return \Doctrine\Common\Collections\Collection */ - public function getSubscribers(): ArrayCollection { + public function getSubscribers(): Collection { return $this->subscribers; } @@ -336,9 +412,40 @@ class User extends BaseUser { /** * Get subscriptions * - * @return ArrayCollection + * @return \Doctrine\Common\Collections\Collection */ - public function getSubscriptions(): ArrayCollection { + public function getSubscriptions(): Collection { return $this->subscriptions; } + + /** + * Add google token + * + * @param GoogleToken $googleToken + * + * @return User + */ + public function addGoogleToken(GoogleToken $googleToken): User { + $this->googleTokens[] = $googleToken; + + return $this; + } + + /** + * Remove google token + * + * @param GoogleToken $googleToken + */ + public function removeGoogleToken(GoogleToken $googleToken): bool { + return $this->googleTokens->removeElement($googleToken); + } + + /** + * Get googleTokens + * + * @return \Doctrine\Common\Collections\Collection + */ + public function getGoogleTokens(): Collection { + return $this->googleTokens; + } }