src/Entity/User.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Timestampable\Traits\TimestampableEntity;
  8. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  9. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. /**
  12.  * @ORM\Entity(repositoryClass=UserRepository::class)
  13.  * @ORM\Table(name="`user`")
  14.  * @UniqueEntity(fields={"email"}, message="There is already an account with this email")
  15.  */
  16. class User implements UserInterfacePasswordAuthenticatedUserInterface
  17. {
  18.     use TimestampableEntity;
  19.     /**
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private ?int $id null;
  25.     /**
  26.      * @ORM\Column(type="string", length=180, unique=true)
  27.      */
  28.     private ?string $email;
  29.     /**
  30.      * @ORM\Column(type="json")
  31.      */
  32.     private array $roles = [];
  33.     /**
  34.      * @ORM\Column(type="string")
  35.      */
  36.     private ?string $password;
  37.     /**
  38.      * @ORM\Column(type="boolean")
  39.      */
  40.     private bool $isEnabled false;
  41.     /**
  42.      * @ORM\Column(type="boolean")
  43.      */
  44.     private bool $isVerified false;
  45.     /**
  46.      * @ORM\OneToMany(targetEntity="App\Entity\StaticReport", mappedBy="user")
  47.      */
  48.     private Collection $staticReports;
  49.     /**
  50.      * @ORM\OneToMany(targetEntity="App\Entity\DynamicReportGoogleAnalytics", mappedBy="user")
  51.      */
  52.     private Collection $dynamicReportsGoogle;
  53.     /**
  54.      * @ORM\OneToMany(targetEntity="App\Entity\AdsFacebookCampaignStaticReport", mappedBy="user")
  55.      */
  56.     private Collection $adsFacebookCampaignStaticReports;
  57.     /**
  58.      * @ORM\OneToMany(targetEntity="App\Entity\GoogleAccount", mappedBy="user")
  59.      */
  60.     private Collection $googleAccounts;
  61.     /**
  62.      * @ORM\OneToMany(targetEntity="App\Entity\FacebookAccount", mappedBy="user")
  63.      */
  64.     private Collection $facebookAccounts;
  65.     /**
  66.      * @ORM\ManyToOne(targetEntity="App\Entity\GoogleAccount")
  67.      * @ORM\JoinColumn(name="google_oauth_id", referencedColumnName="id")
  68.      */
  69.     private ?GoogleAccount $googleOAuthAccount null;
  70.     /**
  71.      * @ORM\OneToOne(targetEntity="App\Entity\Subscription", mappedBy="user")
  72.      */
  73.     private ?Subscription $subscription null;
  74.     private ?string $plainPassword null;
  75.     /**
  76.      * @ORM\Column(type="string", nullable=true)
  77.      */
  78.     private ?string $name null;
  79.     /**
  80.      * @ORM\Column(type="string", nullable=true)
  81.      */
  82.     private ?string $surname null;
  83.     /**
  84.      * @ORM\Column(type="string", nullable=true)
  85.      */
  86.     private ?string $phone null;
  87.     /**
  88.      * @ORM\Column(type="string", nullable=true)
  89.      */
  90.     private ?string $trackingId null;
  91.     public function __construct()
  92.     {
  93.         $this->staticReports = new ArrayCollection();
  94.         $this->dynamicReportsGoogle = new ArrayCollection();
  95.         $this->trackingId uniqid();
  96.     }
  97.     public function getId(): ?int
  98.     {
  99.         return $this->id;
  100.     }
  101.     public function getEmail(): ?string
  102.     {
  103.         return $this->email;
  104.     }
  105.     /**
  106.      * @return $this
  107.      */
  108.     public function setEmail(string $email): self
  109.     {
  110.         $this->email $email;
  111.         return $this;
  112.     }
  113.     /**
  114.      * @see UserInterface
  115.      */
  116.     public function getUserIdentifier(): string
  117.     {
  118.         return (string) $this->email;
  119.     }
  120.     /**
  121.      * @deprecated since Symfony 5.3, use getUserIdentifier instead
  122.      */
  123.     public function getUsername(): string
  124.     {
  125.         return (string) $this->email;
  126.     }
  127.     /**
  128.      * @see UserInterface
  129.      */
  130.     public function getRoles(): array
  131.     {
  132.         $roles $this->roles;
  133.         // guarantee every user at least has ROLE_USER
  134.         $roles[] = 'ROLE_USER';
  135.         return array_unique($roles);
  136.     }
  137.     public function hasRole(string $role): bool
  138.     {
  139.         return in_array($role$this->roles);
  140.     }
  141.     public function setRoles(array $roles): self
  142.     {
  143.         $this->roles $roles;
  144.         return $this;
  145.     }
  146.     /**
  147.      * @see PasswordAuthenticatedUserInterface
  148.      */
  149.     public function getPassword(): string
  150.     {
  151.         return $this->password;
  152.     }
  153.     /**
  154.      * @return $this
  155.      */
  156.     public function setPassword(string $password): self
  157.     {
  158.         $this->password $password;
  159.         return $this;
  160.     }
  161.     /**
  162.      * @see UserInterface
  163.      */
  164.     public function getSalt(): ?string
  165.     {
  166.         return null;
  167.     }
  168.     /**
  169.      * @see UserInterface
  170.      */
  171.     public function eraseCredentials()
  172.     {
  173.         $this->plainPassword null;
  174.     }
  175.     public function isVerified(): bool
  176.     {
  177.         return $this->isVerified;
  178.     }
  179.     public function setIsVerified(bool $isVerified): self
  180.     {
  181.         $this->isVerified $isVerified;
  182.         return $this;
  183.     }
  184.     public function getPlainPassword(): ?string
  185.     {
  186.         return $this->plainPassword;
  187.     }
  188.     public function setPlainPassword(?string $plainPassword): void
  189.     {
  190.         $this->plainPassword $plainPassword;
  191.     }
  192.     /**
  193.      * @return ArrayCollection|Collection
  194.      */
  195.     public function getStaticReports()
  196.     {
  197.         return $this->staticReports;
  198.     }
  199.     /**
  200.      * @param ArrayCollection|Collection $staticReports
  201.      */
  202.     public function setStaticReports($staticReports): void
  203.     {
  204.         $this->staticReports $staticReports;
  205.     }
  206.     public function getGoogleAccounts(): Collection
  207.     {
  208.         return $this->googleAccounts;
  209.     }
  210.     public function setGoogleAccounts(Collection $googleAccounts): void
  211.     {
  212.         $this->googleAccounts $googleAccounts;
  213.     }
  214.     public function getFacebookAccounts(): Collection
  215.     {
  216.         return $this->facebookAccounts;
  217.     }
  218.     public function setFacebookAccounts(Collection $facebookAccounts): void
  219.     {
  220.         $this->facebookAccounts $facebookAccounts;
  221.     }
  222.     /**
  223.      * @return ArrayCollection|Collection
  224.      */
  225.     public function getDynamicReportsGoogle()
  226.     {
  227.         return $this->dynamicReportsGoogle;
  228.     }
  229.     /**
  230.      * @param ArrayCollection|Collection $dynamicReportsGoogle
  231.      */
  232.     public function setDynamicReportsGoogle($dynamicReportsGoogle): void
  233.     {
  234.         $this->dynamicReportsGoogle $dynamicReportsGoogle;
  235.     }
  236.     public function getAdsFacebookCampaignStaticReports(): Collection
  237.     {
  238.         return $this->adsFacebookCampaignStaticReports;
  239.     }
  240.     public function setAdsFacebookCampaignStaticReports(Collection $adsFacebookCampaignStaticReports): void
  241.     {
  242.         $this->adsFacebookCampaignStaticReports $adsFacebookCampaignStaticReports;
  243.     }
  244.     public function getGoogleOAuthAccount(): ?GoogleAccount
  245.     {
  246.         return $this->googleOAuthAccount;
  247.     }
  248.     public function setGoogleOAuthAccount(GoogleAccount $googleOAuthAccount): void
  249.     {
  250.         $this->googleOAuthAccount $googleOAuthAccount;
  251.     }
  252.     public function getSubscription(): ?Subscription
  253.     {
  254.         return $this->subscription;
  255.     }
  256.     public function setSubscription(?Subscription $subscription): void
  257.     {
  258.         $this->subscription $subscription;
  259.     }
  260.     public function hasValidSubscription(): bool
  261.     {
  262.         return $this->subscription && $this->subscription->isValid();
  263.     }
  264.     public function getName(): ?string
  265.     {
  266.         return $this->name;
  267.     }
  268.     public function setName(?string $name): void
  269.     {
  270.         $this->name $name;
  271.     }
  272.     public function getSurname(): ?string
  273.     {
  274.         return $this->surname;
  275.     }
  276.     public function setSurname(?string $surname): void
  277.     {
  278.         $this->surname $surname;
  279.     }
  280.     public function getPhone(): ?string
  281.     {
  282.         return $this->phone;
  283.     }
  284.     public function setPhone(?string $phone): void
  285.     {
  286.         $this->phone $phone;
  287.     }
  288.     public function getTrackingId(): ?string
  289.     {
  290.         return $this->trackingId;
  291.     }
  292.     public function setTrackingId(?string $trackingId): void
  293.     {
  294.         $this->trackingId $trackingId;
  295.     }
  296.     public function isEnabled(): bool
  297.     {
  298.         return $this->isEnabled;
  299.     }
  300.     public function setIsEnabled(bool $isEnable): void
  301.     {
  302.         $this->isEnabled $isEnable;
  303.     }
  304.     public function __toString(): string
  305.     {
  306.         return $this->email ?? 'New User';
  307.     }
  308. }