src/Entity/AdsFacebookCampaignStaticReport.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\Collection;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Timestampable\Traits\TimestampableEntity;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\AdsFacebookCampaignStaticReportRepository")
  8.  * @ORM\Table(name="`ads_facebook_campaign_static_report`")
  9.  */
  10. class AdsFacebookCampaignStaticReport
  11. {
  12.     use TimestampableEntity;
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private ?int $id null;
  19.     /**
  20.      * @ORM\Column(type="string", nullable=true)
  21.      */
  22.     private ?string $name null;
  23.     /**
  24.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="adsFacebookCampaignStaticReports")
  25.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  26.      */
  27.     private ?User $user;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity="App\Entity\AdsFacebookCampaign")
  30.      * @ORM\JoinColumn(name="campaign_id", referencedColumnName="id")
  31.      */
  32.     private ?AdsFacebookCampaign $campaign;
  33.     /**
  34.      * @ORM\OneToMany(targetEntity="App\Entity\AdsFacebookCampaignStaticReportStatistic", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
  35.      */
  36.     private Collection $statistics;
  37.     /**
  38.      * @ORM\OneToMany(targetEntity="App\Entity\AdsFacebookCampaignStaticReportStatisticPlatform", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
  39.      */
  40.     private Collection $platformStatistics;
  41.     /**
  42.      * @ORM\Column(type="datetime", nullable=true)
  43.      */
  44.     protected ?\DateTime $latestReportCreatedAt null;
  45.     /**
  46.      * @ORM\Column(type="string", nullable=true)
  47.      */
  48.     private ?string $hash;
  49.     public function __construct()
  50.     {
  51.         $this->hash uniqid(''true);
  52.     }
  53.     public function getId(): ?int
  54.     {
  55.         return $this->id;
  56.     }
  57.     public function setId(?int $id): void
  58.     {
  59.         $this->id $id;
  60.     }
  61.     public function getName(): ?string
  62.     {
  63.         return $this->name;
  64.     }
  65.     public function setName(?string $name): void
  66.     {
  67.         $this->name $name;
  68.     }
  69.     public function getUser(): ?User
  70.     {
  71.         return $this->user;
  72.     }
  73.     public function setUser(?User $user): void
  74.     {
  75.         $this->user $user;
  76.     }
  77.     public function getCampaign(): ?AdsFacebookCampaign
  78.     {
  79.         return $this->campaign;
  80.     }
  81.     public function setCampaign(?AdsFacebookCampaign $campaign): void
  82.     {
  83.         $this->campaign $campaign;
  84.     }
  85.     public function getStatistics(): Collection
  86.     {
  87.         return $this->statistics;
  88.     }
  89.     public function setStatistics(Collection $statistics): void
  90.     {
  91.         $this->statistics $statistics;
  92.     }
  93.     public function getPlatformStatistics(): Collection
  94.     {
  95.         return $this->platformStatistics;
  96.     }
  97.     public function setPlatformStatistics(Collection $platformStatistics): void
  98.     {
  99.         $this->platformStatistics $platformStatistics;
  100.     }
  101.     public function getLatestReportCreatedAt(): ?\DateTime
  102.     {
  103.         return $this->latestReportCreatedAt;
  104.     }
  105.     public function setLatestReportCreatedAt(?\DateTime $latestReportCreatedAt): void
  106.     {
  107.         $this->latestReportCreatedAt $latestReportCreatedAt;
  108.     }
  109.     public function isReady(): bool
  110.     {
  111.         return null !== $this->getLatestReportCreatedAt();
  112.     }
  113.     public function getDisplayName(): string
  114.     {
  115.         if ($this->getName()) {
  116.             return $this->getName();
  117.         }
  118.         return strtolower($this->getCampaign()->getName());
  119.     }
  120.     public function getHash(): ?string
  121.     {
  122.         return $this->hash;
  123.     }
  124.     public function setHash(?string $hash): void
  125.     {
  126.         $this->hash $hash;
  127.     }
  128.     public function getImpressions(): int
  129.     {
  130.         $impressions 0;
  131.         foreach ($this->statistics as $statistic) {
  132.             $impressions += $statistic->getImpressions();
  133.         }
  134.         return $impressions;
  135.     }
  136.     public function __toString(): string
  137.     {
  138.         return $this->id ?? 'New Facebook Ads Campaign Report';
  139.     }
  140. }