-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathManager.php
More file actions
140 lines (108 loc) · 3.15 KB
/
Manager.php
File metadata and controls
140 lines (108 loc) · 3.15 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
<?php
namespace Thoughtco\StatamicCacheTracker\Tracker;
use Closure;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Cache;
use InvalidArgumentException;
use Statamic\StaticCaching\Cacher;
use Thoughtco\StatamicCacheTracker\Events\ContentTracked;
class Manager
{
private string $cacheKey = 'tracker::urls';
private array $pipelines = [];
public function add(string $url, array $tags = [])
{
$storeData = $this->all();
$storeData[md5($url)] = [
'url' => $url,
'tags' => collect($tags)->unique()->values()->all(),
];
$this->cacheStore()->forever($this->cacheKey, $storeData);
ContentTracked::dispatch($url, $tags);
return $this;
}
public function addAdditionalTracker(Closure|string $class)
{
if (is_string($class)) {
$class = new $class;
}
$this->pipelines[] = $class;
return $this;
}
public function all()
{
return $this->cacheStore()->get($this->cacheKey) ?? [];
}
public function cacheStore()
{
try {
$store = Cache::store('static_cache');
} catch (InvalidArgumentException $e) {
$store = Cache::store();
}
return $store;
}
public function get(string $url)
{
return $this->all()[md5($url)] ?? null;
}
public function getAdditionalTrackers()
{
return $this->pipelines;
}
public function has(string $url)
{
return Arr::exists($this->all(), md5($url));
}
public function invalidate(array $tags = [])
{
$storeData = $this->all();
$urls = [];
foreach ($storeData as $key => $data) {
$storeTags = $data['tags'];
$url = $data['url'];
if ($this->tagsMatch($tags, $storeTags)) {
$urls[] = $url;
unset($storeData[$key]);
}
}
if (! empty($urls)) {
$this->cacheStore()->forever($this->cacheKey, $storeData);
$this->invalidateUrls($urls);
}
return $this;
}
private function tagsMatch(array $tagsToInvalidate, array $storeTags): bool
{
foreach ($tagsToInvalidate as $tag) {
// Handle wildcard tags (ending with *)
if (str_ends_with($tag, '*')) {
$prefix = substr($tag, 0, -1);
foreach ($storeTags as $storeTag) {
if (str_starts_with($storeTag, $prefix)) {
return true;
}
}
} elseif (in_array($tag, $storeTags)) {
return true;
}
}
return false;
}
private function invalidateUrls($urls)
{
$cacher = app(Cacher::class);
$cacher->invalidateUrls($urls);
}
public function flush()
{
$urls = collect($this->all())->pluck('url');
$this->invalidateUrls($urls);
$this->cacheStore()->forever($this->cacheKey, []);
}
public function remove(string $url)
{
$this->invalidateUrls([$url]);
$this->cacheStore()->forget(md5($url));
}
}