VvebOIDC/system/cache/file.php

168 lines
3.8 KiB
PHP

<?php
/**
* Vvveb
*
* Copyright (C) 2022 Ziadin Givan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Vvveb\System\Cache;
use function Vvveb\sanitizeFileName;
class File {
/* get purge, stats from trait*/
use CacheTrait;
private $expire = 3600;
private $options = [];
private $cacheDir = DIR_CACHE;
private $cachePrefix = ''; //'cache.';
public function __construct($options) {
$this->options += $options;
$this->expire = $this->options['expire'] ?? $this->expire;
$this->cacheDir = $this->options['dir'] ?? $this->cacheDir;
$this->cachePrefix = $this->options['prefix'] ?? $this->cachePrefix;
}
protected function validateNamespace($namespace) {
if ($namespace) {
$namespace = str_replace(['\\', '/'] , '.', $namespace);
$namespace = sanitizeFileName($namespace);
}
return $namespace;
}
public function get($namespace, $key) {
$namespace = $this->validateNamespace($namespace);
$key = $this->validateNamespace($key);
$files = glob($this->cacheDir . $namespace . '.' . $this->cachePrefix . basename($key) . '.*');
if ($files) {
if (file_exists($files[0])) {
$data = file_get_contents($files[0]);
return json_decode($data, true);
}
}
return null;
}
public function set($namespace, $key, $value, $expire = null) {
$namespace = $this->validateNamespace($namespace);
$key = $this->validateNamespace($key);
if (! $expire) {
$expire = $this->expire;
}
$expire = time() + $expire;
$this->delete($namespace, $key);
$file = $this->cacheDir . $namespace . '.' . $this->cachePrefix . basename($key) . '.' . $expire;
$handle = fopen($file, 'w');
if ($handle) {
flock($handle, LOCK_EX);
fwrite($handle, json_encode($value/*, JSON_PRETTY_PRINT*/));
fflush($handle);
flock($handle, LOCK_UN);
fclose($handle);
}
}
public function getMulti($namespace, $keys, $serverKey = false) {
$result = [];
foreach ($keys as $key) {
$result[$key] = $this->get($namespace, $key);
}
return $result;
}
public function setMulti($namespace, $items, $expire = null, $serverKey = false) {
$namespace = $this->validateNamespace($namespace);
foreach ($items as $key => $value) {
$this->set($namespace, $key, $value, $expire);
}
}
public function purge($namespace = '') {
$this->delete($namespace);
}
public function delete($namespace, $key = false) {
$namespace = $this->validateNamespace($namespace);
$name = $this->cacheDir;
if ($namespace) {
$name .= $namespace . '.';
}
if ($key) {
$name .= $this->cachePrefix . basename($key) . '.*';
} else {
$name .= '*';
}
$files = glob($name);
if ($files) {
foreach ($files as $file) {
if ($file[0] === '.') {
continue;
}
if (! @unlink($file)) {
clearstatcache(false, $file);
}
}
}
}
public function purgeExpired() {
$files = glob($this->cacheDir);
if (rand(1, 1000) == 1 && $files = (glob($this->cacheDir))) {
foreach ($files as $file) {
$time = substr(strrchr($file, '.'), 1);
if ($time < time()) {
if (! @unlink($file)) {
clearstatcache(false, $file);
}
}
}
}
}
public function __destruct() {
$this->purgeExpired();
}
}