Db Cache components

This commit is contained in:
Daniel Brendel 2024-04-05 22:02:12 +02:00
parent f4a6c09fc9
commit 98e3e3fc64
3 changed files with 258 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<?php
/*
Asatru PHP - Migration vor Caching
*/
class CacheModel_Migration {
private $database = null;
private $connection = null;
/**
* Construct class and store PDO connection handle
*
* @param \PDO $pdo
* @return void
*/
public function __construct($pdo)
{
$this->connection = $pdo;
}
/**
* Called when the table shall be created or modified
*
* @return void
*/
public function up()
{
$this->database = new Asatru\Database\Migration('CacheModel', $this->connection);
$this->database->drop();
$this->database->add('id INT NOT NULL AUTO_INCREMENT PRIMARY KEY');
$this->database->add('ident VARCHAR(260) NOT NULL');
$this->database->add('value BLOB NULL');
$this->database->add('updated_at TIMESTAMP');
$this->database->add('created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP');
$this->database->create();
}
/**
* Called when the table shall be dropped
*
* @return void
*/
public function down()
{
$this->database = new Asatru\Database\Migration('Cache', $this->connection);
$this->database->drop();
}
}

View File

@ -1 +1,4 @@
47f3d3306fbd25715600db55b33b1542293ab5eb593205d6f5884bcaafa5d9a4627c76af04b684962c99a9518ef6b3d10e983203f6b5a8576912445d8f285fb7
cd19e5ec4a12d40d8d3ecdf267ef890e80fdd94ab28f81fddeb0c12b6f6b88773157e469c2d693abd4583e18b9b5a126c3fcecd6c07f4374c6c6e2837166b2ec

206
app/models/CacheModel.php Normal file
View File

@ -0,0 +1,206 @@
<?php
/*
Asatru PHP - Model for Caching
*/
class CacheModel extends \Asatru\Database\Model {
/**
* Obtain value either from cache or from closure
*
* @param string $ident The cache item identifier
* @param int $timeInSeconds Amount of seconds the item shall be cached
* @param $closure Function to be called for the actual value
* @return mixed
*/
public static function remember($ident, $timeInSeconds, $closure)
{
$item = CacheModel::find($ident, 'ident');
if ($item->count() == 0) {
$value = $closure();
$data = array(
'ident' => $ident,
'value' => $value,
'updated_at' => date('Y-m-d H:i:s')
);
foreach ($data as $key => $val) {
CacheModel::insert($key, $val);
}
CacheModel::go();
return $value;
} else {
$data = $item->get(0);
$dtLast = new DateTime(date('Y-m-d H:i:s', strtotime($data->get('updated_at'))));
$dtLast->add(new DateInterval('PT' . $timeInSeconds . 'S'));
$dtNow = new DateTime('now');
if ($dtNow < $dtLast) {
return $data->get('value');
} else {
$value = $closure();
$updData = array(
'value' => $value,
'updated_at' => date('Y-m-d H:i:s')
);
foreach ($updData as $key => $val) {
CacheModel::update($key, $val);
}
CacheModel::where('id', '=', $data->get('id'));
CacheModel::go();
return $value;
}
}
return null;
}
/**
* Query an entire item
*
* @param $ident
* @param $default
* @return mixed
*/
public static function query($ident, $default = null)
{
$what = null;
if (strpos($ident, '.') !== false) {
$what = explode('.', $ident);
}
$result = CacheModel::where('ident', '=', (((is_array($what)) && (count($what) > 0)) ? $what[0] : $ident))->first();
if (!$result) {
return $default;
}
if ((is_array($what)) && (count($what) > 1)) {
return $result->get($what[1]);
}
return $result->get('value');
}
/**
* Check for item existence
*
* @param $ident
* @return bool
*/
public static function has($ident)
{
$item = CacheModel::find($ident, 'ident');
if ($item->count() > 0) {
return true;
}
return false;
}
/**
* Check if item cache time is elapsed
*
* @param $ident
* @param $timeInSeconds
* @return bool
*/
public static function elapsed($ident, $timeInSeconds)
{
if (!CacheModel::has($ident)) {
return false;
}
$data = CacheModel::where('ident', '=', $ident)->first();
$dtLast = new DateTime(date('Y-m-d H:i:s', strtotime($data->get('updated_at'))));
$dtLast->add(new DateInterval('PT' . $timeInSeconds . 'S'));
$dtNow = new DateTime('now');
return ($dtNow >= $dtLast);
}
/**
* Get item and then delete it
*
* @param $ident
* @return mixed
*/
public static function pull($ident)
{
$item = CacheModel::find($ident, 'ident');
if ($item->count() > 0) {
$data = $item->get(0);
CacheModel::where('id', '=', $item->get(0)->get('id'))->delete();
return $data->get('value');
}
return null;
}
/**
* Write item to table
*
* @param $ident
* @param $value
* @return bool
*/
public static function put($ident, $value)
{
if (CacheModel::has($ident)) {
return false;
}
$data = array(
'ident' => $ident,
'value' => $value,
'updated_at' => date('Y-m-d H:i:s')
);
foreach ($data as $key => $val) {
CacheModel::insert($key, $val);
}
CacheModel::go();
return true;
}
/**
* Forget cache item
*
* @param string $ident The item identifier
* @return bool
*/
public static function forget($ident)
{
$item = CacheModel::find($ident, 'ident');
if ($item->count() > 0) {
CacheModel::where('id', '=', $item->get(0)->get('id'))->delete();
return true;
}
return false;
}
/**
* Return the associated table name of the migration
*
* @return string
*/
public static function tableName()
{
return 'CacheModel';
}
}