. */ declare(strict_types=1); namespace FireflyIII\Support; use Cache; use Illuminate\Support\Collection; /** * Class CacheProperties. * @codeCoverageIgnore */ class CacheProperties { /** @var string */ protected $hash = ''; /** @var Collection */ protected $properties; /** * */ public function __construct() { $this->properties = new Collection; if (auth()->check()) { $this->addProperty(auth()->user()->id); $this->addProperty(app('preferences')->lastActivity()); } } /** * @param $property * @param Collection|\Carbon\Carbon|\FireflyIII\Models\Category|array|int|string $property */ public function addProperty($property): void { $this->properties->push($property); } /** * @return mixed */ public function get() { return Cache::get($this->hash); } /** * @return string */ public function getHash(): string { return $this->hash; } /** * @return bool */ public function has(): bool { if ('testing' === config('app.env')) { return false; } $this->hash(); return Cache::has($this->hash); } /** * @param $data * @param (array|mixed)[]|Collection|\Carbon\Carbon|string $data */ public function store($data): void { Cache::forever($this->hash, $data); } /** */ private function hash(): void { $content = ''; foreach ($this->properties as $property) { $content .= json_encode($property, JSON_THROW_ON_ERROR, 512); } $this->hash = substr(hash('sha256', $content), 0, 16); } }