HummingBirdAnimeClient/tests/AnimeClient/TestSessionHandler.php

70 lines
1.4 KiB
PHP
Raw Permalink Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
2018-08-22 13:48:27 -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
*/
2015-10-19 12:50:46 -04:00
2017-02-15 11:49:38 -05:00
namespace Aviat\AnimeClient\Tests;
2022-03-04 12:19:47 -05:00
use SessionHandlerInterface;
2020-03-12 09:52:45 -04:00
2022-03-04 12:19:47 -05:00
class TestSessionHandler implements SessionHandlerInterface
{
2015-10-19 12:50:46 -04:00
public $data = [];
2017-02-15 11:57:29 -05:00
public $savePath = './test_data/sessions';
2020-03-12 09:52:45 -04:00
public function close()
2015-10-19 12:50:46 -04:00
{
return TRUE;
}
2020-03-12 09:52:45 -04:00
public function destroy($id)
2015-10-19 12:50:46 -04:00
{
2022-03-04 12:19:47 -05:00
$file = "{$this->savePath}/{$id}";
2015-10-19 12:50:46 -04:00
if (file_exists($file))
{
@unlink($file);
}
$this->data[$id] = [];
2022-03-04 12:19:47 -05:00
2015-10-19 12:50:46 -04:00
return TRUE;
}
2020-03-12 09:52:45 -04:00
2015-10-19 12:50:46 -04:00
public function gc($maxLifetime)
{
return TRUE;
}
2020-03-12 09:52:45 -04:00
public function open($savePath, $name)
2015-10-19 12:50:46 -04:00
{
2017-02-15 11:57:29 -05:00
/*if ( ! array_key_exists($savePath, $this->data))
2015-10-19 12:50:46 -04:00
{
2017-02-15 11:57:29 -05:00
$this->savePath = $savePath;
2015-10-19 12:50:46 -04:00
$this->data = [];
}*/
return TRUE;
}
2020-03-12 09:52:45 -04:00
public function read($id)
2015-10-19 12:50:46 -04:00
{
2023-05-19 10:56:23 -04:00
return json_decode(@file_get_contents("{$this->savePath}/{$id}"), TRUE, 512, JSON_THROW_ON_ERROR);
2015-10-19 12:50:46 -04:00
}
2020-03-12 09:52:45 -04:00
public function write($id, $data)
2015-10-19 12:50:46 -04:00
{
2022-03-04 12:19:47 -05:00
$file = "{$this->savePath}/{$id}";
2023-05-19 10:56:23 -04:00
file_put_contents($file, json_encode($data, JSON_THROW_ON_ERROR));
2020-03-12 09:52:45 -04:00
2015-10-19 12:50:46 -04:00
return TRUE;
}
}
2022-03-04 12:19:47 -05:00
// End of TestSessionHandler.php