SessionHeart.php
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
namespace Lackoxygen\TiktokShop\Supervisor\Session;
use Illuminate\Cache\CacheManager;
use Lackoxygen\TiktokShop\Contracts\SessionInterface;
use Lackoxygen\TiktokShop\Util\Json;
class SessionHeart
{
protected static ?SessionHeart $sessionHeart = null;
protected CacheManager $cacheManager;
public function __construct()
{
SessionMemory::init();
}
public static function new(): SessionHeart
{
if (is_null(static::$sessionHeart)) {
static::$sessionHeart = new static;
}
return static::$sessionHeart;
}
public function keepalive()
{
SessionMemory::each(function (SessionInterface $session) {
if ($session->effective()) {
return;
}
$session->refresh();
});
}
public function __destruct()
{
$watch = false;
$serializes = [];
SessionMemory::each(function (SessionInterface $session) use (&$watch, &$serializes) {
$serializes[] = serialize($session);
if (!$watch && $session->watch()) {
$watch = true;
}
});
if ($watch) {
SessionMemory::persistence(Json::marshal($serializes));
}
}
}