-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathFileSessionStore.php
More file actions
155 lines (123 loc) · 3.72 KB
/
FileSessionStore.php
File metadata and controls
155 lines (123 loc) · 3.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
/*
* This file is part of the official PHP MCP SDK.
*
* A collaboration between Symfony and the PHP Foundation.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mcp\Server\Session;
use Mcp\Server\NativeClock;
use Psr\Clock\ClockInterface;
use Symfony\Component\Uid\Uuid;
/**
* File-based session store.
* Stores each session as a file named by the RFC4122 UUID, with the payload.
*/
class FileSessionStore implements SessionStoreInterface
{
public function __construct(
private readonly string $directory,
private readonly int $ttl = 3600,
private readonly ClockInterface $clock = new NativeClock(),
) {
if (!is_dir($this->directory)) {
@mkdir($this->directory, 0775, true);
}
if (!is_dir($this->directory) || !is_writable($this->directory)) {
throw new \RuntimeException(\sprintf('Session directory "%s" is not writable.', $this->directory));
}
}
public function exists(Uuid $id): bool
{
$path = $this->pathFor($id);
if (!is_file($path)) {
return false;
}
$mtime = @filemtime($path) ?: 0;
return ($this->clock->now()->getTimestamp() - $mtime) <= $this->ttl;
}
public function read(Uuid $id): string|false
{
$path = $this->pathFor($id);
if (!is_file($path)) {
return false;
}
$mtime = @filemtime($path) ?: 0;
if (($this->clock->now()->getTimestamp() - $mtime) > $this->ttl) {
@unlink($path);
return false;
}
$data = @file_get_contents($path);
if (false === $data) {
return false;
}
return $data;
}
public function write(Uuid $id, string $data): bool
{
$path = $this->pathFor($id);
$tmp = $path.'.tmp';
if (false === @file_put_contents($tmp, $data, \LOCK_EX)) {
return false;
}
// Atomic move
if (!@rename($tmp, $path)) {
// Fallback if rename fails cross-device
if (false === @copy($tmp, $path)) {
@unlink($tmp);
return false;
}
@unlink($tmp);
}
@touch($path, $this->clock->now()->getTimestamp());
return true;
}
public function destroy(Uuid $id): bool
{
$path = $this->pathFor($id);
if (is_file($path)) {
@unlink($path);
}
return true;
}
/**
* Remove sessions older than the configured TTL.
* Returns an array of deleted session IDs (UUID instances).
*/
public function gc(): array
{
$deleted = [];
$now = $this->clock->now()->getTimestamp();
$dir = @opendir($this->directory);
if (false === $dir) {
return $deleted;
}
while (($entry = readdir($dir)) !== false) {
// Skip dot entries
if ('.' === $entry || '..' === $entry) {
continue;
}
$path = $this->directory.\DIRECTORY_SEPARATOR.$entry;
if (!is_file($path)) {
continue;
}
$mtime = @filemtime($path) ?: 0;
if (($now - $mtime) > $this->ttl) {
@unlink($path);
try {
$deleted[] = Uuid::fromString($entry);
} catch (\Throwable) {
// ignore non-UUID file names
}
}
}
closedir($dir);
return $deleted;
}
private function pathFor(Uuid $id): string
{
return $this->directory.\DIRECTORY_SEPARATOR.$id->toRfc4122();
}
}