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 $pseudonym;
+ private ?string $city;
/**
- * @var string
+ * @var ?string
*/
- protected $phone;
+ private ?string $phone;
/**
- * @var string
+ * @var Country
*/
- protected $slug;
+ private ?Country $country;
/**
- * @var ArrayCollection
+ * @var ?string
*/
- private $applications;
+ private ?string $pseudonym;
/**
- * @var ArrayCollection
+ * @var ?string
*/
- private $dances;
+ private ?string $zipcode;
/**
- * @var ArrayCollection
+ * @var \Doctrine\Common\Collections\Collection
*/
- private $locations;
+ private Collection $applications;
/**
- * @var ArrayCollection
+ * @var \Doctrine\Common\Collections\Collection
*/
- private $snippets;
+ private Collection $dances;
/**
- * @var ArrayCollection
+ * @var \Doctrine\Common\Collections\Collection
*/
- private $subscribers;
+ private Collection $locations;
/**
- * @var ArrayCollection
+ * @var \Doctrine\Common\Collections\Collection
*/
- private $subscriptions;
+ private Collection $snippets;
+
+ /**
+ * @var \Doctrine\Common\Collections\Collection
+ */
+ private Collection $subscribers;
+
+ /**
+ * @var \Doctrine\Common\Collections\Collection
+ */
+ private Collection $subscriptions;
+
+ /**
+ * @var \Doctrine\Common\Collections\Collection
+ */
+ private Collection $googleTokens;
/**
* Constructor
parent::__construct($mail);
//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();
$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;
}
/**
}
/**
- * Set slug
+ * Set pseudonym
+ *
+ * @param string $pseudonym
+ *
+ * @return User
+ */
+ public function setPseudonym(?string $pseudonym): User {
+ $this->pseudonym = $pseudonym;
+
+ return $this;
+ }
+
+ /**
+ * Get pseudonym
*
- * @param string $slug
+ * @return string
+ */
+ public function getPseudonym(): ?string {
+ return $this->pseudonym;
+ }
+
+ /**
+ * Set zipcode
+ *
+ * @param string $zipcode
*
* @return User
*/
- public function setSlug(?string $slug): User {
- $this->slug = $slug;
+ public function setZipcode(?string $zipcode): User {
+ $this->zipcode = $zipcode;
return $this;
}
/**
- * Get slug
+ * Get zipcode
*
* @return string
*/
- public function getSlug(): ?string {
- return $this->slug;
+ public function getZipcode(): ?string {
+ return $this->zipcode;
}
/**
/**
* Get applications
*
- * @return ArrayCollection
+ * @return \Doctrine\Common\Collections\Collection
*/
- public function getApplications(): ArrayCollection {
+ public function getApplications(): Collection {
return $this->applications;
}
/**
* Get dances
*
- * @return ArrayCollection
+ * @return \Doctrine\Common\Collections\Collection
*/
- public function getDances(): ArrayCollection {
+ public function getDances(): Collection {
return $this->dances;
}
/**
* Get locations
*
- * @return ArrayCollection
+ * @return \Doctrine\Common\Collections\Collection
*/
- public function getLocations(): ArrayCollection {
+ public function getLocations(): Collection {
return $this->locations;
}
/**
* Get snippets
*
- * @return ArrayCollection
+ * @return \Doctrine\Common\Collections\Collection
*/
- public function getSnippets(): ArrayCollection {
+ public function getSnippets(): Collection {
return $this->snippets;
}
* @return User
*/
public function addSubscriber(User $subscriber): User {
+ //Add from owning side
+ $subscriber->addSubscription($this);
+
$this->subscribers[] = $subscriber;
return $this;
* @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;
}
/**
* 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;
+ }
}