2017-02-16 11:09:37 -05:00
|
|
|
<?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
|
2017-02-16 11:09:37 -05:00
|
|
|
*
|
2018-10-01 11:35:51 -04:00
|
|
|
* PHP version 7.1
|
2017-02-16 11:09:37 -05:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-15 14:43:15 -05:00
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
2017-02-16 11:09:37 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2018-10-01 11:35:51 -04:00
|
|
|
* @version 4.1
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-02-16 11:09:37 -05:00
|
|
|
*/
|
2015-10-19 12:50:46 -04:00
|
|
|
|
2017-02-15 11:49:38 -05:00
|
|
|
namespace Aviat\AnimeClient\Tests;
|
|
|
|
|
|
|
|
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';
|
2015-10-19 12:50:46 -04:00
|
|
|
|
|
|
|
public function close()
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function gc($maxLifetime)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-02-15 11:57:29 -05: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function read($id)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
public function write($id, $data)
|
|
|
|
{
|
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));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// End of TestSessionHandler.php
|