<?php
namespace App\Entity;
use App\Repository\UserRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Timestampable\Traits\TimestampableEntity;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* @ORM\Entity(repositoryClass=UserRepository::class)
* @ORM\Table(name="`user`")
* @UniqueEntity(fields={"email"}, message="There is already an account with this email")
*/
class User implements UserInterface, PasswordAuthenticatedUserInterface
{
use TimestampableEntity;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private ?int $id = null;
/**
* @ORM\Column(type="string", length=180, unique=true)
*/
private ?string $email;
/**
* @ORM\Column(type="json")
*/
private array $roles = [];
/**
* @ORM\Column(type="string")
*/
private ?string $password;
/**
* @ORM\Column(type="boolean")
*/
private bool $isEnabled = false;
/**
* @ORM\Column(type="boolean")
*/
private bool $isVerified = false;
/**
* @ORM\OneToMany(targetEntity="App\Entity\StaticReport", mappedBy="user")
*/
private Collection $staticReports;
/**
* @ORM\OneToMany(targetEntity="App\Entity\DynamicReportGoogleAnalytics", mappedBy="user")
*/
private Collection $dynamicReportsGoogle;
/**
* @ORM\OneToMany(targetEntity="App\Entity\AdsFacebookCampaignStaticReport", mappedBy="user")
*/
private Collection $adsFacebookCampaignStaticReports;
/**
* @ORM\OneToMany(targetEntity="App\Entity\GoogleAccount", mappedBy="user")
*/
private Collection $googleAccounts;
/**
* @ORM\OneToMany(targetEntity="App\Entity\FacebookAccount", mappedBy="user")
*/
private Collection $facebookAccounts;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\GoogleAccount")
* @ORM\JoinColumn(name="google_oauth_id", referencedColumnName="id")
*/
private ?GoogleAccount $googleOAuthAccount = null;
/**
* @ORM\OneToOne(targetEntity="App\Entity\Subscription", mappedBy="user")
*/
private ?Subscription $subscription = null;
private ?string $plainPassword = null;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $name = null;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $surname = null;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $phone = null;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $trackingId = null;
public function __construct()
{
$this->staticReports = new ArrayCollection();
$this->dynamicReportsGoogle = new ArrayCollection();
$this->trackingId = uniqid();
}
public function getId(): ?int
{
return $this->id;
}
public function getEmail(): ?string
{
return $this->email;
}
/**
* @return $this
*/
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
/**
* @see UserInterface
*/
public function getUserIdentifier(): string
{
return (string) $this->email;
}
/**
* @deprecated since Symfony 5.3, use getUserIdentifier instead
*/
public function getUsername(): string
{
return (string) $this->email;
}
/**
* @see UserInterface
*/
public function getRoles(): array
{
$roles = $this->roles;
// guarantee every user at least has ROLE_USER
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function hasRole(string $role): bool
{
return in_array($role, $this->roles);
}
public function setRoles(array $roles): self
{
$this->roles = $roles;
return $this;
}
/**
* @see PasswordAuthenticatedUserInterface
*/
public function getPassword(): string
{
return $this->password;
}
/**
* @return $this
*/
public function setPassword(string $password): self
{
$this->password = $password;
return $this;
}
/**
* @see UserInterface
*/
public function getSalt(): ?string
{
return null;
}
/**
* @see UserInterface
*/
public function eraseCredentials()
{
$this->plainPassword = null;
}
public function isVerified(): bool
{
return $this->isVerified;
}
public function setIsVerified(bool $isVerified): self
{
$this->isVerified = $isVerified;
return $this;
}
public function getPlainPassword(): ?string
{
return $this->plainPassword;
}
public function setPlainPassword(?string $plainPassword): void
{
$this->plainPassword = $plainPassword;
}
/**
* @return ArrayCollection|Collection
*/
public function getStaticReports()
{
return $this->staticReports;
}
/**
* @param ArrayCollection|Collection $staticReports
*/
public function setStaticReports($staticReports): void
{
$this->staticReports = $staticReports;
}
public function getGoogleAccounts(): Collection
{
return $this->googleAccounts;
}
public function setGoogleAccounts(Collection $googleAccounts): void
{
$this->googleAccounts = $googleAccounts;
}
public function getFacebookAccounts(): Collection
{
return $this->facebookAccounts;
}
public function setFacebookAccounts(Collection $facebookAccounts): void
{
$this->facebookAccounts = $facebookAccounts;
}
/**
* @return ArrayCollection|Collection
*/
public function getDynamicReportsGoogle()
{
return $this->dynamicReportsGoogle;
}
/**
* @param ArrayCollection|Collection $dynamicReportsGoogle
*/
public function setDynamicReportsGoogle($dynamicReportsGoogle): void
{
$this->dynamicReportsGoogle = $dynamicReportsGoogle;
}
public function getAdsFacebookCampaignStaticReports(): Collection
{
return $this->adsFacebookCampaignStaticReports;
}
public function setAdsFacebookCampaignStaticReports(Collection $adsFacebookCampaignStaticReports): void
{
$this->adsFacebookCampaignStaticReports = $adsFacebookCampaignStaticReports;
}
public function getGoogleOAuthAccount(): ?GoogleAccount
{
return $this->googleOAuthAccount;
}
public function setGoogleOAuthAccount(GoogleAccount $googleOAuthAccount): void
{
$this->googleOAuthAccount = $googleOAuthAccount;
}
public function getSubscription(): ?Subscription
{
return $this->subscription;
}
public function setSubscription(?Subscription $subscription): void
{
$this->subscription = $subscription;
}
public function hasValidSubscription(): bool
{
return $this->subscription && $this->subscription->isValid();
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): void
{
$this->name = $name;
}
public function getSurname(): ?string
{
return $this->surname;
}
public function setSurname(?string $surname): void
{
$this->surname = $surname;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): void
{
$this->phone = $phone;
}
public function getTrackingId(): ?string
{
return $this->trackingId;
}
public function setTrackingId(?string $trackingId): void
{
$this->trackingId = $trackingId;
}
public function isEnabled(): bool
{
return $this->isEnabled;
}
public function setIsEnabled(bool $isEnable): void
{
$this->isEnabled = $isEnable;
}
public function __toString(): string
{
return $this->email ?? 'New User';
}
}