HummingBirdAnimeClient/tests/Ion/TestSessionHandler.php

70 lines
1.4 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
2020-03-12 11:45:11 -04:00
* Hummingbird Anime List Client
*
2020-03-12 11:45:11 -04:00
* An API client for Kitsu to manage anime and manga watch lists
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\Ion\Tests;
use SessionHandlerInterface;
2022-03-04 12:19:47 -05:00
class TestSessionHandler implements SessionHandlerInterface
{
public $data = [];
public $save_path = './test_data/sessions';
public function close()
{
return TRUE;
}
public function destroy($id)
{
2022-03-04 12:19:47 -05:00
$file = "{$this->save_path}/{$id}";
if (file_exists($file))
{
@unlink($file);
}
$this->data[$id] = [];
2022-03-04 12:19:47 -05:00
return TRUE;
}
public function gc($maxLifetime)
{
return TRUE;
}
public function open($save_path, $name)
{
/*if ( ! array_key_exists($save_path, $this->data))
{
$this->save_path = $save_path;
$this->data = [];
}*/
return TRUE;
}
public function read($id)
{
2023-05-19 10:56:23 -04:00
return json_decode(@file_get_contents("{$this->save_path}/{$id}"), TRUE, 512, JSON_THROW_ON_ERROR);
}
public function write($id, $data)
{
2022-03-04 12:19:47 -05:00
$file = "{$this->save_path}/{$id}";
2023-05-19 10:56:23 -04:00
file_put_contents($file, json_encode($data, JSON_THROW_ON_ERROR));
return TRUE;
}
}
2022-03-04 12:19:47 -05:00
// End of TestSessionHandler.php