HummingBirdAnimeClient/tests/TestSessionHandler.php

55 lines
909 B
PHP
Raw Normal View History

2015-10-19 12:50:46 -04:00
<?php
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