File.php
6.45 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?php
declare(strict_types=1);
namespace ACP\Search\SegmentRepository;
use AC\OpCacheInvalidateTrait;
use AC\Type\ListScreenId;
use ACP\Exception\DirectoryNotWritableException;
use ACP\Exception\FailedToCreateDirectoryException;
use ACP\Exception\FailedToSaveSegmentException;
use ACP\Exception\FileNotWritableException;
use ACP\Search\Entity\Segment;
use ACP\Search\SegmentCollection;
use ACP\Search\SegmentRepository;
use ACP\Search\Storage;
use ACP\Search\Type\SegmentKey;
use ACP\Storage\AbstractDecoderFactory;
use ACP\Storage\Decoder;
use ACP\Storage\Directory;
use ACP\Storage\EncoderFactory;
use ACP\Storage\Serializer;
use SplFileInfo;
final class File implements SegmentRepository
{
use OpCacheInvalidateTrait;
use KeyGeneratorTrait;
private const SUFFIX = '_segments';
private $directory;
private $decoder_factory;
private $encoder_factory;
private $serializer;
public function __construct(
Directory $directory,
AbstractDecoderFactory $decoder_factory,
EncoderFactory $encoder_factory,
Serializer\PhpSerializer\File $serializer
) {
$this->directory = $directory;
$this->decoder_factory = $decoder_factory;
$this->encoder_factory = $encoder_factory;
$this->serializer = $serializer;
}
public function find(SegmentKey $key): ?Segment
{
foreach ($this->find_all(null, new Sort\Nullable()) as $segment) {
if ($key->equals($segment->get_key())) {
return $segment;
}
}
return null;
}
public function find_all(ListScreenId $list_screen_id = null, Sort $sort = null): SegmentCollection
{
if (null === $sort) {
$sort = new Sort\Name();
}
$segments = [];
/** @var SplFileInfo $file */
foreach ($this->directory->get_iterator() as $file) {
if ( ! $file->isReadable() ||
! $file->isFile() ||
! $file->getSize() ||
! str_contains($file->getBasename(), self::SUFFIX) ||
$file->getExtension() !== $this->get_file_extension() ||
($list_screen_id !== null && 0 !== strpos($file->getBasename(), (string)$list_screen_id))
) {
continue;
}
$encoded_data = require($file->getRealPath());
if ( ! $this->decoder_factory->can_create($encoded_data)) {
continue;
}
$decoder = $this->decoder_factory->create($encoded_data);
if ( ! $decoder instanceof Decoder\SegmentsDecoder || ! $decoder->has_segments()) {
continue;
}
foreach ($decoder->get_segments() as $segment) {
$segments[] = $segment;
}
}
return $sort->sort(new SegmentCollection($segments));
}
public function find_all_by_user(
int $user_id,
ListScreenId $list_screen_id = null,
Sort $sort = null
): SegmentCollection {
return new SegmentCollection([]);
}
public function find_all_global(ListScreenId $list_screen_id = null, Sort $sort = null): SegmentCollection
{
return $this->find_all($list_screen_id, $sort);
}
/**
* @throws FailedToSaveSegmentException
* @throws FailedToCreateDirectoryException
* @throws DirectoryNotWritableException
* @throws FileNotWritableException
*/
public function create(
SegmentKey $segment_key,
ListScreenId $list_screen_id,
string $name,
array $url_parameters,
int $user_id = null
): Segment {
if ( ! $this->directory->exists()) {
$this->directory->create();
}
if ( ! $this->directory->get_info()->isWritable()) {
throw new DirectoryNotWritableException($this->directory->get_path());
}
if ($this->find($segment_key)) {
throw FailedToSaveSegmentException::from_duplicate_key($segment_key);
}
$file = $this->create_file_name($list_screen_id);
$segment = new Segment(
$segment_key,
$list_screen_id,
$name,
$url_parameters,
$user_id
);
$segments = $this->get_segments_from_file($file);
$segments->add($segment);
$this->update_file($segments, $file, $list_screen_id);
return $segment;
}
/**
* @throws FileNotWritableException
*/
public function delete(SegmentKey $key): void
{
$segment = $this->find($key);
if ( ! $segment) {
return;
}
$file = $this->create_file_name($segment->get_list_screen_id());
$segments = $this->get_segments_from_file($file);
$segments->remove($key);
$this->update_file(
$segments,
$file,
$segment->get_list_screen_id()
);
}
private function get_segments_from_file(string $file): SegmentCollection
{
$segments = new SegmentCollection();
$info = new SplFileInfo($file);
if ($info->isFile()) {
$encoded_data = require($info->getRealPath());
if (is_array($encoded_data) && $this->decoder_factory->can_create($encoded_data)) {
$decoder = $this->decoder_factory->create($encoded_data);
if ($decoder instanceof Decoder\SegmentsDecoder && $decoder->has_segments()) {
$segments = $decoder->get_segments();
}
}
}
return $segments;
}
/**
* @throws FileNotWritableException
*/
private function update_file(SegmentCollection $segments, string $file, ListScreenId $list_screen_id): void
{
$encoded_data = $this->encoder_factory
->create()
->set_segments($segments)
->encode();
$result = file_put_contents(
$file,
$this->serializer->serialize($encoded_data)
);
if ($result === false) {
throw FileNotWritableException::from_saving_segment($list_screen_id);
}
$this->opcache_invalidate($file);
}
private function create_file_name(ListScreenId $id): string
{
return sprintf(
'%s/%s%s.%s',
$this->directory->get_path(),
$id,
self::SUFFIX,
$this->get_file_extension()
);
}
private function get_file_extension(): string
{
return 'php';
}
}