src/Entity/Report.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Gedmo\Timestampable\Traits\TimestampableEntity;
  7. /**
  8.  * @ORM\Entity(repositoryClass="App\Repository\ReportRepository")
  9.  * @ORM\Table(name="report")
  10.  */
  11. class Report
  12. {
  13.     use TimestampableEntity;
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private ?int $id null;
  20.     /**
  21.      * @ORM\Column(type="string", nullable=true)
  22.      */
  23.     private ?string $name null;
  24.     /**
  25.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="staticReports")
  26.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  27.      */
  28.     private ?User $user;
  29.     /**
  30.      * @ORM\Column(type="string", nullable=true)
  31.      */
  32.     private ?string $domain null;
  33.     /**
  34.      * @ORM\OneToMany(targetEntity="App\Entity\ReportCountryStatistic", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
  35.      */
  36.     private ?Collection $countryStatistics;
  37.     /**
  38.      * @ORM\OneToMany(targetEntity="App\Entity\ReportPageStatistic", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
  39.      */
  40.     private ?Collection $pageStatistics;
  41.     /**
  42.      * @ORM\OneToMany(targetEntity="App\Entity\ReportSnapshot", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
  43.      * @ORM\OrderBy({"periodStart" = "ASC"})
  44.      */
  45.     private ?Collection $snapshots;
  46.     /**
  47.      * @ORM\Column(type="string", nullable=true)
  48.      */
  49.     private ?string $hash;
  50.     public function __construct()
  51.     {
  52.         $this->countryStatistics = new ArrayCollection();
  53.         $this->pageStatistics = new ArrayCollection();
  54.         $this->snapshots = new ArrayCollection();
  55.         $this->hash uniqid(''true);
  56.     }
  57.     public function getId(): ?int
  58.     {
  59.         return $this->id;
  60.     }
  61.     public function setId(?int $id): void
  62.     {
  63.         $this->id $id;
  64.     }
  65.     public function getName(): ?string
  66.     {
  67.         return $this->name;
  68.     }
  69.     public function setName(?string $name): void
  70.     {
  71.         $this->name strtolower(
  72.             str_replace('www.'''$this->domain)
  73.         );
  74.     }
  75.     public function getUser(): ?User
  76.     {
  77.         return $this->user;
  78.     }
  79.     public function setUser(?User $user): void
  80.     {
  81.         $this->user $user;
  82.     }
  83.     public function getDomain(): ?string
  84.     {
  85.         return strtolower(
  86.             str_replace('www.'''$this->domain)
  87.         );
  88.     }
  89.     public function setDomain(?string $domain): void
  90.     {
  91.         $this->domain strtolower(
  92.             str_replace('www.'''$domain)
  93.         );
  94.     }
  95.     public function getCountryStatistics(): ?Collection
  96.     {
  97.         return $this->countryStatistics;
  98.     }
  99.     public function setCountryStatistics(?Collection $countryStatistics): void
  100.     {
  101.         $this->countryStatistics $countryStatistics;
  102.     }
  103.     public function getPageStatistics(): ?Collection
  104.     {
  105.         return $this->pageStatistics;
  106.     }
  107.     public function setPageStatistics(?Collection $pageStatistics): void
  108.     {
  109.         $this->pageStatistics $pageStatistics;
  110.     }
  111.     public function getSnapshots(): ?Collection
  112.     {
  113.         return $this->snapshots;
  114.     }
  115.     public function setSnapshots(?Collection $snapshots): void
  116.     {
  117.         $this->snapshots $snapshots;
  118.     }
  119.     public function getHash(): ?string
  120.     {
  121.         return $this->hash;
  122.     }
  123.     public function setHash(?string $hash): void
  124.     {
  125.         $this->hash $hash;
  126.     }
  127.     public function getDisplayName(): string
  128.     {
  129.         return $this->name ?? $this->domain;
  130.     }
  131.     public function isReady(): bool
  132.     {
  133.         if ($this->getSnapshots()->isEmpty()) {
  134.             return false;
  135.         }
  136.         return null !== $this->getSnapshots()->last()->getCompletedAt();
  137.     }
  138.     public function isFailed(): bool
  139.     {
  140.         if ($this->getSnapshots()->isEmpty()) {
  141.             return false;
  142.         }
  143.         
  144.         $lastSnapshotCreatedAt $this->getSnapshots()->last()->getCreatedAt();
  145.         
  146.         $diffInSeconds time() - $lastSnapshotCreatedAt->getTimestamp();
  147.         $diffInHours $diffInSeconds 3600;
  148.         return !$this->isReady() && $diffInHours 1;
  149.     }
  150.     public function getLastSnapshot(): ?ReportSnapshot
  151.     {
  152.         $snapshot $this->snapshots->last();
  153.         if (false === $snapshot) {
  154.             return null;
  155.         }
  156.         return $snapshot;
  157.     }
  158.     public function getTotalTCO2(): float
  159.     {
  160.         $tCO2 0.00;
  161.         /** @var ReportSnapshot $snapshot */
  162.         foreach ($this->snapshots as $snapshot) {
  163.             $tCO2 += $snapshot->getTCO2();
  164.         }
  165.         return $tCO2;
  166.     }
  167.     public function __toString(): string
  168.     {
  169.         return $this->id ?? 'New Report';
  170.     }
  171. }