src/Entity/StaticReport.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\StaticReportRepository")
  8.  * @ORM\Table(name="`static_report`")
  9.  */
  10. class StaticReport
  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="staticReports")
  25.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  26.      */
  27.     private ?User $user;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity="App\Entity\Site", inversedBy="reports", cascade={"persist", "remove"})
  30.      * @ORM\JoinColumn(name="site_id", referencedColumnName="id")
  31.      */
  32.     private ?Site $site;
  33.     /**
  34.      * @ORM\Column(type="bigint")
  35.      */
  36.     private $pageViews 0;
  37.     /**
  38.      * @ORM\OneToMany(targetEntity="App\Entity\StaticReportStatistic", mappedBy="staticReport", cascade={"persist", "remove"}, orphanRemoval=true)
  39.      */
  40.     private Collection $statistics;
  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 null;
  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 getName(): ?string
  58.     {
  59.         return $this->name;
  60.     }
  61.     public function setName(?string $name): void
  62.     {
  63.         $this->name $name;
  64.     }
  65.     public function getUser(): ?User
  66.     {
  67.         return $this->user;
  68.     }
  69.     public function setUser(?User $user): void
  70.     {
  71.         $this->user $user;
  72.     }
  73.     public function getSite(): ?Site
  74.     {
  75.         return $this->site;
  76.     }
  77.     public function setSite(?Site $site): void
  78.     {
  79.         $this->site $site;
  80.     }
  81.     public function getPageViews(): int
  82.     {
  83.         return $this->pageViews;
  84.     }
  85.     public function setPageViews(int $pageViews): void
  86.     {
  87.         $this->pageViews $pageViews;
  88.     }
  89.     public function getStatistics(): Collection
  90.     {
  91.         return $this->statistics;
  92.     }
  93.     public function setStatistics(Collection $statistics): void
  94.     {
  95.         $this->statistics $statistics;
  96.     }
  97.     public function getLatestReportCreatedAt(): ?\DateTime
  98.     {
  99.         return $this->latestReportCreatedAt;
  100.     }
  101.     public function setLatestReportCreatedAt(?\DateTime $latestReportCreatedAt): void
  102.     {
  103.         $this->latestReportCreatedAt $latestReportCreatedAt;
  104.     }
  105.     public function isReady(): bool
  106.     {
  107.         return null !== $this->getLatestReportCreatedAt();
  108.     }
  109.     public function isConfigured(): bool
  110.     {
  111.         return $this->getSite()
  112.             && false === $this->getSite()->getPages()->isEmpty()
  113.             && false === $this->getSite()->getNations()->isEmpty();
  114.     }
  115.     public function getDomain(): string
  116.     {
  117.         return strtolower($this->getSite()->getDomain());
  118.     }
  119.     public function getDisplayName(): string
  120.     {
  121.         return $this->getDomain();
  122.     }
  123.     public function getHash(): ?string
  124.     {
  125.         return $this->hash;
  126.     }
  127.     public function setHash(?string $hash): void
  128.     {
  129.         $this->hash $hash;
  130.     }
  131.     public function isValidForYear($year): bool
  132.     {
  133.         $created $this->getCreatedAt();
  134.         $dateStart = clone $created;
  135.         $dateStart->modify('LAST YEAR');
  136.         return $year === $dateStart->format('Y');
  137.     }
  138.     public function getDisplayPeriod(): string
  139.     {
  140.         $created $this->getCreatedAt();
  141.         $dateStart = clone $created;
  142.         $dateStart->modify('LAST YEAR');
  143.         $dateStart $dateStart->modify('1 JANUARY')->setTime(00);
  144.         $dateEnd = clone $dateStart;
  145.         $dateEnd $dateEnd->modify('31 DECEMBER')->setTime(00);
  146.         return sprintf('%s - %s'$dateStart->format('d M Y'), $dateEnd->format('d M Y'));
  147.     }
  148.     public function getTotalTCO2(): float
  149.     {
  150.         $tCO2 0.00;
  151.         /** @var StaticReportStatistic $statistic */
  152.         foreach ($this->statistics as $statistic) {
  153.             $tCO2 += $statistic->getTCO2();
  154.         }
  155.         return $tCO2;
  156.     }
  157.     public function getTotalKWh(): float
  158.     {
  159.         $kWh 0.00;
  160.         /** @var StaticReportStatistic $statistic */
  161.         foreach ($this->statistics as $statistic) {
  162.             $kWh += $statistic->getKWh();
  163.         }
  164.         return $kWh;
  165.     }
  166.     public function __toString(): string
  167.     {
  168.         return $this->id ?? 'New Report';
  169.     }
  170. }