HummingBirdAnimeClient/tests/AnimeClient/TestSessionHandler.php

69 lines
1.3 KiB
PHP
Raw 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
*
2020-03-11 15:15:05 -04:00
* PHP version 7.3
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-06 09:16:35 -05:00
* @version 4.2
* @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;
class TestSessionHandler implements \SessionHandlerInterface {
2020-03-12 09:52:45 -04:00
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
{
2017-02-15 11:57:29 -05:00
$file = "$this->savePath/$id";
2015-10-19 12:50:46 -04:00
if (file_exists($file))
{
@unlink($file);
}
$this->data[$id] = [];
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
{
2017-02-15 11:57:29 -05:00
return json_decode(@file_get_contents("$this->savePath/$id"), TRUE);
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
{
2017-02-15 11:57:29 -05:00
$file = "$this->savePath/$id";
2015-10-19 12:50:46 -04:00
file_put_contents($file, json_encode($data));
2020-03-12 09:52:45 -04: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
}
// End of TestSessionHandler.php