<?php
namespace App\Database\Domain\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity(repositoryClass="App\Database\Domain\Repository\GlobalsRepository")
*/
class Globals extends AbstractEntity
{
public const SESSIONS_COUNTER = 'sessions_counter';
public const TABS_COUNTER = 'tabs_counter';
/**
* @ORM\Column(type="string", name="globals_key", nullable=false)
*
* @Assert\NotBlank()
*/
private string $key;
/**
* @ORM\Column(type="text")
*/
private string $value;
public function __construct(string $id, string $key, $value)
{
$this->id = $id;
$this->key = $key;
if (is_array($value)) {
$this->setArray($value);
} else {
$this->setValue($value);
}
}
public function __toString(): string
{
return $this->value;
}
public function getKey(): string
{
return $this->key;
}
public function setKey(string $key): self
{
$this->key = $key;
return $this;
}
public function getValue(): string
{
return $this->value;
}
public function setValue(string $value): self
{
$this->value = $value;
return $this;
}
public function setArray(array $value): self
{
$this->value = json_encode($value);
return $this;
}
public function toArray(): array
{
return json_decode($this->value, true);
}
public function toInt(): int
{
return (int) $this->value;
}
public function toFloat(): float
{
return (float) $this->value;
}
public function toBoolean(): bool
{
return $this->value === 'true';
}
}