src/Entity/Visitor.php line 10

Open in your IDE?
  1. <?php
  2. // src/Entity/Visitor.php
  3. namespace App\Entity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClass'App\Repository\VisitorRepository')]
  6. #[ORM\Table(name'visitor')]
  7. class Visitor
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private ?int $id null;
  13.     #[ORM\Column(type'string'length255)]
  14.     private string $ipAddress;
  15.     #[ORM\Column(type'string'length255)]
  16.     private string $url;
  17.     #[ORM\Column(type'datetime')]
  18.     private \DateTimeInterface $visitedAt;
  19.     #[ORM\Column(type'integer')]
  20.     private int $visitDuration 0// Dauer des Besuchs in Sekunden
  21.     #[ORM\Column(type'boolean')]
  22.     private bool $isBlocked false;
  23.     #[ORM\Column(type'datetime'nullabletrue)]
  24.     private ?\DateTimeInterface $blockedUntil null;
  25.     #[ORM\Column(type'boolean')]
  26.     private bool $uniqueVisit false;
  27.     #[ORM\Column(type'integer')]
  28.     private int $clicks 0// Anzahl der Klicks
  29.     #[ORM\Column(type'integer')]
  30.     private int $uniqueClicks 0// Anzahl der echten Klicks
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getIpAddress(): string
  36.     {
  37.         return $this->ipAddress;
  38.     }
  39.     public function setIpAddress(string $ipAddress): self
  40.     {
  41.         $this->ipAddress $ipAddress;
  42.         return $this;
  43.     }
  44.     public function getUrl(): string
  45.     {
  46.         return $this->url;
  47.     }
  48.     public function setUrl(string $url): self
  49.     {
  50.         $this->url $url;
  51.         return $this;
  52.     }
  53.     public function getVisitedAt(): \DateTimeInterface
  54.     {
  55.         return $this->visitedAt;
  56.     }
  57.     public function setVisitedAt(\DateTimeInterface $visitedAt): self
  58.     {
  59.         $this->visitedAt $visitedAt;
  60.         return $this;
  61.     }
  62.     public function getVisitDuration(): int
  63.     {
  64.         return $this->visitDuration;
  65.     }
  66.     public function setVisitDuration(int $visitDuration): self
  67.     {
  68.         $this->visitDuration $visitDuration;
  69.         return $this;
  70.     }
  71.     public function getIsBlocked(): bool
  72.     {
  73.         return $this->isBlocked;
  74.     }
  75.     public function setIsBlocked(bool $isBlocked): self
  76.     {
  77.         $this->isBlocked $isBlocked;
  78.         return $this;
  79.     }
  80.     public function getBlockedUntil(): ?\DateTimeInterface
  81.     {
  82.         return $this->blockedUntil;
  83.     }
  84.     public function setBlockedUntil(?\DateTimeInterface $blockedUntil): self
  85.     {
  86.         $this->blockedUntil $blockedUntil;
  87.         return $this;
  88.     }
  89.     public function isBlocked(): bool
  90.     {
  91.         if ($this->blockedUntil && new \DateTime() < $this->blockedUntil) {
  92.             return true;
  93.         }
  94.         return false;
  95.     }
  96.     public function isUniqueVisit(): bool
  97.     {
  98.         return $this->uniqueVisit;
  99.     }
  100.     public function setUniqueVisit(bool $uniqueVisit): self
  101.     {
  102.         $this->uniqueVisit $uniqueVisit;
  103.         return $this;
  104.     }
  105.     public function getClicks(): int
  106.     {
  107.         return $this->clicks;
  108.     }
  109.     public function setClicks(int $clicks): self
  110.     {
  111.         $this->clicks $clicks;
  112.         return $this;
  113.     }
  114.     public function getUniqueClicks(): int
  115.     {
  116.         return $this->uniqueClicks;
  117.     }
  118.     public function setUniqueClicks(int $uniqueClicks): self
  119.     {
  120.         $this->uniqueClicks $uniqueClicks;
  121.         return $this;
  122.     }
  123. }