]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Entity/User.php
Strict types
[airbundle] / Entity / User.php
index 8a416011b9daf79357bfcedfeed2b0da04fa67da..387b1964e33963ef4356d1d838add7238ce3890e 100644 (file)
 
 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\User as BaseUser;
 
 class User extends BaseUser {
        /**
-        * @var string
+        * @var ?string
         */
-       protected $donate;
+       private ?string $city;
 
        /**
-        * @var string
+        * @var ?string
         */
-       protected $link;
+       private ?string $phone;
 
        /**
-        * @var string
+        * @var Country
         */
-       protected $phone;
+       private ?Country $country;
 
        /**
-        * @var string
+        * @var ?string
         */
-       protected $profile;
+       private ?string $pseudonym;
 
        /**
-        * @var ArrayCollection
+        * @var ?string
         */
-       private $applications;
+       private ?string $zipcode;
 
        /**
-        * @var ArrayCollection
+        * @var \Doctrine\Common\Collections\Collection
         */
-       private $dances;
+       private Collection $applications;
 
        /**
-        * @var ArrayCollection
+        * @var \Doctrine\Common\Collections\Collection
         */
-       private $locations;
+       private Collection $dances;
 
        /**
-        * @var ArrayCollection
+        * @var \Doctrine\Common\Collections\Collection
         */
-       private $snippets;
+       private Collection $locations;
 
        /**
-        * @var ArrayCollection
+        * @var \Doctrine\Common\Collections\Collection
         */
-       private $subscribers;
+       private Collection $snippets;
 
        /**
-        * @var ArrayCollection
+        * @var \Doctrine\Common\Collections\Collection
         */
-       private $subscriptions;
+       private Collection $subscribers;
+
+       /**
+        * @var \Doctrine\Common\Collections\Collection
+        */
+       private Collection $subscriptions;
+
+       /**
+        * @var \Doctrine\Common\Collections\Collection
+        */
+       private Collection $googleTokens;
 
        /**
         * Constructor
@@ -79,6 +86,13 @@ class User extends BaseUser {
                //Call parent constructor
                parent::__construct($mail);
 
+               //Set defaults
+               $this->city = null;
+               $this->country = null;
+               $this->phone = null;
+               $this->pseudonym = null;
+               $this->zipcode = null;
+
                //Set collections
                $this->applications = new ArrayCollection();
                $this->dances = new ArrayCollection();
@@ -86,50 +100,51 @@ class User extends BaseUser {
                $this->snippets = new ArrayCollection();
                $this->subscribers = new ArrayCollection();
                $this->subscriptions = new ArrayCollection();
+               $this->googleTokens = new ArrayCollection();
        }
 
        /**
-        * Set donate
+        * Set city
         *
-        * @param string $donate
+        * @param string $city
         *
         * @return User
         */
-       public function setDonate(?string $donate): User {
-               $this->donate = $donate;
+       public function setCity(?string $city): User {
+               $this->city = $city;
 
                return $this;
        }
 
        /**
-        * Get donate
+        * Get city
         *
         * @return string
         */
-       public function getDonate(): ?string {
-               return $this->donate;
+       public function getCity(): ?string {
+               return $this->city;
        }
 
        /**
-        * Set link
+        * Set country
         *
-        * @param string $link
+        * @param Country $country
         *
         * @return User
         */
-       public function setLink(?string $link): User {
-               $this->link = $link;
+       public function setCountry(?Country $country): User {
+               $this->country = $country;
 
                return $this;
        }
 
        /**
-        * Get link
+        * Get country
         *
-        * @return string
+        * @return Country
         */
-       public function getLink(): ?string {
-               return $this->link;
+       public function getCountry(): ?Country {
+               return $this->country;
        }
 
        /**
@@ -155,87 +170,78 @@ class User extends BaseUser {
        }
 
        /**
-        * Set profile
+        * Set pseudonym
         *
-        * @param string $profile
+        * @param string $pseudonym
         *
         * @return User
         */
-       public function setProfile(string $profile): User {
-               $this->profile = $profile;
+       public function setPseudonym(?string $pseudonym): User {
+               $this->pseudonym = $pseudonym;
 
                return $this;
        }
 
        /**
-        * Get profile
+        * Get pseudonym
         *
         * @return string
         */
-       public function getProfile(): ?string {
-               return $this->profile;
+       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;
        }
 
        /**
@@ -265,9 +271,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;
        }
 
@@ -296,12 +302,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
         *
@@ -327,9 +364,9 @@ class User extends BaseUser {
        /**
         * Get subscribers
         *
-        * @return ArrayCollection
+        * @return \Doctrine\Common\Collections\Collection
         */
-       public function getSubscribers(): ArrayCollection {
+       public function getSubscribers(): Collection {
                return $this->subscribers;
        }
 
@@ -341,6 +378,9 @@ class User extends BaseUser {
         * @return User
         */
        public function addSubscription(User $subscription): User {
+               //Add from owning side
+               $subscription->addSubscriber($this);
+
                $this->subscriptions[] = $subscription;
 
                return $this;
@@ -352,15 +392,53 @@ class User extends BaseUser {
         * @param User $subscription
         */
        public function removeSubscription(User $subscription): bool {
+               if (!$this->users->contains($user)) {
+                       return true;
+               }
+
+               //Remove from owning side
+               $subscription->removeSubscriber($this);
+
                return $this->subscriptions->removeElement($subscription);
        }
 
        /**
         * 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;
+       }
 }