src/Entity/JobAlert.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Util\TimeUtil;
  4. use DateTime;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. use JMS\Serializer\Annotation as Serializer;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. /**
  12.  * @ORM\Entity(repositoryClass="App\Entity\Repository\JobAlertRepository")
  13.  * @ORM\Table(name="job_alert")
  14.  * @Gedmo\SoftDeleteable(fieldName="deletedAt")
  15.  */
  16. class JobAlert
  17. {
  18.     public const FREQUENCY_DAILY TimeUtil::DAY_IN_SECONDS;
  19.     public const FREQUENCY_WEEKLY TimeUtil::WEEK_IN_SECONDS;
  20.     public const FREQUENCY_MONTHLY TimeUtil::MONTH_IN_SECONDS;
  21.     public const KEYWORD_FIELD_DONT_SHOW 0;
  22.     public const KEYWORD_FIELD_REQUIRED 1;
  23.     public const KEYWORD_FIELD_OPTIONAL 2;
  24.     /**
  25.      * @var int
  26.      * @ORM\Id
  27.      * @ORM\GeneratedValue(strategy="AUTO")
  28.      * @ORM\Column(type="integer")
  29.      */
  30.     private $id;
  31.     /**
  32.      * @var DateTime|null
  33.      *
  34.      * @ORM\Column(type="datetime", nullable=true, name="deleted_at")
  35.      * @Serializer\Exclude()
  36.      */
  37.     private $deletedAt;
  38.     /**
  39.      * @var User
  40.      * @ORM\ManyToOne(targetEntity="User")
  41.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  42.      * @Serializer\Exclude()
  43.      */
  44.     private $user;
  45.     /**
  46.      * @var string
  47.      * @ORM\Column(type="string", length=170)
  48.      */
  49.     #[Assert\NotBlank]
  50.     #[Assert\Email]
  51.     private $email;
  52.     /**
  53.      * @var int
  54.      * @ORM\Column(type="integer")
  55.      */
  56.     private $frequency;
  57.     /**
  58.      * @var string
  59.      * @ORM\Column(type="string", nullable=true, length=170)
  60.      */
  61.     private $keyword;
  62.     /**
  63.      * @var int|null
  64.      *
  65.      * @ORM\Column(name="`range`", type="integer", nullable=true)
  66.      */
  67.     private $range;
  68.     /**
  69.      * @var string
  70.      * @ORM\Column(type="string", length=170, nullable=true)
  71.      */
  72.     private $location;
  73.     /**
  74.      * @var float
  75.      * @ORM\Column(type="float", nullable=true)
  76.      */
  77.     private $latitude;
  78.     /**
  79.      * @var float
  80.      * @ORM\Column(type="float", nullable=true)
  81.      */
  82.     private $longitude;
  83.     /**
  84.      * @var DateTime
  85.      * @ORM\Column(type="datetime", nullable=true)
  86.      * @Serializer\Exclude()
  87.      */
  88.     private $lastSentOn;
  89.     /**
  90.      * @var DateTime
  91.      * @ORM\Column(type="datetime")
  92.      *
  93.      * @Gedmo\Timestampable(on="create")
  94.      * @Serializer\Exclude()
  95.      */
  96.     private $createdOn;
  97.     /**
  98.      * @var bool
  99.      * @ORM\Column(type="boolean")
  100.      * @Serializer\Exclude()
  101.      */
  102.     private $isActive true;
  103.     /**
  104.      * @var JobAlertHistory[]|Collection
  105.      *
  106.      * @ORM\OneToMany(targetEntity="JobAlertHistory", mappedBy="jobAlert")
  107.      * @Serializer\Exclude()
  108.      */
  109.     private $historyList;
  110.     /**
  111.      * Many JobAlerts has Many OptionValues.
  112.      *
  113.      * @var OptionValue[]|ArrayCollection
  114.      *
  115.      * @ORM\ManyToMany(targetEntity="OptionValue")
  116.      * @ORM\JoinTable(name="job_alert_option_value_option")
  117.      */
  118.     private $optionValues;
  119.     /**
  120.      * @var Company|null
  121.      *
  122.      * @ORM\ManyToOne(targetEntity="Company")
  123.      */
  124.     private $company;
  125.     /**
  126.      * @var string|null
  127.      *
  128.      * @ORM\Column(type="string", length=6, nullable=true)
  129.      */
  130.     private $locale;
  131.     /**
  132.      * @var Site|null
  133.      *
  134.      * @ORM\ManyToOne(targetEntity="App\Entity\Site", fetch="EAGER")
  135.      */
  136.     private $site;
  137.     /**
  138.      * @var string|null
  139.      *
  140.      * @ORM\Column(type="string", nullable=true)
  141.      */
  142.     #[Assert\Length(max255)]
  143.     private $firstName;
  144.     /**
  145.      * @var string|null
  146.      *
  147.      * @ORM\Column(type="string", nullable=true)
  148.      */
  149.     #[Assert\Length(max255)]
  150.     private $lastName;
  151.     /**
  152.      * @ORM\Column(type="datetime", nullable=true)
  153.      */
  154.     private $lastDateTried;
  155.     public function __construct()
  156.     {
  157.         $this->historyList = new ArrayCollection();
  158.         $this->optionValues = new ArrayCollection();
  159.     }
  160.     public function getId(): ?int
  161.     {
  162.         return $this->id;
  163.     }
  164.     public function getDeletedAt(): ?\DateTimeInterface
  165.     {
  166.         return $this->deletedAt;
  167.     }
  168.     public function setDeletedAt(?\DateTimeInterface $deletedAt): self
  169.     {
  170.         $this->deletedAt $deletedAt;
  171.         return $this;
  172.     }
  173.     public function getUser(): ?User
  174.     {
  175.         return $this->user;
  176.     }
  177.     public function setUser(?User $user): self
  178.     {
  179.         $this->user $user;
  180.         return $this;
  181.     }
  182.     public function getEmail(): ?string
  183.     {
  184.         return $this->email;
  185.     }
  186.     public function setEmail(string $email): self
  187.     {
  188.         $this->email $email;
  189.         return $this;
  190.     }
  191.     public function getFrequency(): ?int
  192.     {
  193.         return $this->frequency;
  194.     }
  195.     public function setFrequency(int $frequency): self
  196.     {
  197.         $this->frequency $frequency;
  198.         return $this;
  199.     }
  200.     public function getKeyword(): ?string
  201.     {
  202.         return $this->keyword;
  203.     }
  204.     public function setKeyword(?string $keyword): self
  205.     {
  206.         $this->keyword $keyword;
  207.         return $this;
  208.     }
  209.     public function getLocation(): ?string
  210.     {
  211.         return $this->location;
  212.     }
  213.     public function setLocation(?string $location): self
  214.     {
  215.         $this->location $location;
  216.         return $this;
  217.     }
  218.     public function getLatitude(): ?float
  219.     {
  220.         return $this->latitude;
  221.     }
  222.     public function setLatitude(?float $latitude): self
  223.     {
  224.         $this->latitude $latitude;
  225.         return $this;
  226.     }
  227.     public function getLongitude(): ?float
  228.     {
  229.         return $this->longitude;
  230.     }
  231.     public function setLongitude(?float $longitude): self
  232.     {
  233.         $this->longitude $longitude;
  234.         return $this;
  235.     }
  236.     public function getLastSentOn(): ?\DateTimeInterface
  237.     {
  238.         return $this->lastSentOn;
  239.     }
  240.     public function setLastSentOn(?\DateTimeInterface $lastSentOn): self
  241.     {
  242.         $this->lastSentOn $lastSentOn;
  243.         return $this;
  244.     }
  245.     public function getCreatedOn(): ?\DateTimeInterface
  246.     {
  247.         return $this->createdOn;
  248.     }
  249.     public function isActive(): bool
  250.     {
  251.         return $this->isActive;
  252.     }
  253.     public function setActive(bool $isActive): self
  254.     {
  255.         $this->isActive $isActive;
  256.         return $this;
  257.     }
  258.     /**
  259.      * @return Collection|JobAlertHistory[]
  260.      */
  261.     public function getHistoryList(): Collection
  262.     {
  263.         return $this->historyList;
  264.     }
  265.     /**&
  266.      * @param JobAlertHistory $jobAlertHistory
  267.      *
  268.      * @return JobAlert
  269.      */
  270.     public function addToHistoryList(JobAlertHistory $jobAlertHistory): self
  271.     {
  272.         if ($this->historyList->contains($jobAlertHistory)) {
  273.             return $this;
  274.         }
  275.         $this->historyList->add($jobAlertHistory);
  276.         return $this;
  277.     }
  278.     public function removeFromHistoryList(JobAlertHistory $jobAlertHistory): self
  279.     {
  280.         if (!$this->historyList->contains($jobAlertHistory)) {
  281.             return $this;
  282.         }
  283.         $this->historyList->removeElement($jobAlertHistory);
  284.         return $this;
  285.     }
  286.     /**
  287.      * @return Collection|OptionValue[]
  288.      */
  289.     public function getOptionValues(): Collection
  290.     {
  291.         return $this->optionValues;
  292.     }
  293.     /**
  294.      * @param OptionValue[]|ArrayCollection $optionValues
  295.      */
  296.     public function setOptionValues($optionValues): self
  297.     {
  298.         $this->optionValues $optionValues;
  299.         return $this;
  300.     }
  301.     public function addOptionValue(OptionValue $optionValue): self
  302.     {
  303.         if (!$this->optionValues->contains($optionValue)) {
  304.             $this->optionValues[] = $optionValue;
  305.         }
  306.         return $this;
  307.     }
  308.     public function removeOptionValue(OptionValue $optionValue): self
  309.     {
  310.         if ($this->optionValues->contains($optionValue)) {
  311.             $this->optionValues->removeElement($optionValue);
  312.         }
  313.         return $this;
  314.     }
  315.     public function getRange(): ?int
  316.     {
  317.         return $this->range;
  318.     }
  319.     public function setRange(?int $range): self
  320.     {
  321.         $this->range $range;
  322.         return $this;
  323.     }
  324.     public function getCompany(): ?Company
  325.     {
  326.         return $this->company;
  327.     }
  328.     public function setCompany(?Company $company): self
  329.     {
  330.         $this->company $company;
  331.         return $this;
  332.     }
  333.     public function getLocale(): ?string
  334.     {
  335.         return $this->locale;
  336.     }
  337.     public function setLocale(?string $locale): self
  338.     {
  339.         $this->locale $locale;
  340.         return $this;
  341.     }
  342.     public function getSite(): ?Site
  343.     {
  344.         return $this->site;
  345.     }
  346.     public function setSite(?Site $site): self
  347.     {
  348.         $this->site $site;
  349.         return $this;
  350.     }
  351.     public function getFirstName(): ?string
  352.     {
  353.         return $this->firstName;
  354.     }
  355.     public function setFirstName(?string $firstName): self
  356.     {
  357.         $this->firstName $firstName;
  358.         return $this;
  359.     }
  360.     public function getLastName(): ?string
  361.     {
  362.         return $this->lastName;
  363.     }
  364.     public function setLastName(?string $lastName): self
  365.     {
  366.         $this->lastName $lastName;
  367.         return $this;
  368.     }
  369.     public function setCreatedOn(\DateTimeInterface $createdOn): self
  370.     {
  371.         $this->createdOn $createdOn;
  372.         return $this;
  373.     }
  374.     public function getIsActive(): ?bool
  375.     {
  376.         return $this->isActive;
  377.     }
  378.     public function setIsActive(bool $isActive): self
  379.     {
  380.         $this->isActive $isActive;
  381.         return $this;
  382.     }
  383.     public function addHistoryList(JobAlertHistory $historyList): self
  384.     {
  385.         if (!$this->historyList->contains($historyList)) {
  386.             $this->historyList[] = $historyList;
  387.             $historyList->setJobAlert($this);
  388.         }
  389.         return $this;
  390.     }
  391.     public function removeHistoryList(JobAlertHistory $historyList): self
  392.     {
  393.         if ($this->historyList->contains($historyList)) {
  394.             $this->historyList->removeElement($historyList);
  395.             // set the owning side to null (unless already changed)
  396.             if ($historyList->getJobAlert() === $this) {
  397.                 $historyList->setJobAlert(null);
  398.             }
  399.         }
  400.         return $this;
  401.     }
  402.     public function getLastDateTried(): ?\DateTimeInterface
  403.     {
  404.         return $this->lastDateTried;
  405.     }
  406.     public function setLastDateTried(?\DateTimeInterface $lastDateTried): self
  407.     {
  408.         $this->lastDateTried $lastDateTried;
  409.         return $this;
  410.     }
  411. }