-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathManager.php
More file actions
121 lines (91 loc) · 2.57 KB
/
Manager.php
File metadata and controls
121 lines (91 loc) · 2.57 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
<?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 (count(array_intersect($tags, $storeTags)) > 0) {
$urls[] = $url;
unset($storeData[$key]);
}
}
if (! empty($urls)) {
$this->cacheStore()->forever($this->cacheKey, $storeData);
$this->invalidateUrls($urls);
}
return $this;
}
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));
}
}