-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessCronJobs.module
More file actions
235 lines (202 loc) · 5.07 KB
/
ProcessCronJobs.module
File metadata and controls
235 lines (202 loc) · 5.07 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
<?php
/**
* COPYRIGHT NOTICE
* Copyright (c) 2023 Neue Rituale GbR
* @author NR <code@neuerituale.com>
*/
namespace ProcessWire;
require_once ('CronJob.php');
/**
* @method void register()
* @method CronJob add(CronJob|string $name, callable $callback, array $options = [])
* @method CronJob|null remove($name)
*/
class ProcessCronJobs extends Process implements Module, ConfigurableModule {
public array $crons = [];
const cacheNs = 'ProcessCronJobs';
public static function getModuleInfo(): array
{
return [
'title' => 'Process Cron Jobs',
'version' => 100,
'summary' => __('Manage the execution of CronJobs'),
'icon' => 'clock-o',
'singular' => true,
'autoload' => true,
'permission' => 'cronjobs-list',
'permissions' => [
'cronjobs-list' => 'List and call cron jobs.'
],
'page' => [
'name' => 'cronjobs',
'parent' => 'setup',
'title' => __('CronJobs'),
],
];
}
/**
* Init
* @return void
* @throws WireException
*/
public function init(): void
{
$this->addHookBefore('Modules::saveConfig', $this, 'hookClearCaches');
$this->register();
$this->run(CronJob::timingInit);
}
/**
* Ready
* @return void
* @throws WireException
*/
public function ready(): void
{
$this->run(CronJob::timingReady);
}
/**
* Register cron
* @return void
*/
public function ___register(): void
{}
/**
* Hookable Method to disable the crons
* @return bool
*/
public function ___isEnabled() {
return (bool) $this->enabled;
}
/**
* @param int $timing
* @return void
* @throws WireException
*/
public function run(int $timing = CronJob::timingReady): void
{
$requestPath = wire()->config->requestPath();
$path = $this->getPath();
$crons = $this->crons;
wire()->addHook(rtrim($path, '/') . '(\/[a-z0-9-]+)?/', function() use($path, $crons, $requestPath, $timing) {
// set last run time
wire()->cache->saveFor(self::cacheNs, 'lastRun', time());
// Workaround to bypass the response type check in LazyCron::afterPageView
wire()->addHookAfter('ProcessPageView::finished', function() {
wire()->process->setResponseType(ProcessPageView::responseTypeNormal);
}, ['priority' => 1]);
/** @var CronJob $cron */
foreach (array_filter($crons, function($cron) use($timing) { return $cron->timing === $timing; }) as $cron) {
if($requestPath === $path . $cron->getPath()) $cron->run();
}
return true;
});
}
/**
* @param CronJob|string $name
* @param callable|string $callback
* @param array $options
* @return CronJob
*/
public function ___add(CronJob|string $name, callable|string $callback, array $options = []): CronJob
{
$options = array_merge([
'lazyCron' => null,
'timing' => CronJob::timingReady,
'ns' => null
], $options);
if($name instanceof CronJob) {
$cron = $name;
} else {
$cron = new CronJob();
$cron->setArray($options);
$cron->setArray([
'name' => $name,
'callback' => $callback,
]);
}
$this->crons[$cron->name] = $cron;
return $cron;
}
/**
* remove a cron
* @param $name
* @return CronJob|null
*/
public function ___remove($name): ?CronJob
{
if(array_key_exists($name, $this->crons)) {
$result = $this->crons[$name];
unset($this->crons[$name]);
return $result;
}
return null;
}
/**
* @param $name
* @return CronJob|null
*/
public function getCron($name): ?CronJob
{
return array_key_exists($name, $this->crons) ? $this->crons[$name] : null;
}
/**
* Show table
* @return array
*/
public function ___execute(): array
{
return [
'processInstance' => $this,
];
}
/**
* Force run cron jon
* @return void
* @throws WireException
*/
public function ___executeRun(): void
{
$name = $this->sanitizer->pascalCase($this->input->urlSegment2);
$cron = $this->getCron($name);
if($cron instanceof CronJob) {
if($cron->run(true)) $this->message(sprintf($this->_('The cronjob “%s” was successfully executed'), $cron->name));
elseif ($cron->lastError) $this->error($cron->lastError);
} else {
$this->error($this->_('The cronjob could not be found!'));
}
$this->session->redirect($this->page->url);
}
/**
* Get base path
* @param bool $mask
* @return string
*/
public function getPath(bool $mask = false): string
{
$path = wire()->config->urls->root . trim($this->path, '/') . '/';
if(!empty($this->secret)) {
$path .= $mask
? '*****/'
: (trim($this->secret) . '/');
}
return $path;
}
/**
* Delete cache entries
* @param HookEvent $event
* @return void
*/
public function hookClearCaches(HookEvent $event){
if ($event->arguments[0] !== $this->className) return;
$data = $event->arguments(1);
if(is_array($data) && array_key_exists('clearCaches', $data) && $data['clearCaches']) {
$cache = wire()->cache;
// get cache entry count and delete entries
$cacheEntriesCount = count($cache->getFor(CronJob::cronjobCacheNs, '*'));
$cache->deleteFor(CronJob::cronjobCacheNs);
wire()->message(sprintf(__('%s cache entries deleted'), $cacheEntriesCount));
$data['clearCaches'] = 0;
$event->arguments(1, $data);
}
}
}