<?php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Timestampable\Traits\TimestampableEntity;
/**
* @ORM\Entity(repositoryClass="App\Repository\ReportRepository")
* @ORM\Table(name="report")
*/
class Report
{
use TimestampableEntity;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private ?int $id = null;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $name = null;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="staticReports")
* @ORM\JoinColumn(name="user_id", referencedColumnName="id")
*/
private ?User $user;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $domain = null;
/**
* @ORM\OneToMany(targetEntity="App\Entity\ReportCountryStatistic", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
*/
private ?Collection $countryStatistics;
/**
* @ORM\OneToMany(targetEntity="App\Entity\ReportPageStatistic", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
*/
private ?Collection $pageStatistics;
/**
* @ORM\OneToMany(targetEntity="App\Entity\ReportSnapshot", mappedBy="report", cascade={"persist", "remove"}, orphanRemoval=true)
* @ORM\OrderBy({"periodStart" = "ASC"})
*/
private ?Collection $snapshots;
/**
* @ORM\Column(type="string", nullable=true)
*/
private ?string $hash;
public function __construct()
{
$this->countryStatistics = new ArrayCollection();
$this->pageStatistics = new ArrayCollection();
$this->snapshots = new ArrayCollection();
$this->hash = uniqid('', true);
}
public function getId(): ?int
{
return $this->id;
}
public function setId(?int $id): void
{
$this->id = $id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): void
{
$this->name = strtolower(
str_replace('www.', '', $this->domain)
);
}
public function getUser(): ?User
{
return $this->user;
}
public function setUser(?User $user): void
{
$this->user = $user;
}
public function getDomain(): ?string
{
return strtolower(
str_replace('www.', '', $this->domain)
);
}
public function setDomain(?string $domain): void
{
$this->domain = strtolower(
str_replace('www.', '', $domain)
);
}
public function getCountryStatistics(): ?Collection
{
return $this->countryStatistics;
}
public function setCountryStatistics(?Collection $countryStatistics): void
{
$this->countryStatistics = $countryStatistics;
}
public function getPageStatistics(): ?Collection
{
return $this->pageStatistics;
}
public function setPageStatistics(?Collection $pageStatistics): void
{
$this->pageStatistics = $pageStatistics;
}
public function getSnapshots(): ?Collection
{
return $this->snapshots;
}
public function setSnapshots(?Collection $snapshots): void
{
$this->snapshots = $snapshots;
}
public function getHash(): ?string
{
return $this->hash;
}
public function setHash(?string $hash): void
{
$this->hash = $hash;
}
public function getDisplayName(): string
{
return $this->name ?? $this->domain;
}
public function isReady(): bool
{
if ($this->getSnapshots()->isEmpty()) {
return false;
}
return null !== $this->getSnapshots()->last()->getCompletedAt();
}
public function isFailed(): bool
{
if ($this->getSnapshots()->isEmpty()) {
return false;
}
$lastSnapshotCreatedAt = $this->getSnapshots()->last()->getCreatedAt();
$diffInSeconds = time() - $lastSnapshotCreatedAt->getTimestamp();
$diffInHours = $diffInSeconds / 3600;
return !$this->isReady() && $diffInHours > 1;
}
public function getLastSnapshot(): ?ReportSnapshot
{
$snapshot = $this->snapshots->last();
if (false === $snapshot) {
return null;
}
return $snapshot;
}
public function getTotalTCO2(): float
{
$tCO2 = 0.00;
/** @var ReportSnapshot $snapshot */
foreach ($this->snapshots as $snapshot) {
$tCO2 += $snapshot->getTCO2();
}
return $tCO2;
}
public function __toString(): string
{
return $this->id ?? 'New Report';
}
}