-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.php
363 lines (268 loc) · 10.5 KB
/
app.php
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?php
class Config
{
public static function getPadsDir() {
return 'pads';
}
public static function getPadsGitDir() {
return 'pads.git';
}
public static function getCacheDir() {
return 'cache';
}
public static function getLastCommit() {
if(!is_dir(Config::getPadsDir().'/.git')) {
return 'nogit';
}
if(file_exists(Config::getPadsDir().'/.git/refs/heads/master')) {
return str_replace("\n", "", file_get_contents(Config::getPadsDir().'/.git/refs/heads/master'));
}
if(file_exists(Config::getPadsDir().'/.git/info/refs')) {
return explode("\t", file_get_contents(Config::getPadsDir().'/.git/info/refs'))[0];
}
throw new Exception("Ref du dernier commit non trouvé");
}
public static function getCachePadsFile() {
return self::getCacheDir().'/'.self::getLastCommit().'.php.serialize';
}
public static function getQueueDir() {
return 'queue';
}
public static function getQueueLockFile() {
return self::getQueueDir().'/.lock';
}
public static function getRegexpPad() {
return "https://[^/]*[/pad]*/p/[éàèêùûâ;a-zA-Z0-9_,\"-]+";
}
public static function getBaseUrl() {
return 'http'.($_SERVER['SERVER_PORT'] == 443 ? 's' : '').'://'.$_SERVER['HTTP_HOST'].(isset($_SERVER['CONTEXT_PREFIX']) ? $_SERVER['CONTEXT_PREFIX'] : "").'/';
}
public static function getBaseUrlGit() {
return self::getBaseUrl().self::getPadsGitDir();
}
public static function check() {
if(!is_dir(Config::getPadsDir().'/.git')) {
touch(Config::getPadsDir().'/.gitkeep');
shell_exec('cd '.Config::getPadsDir().' && git init 2> /dev/null && git add .gitkeep && git commit -m "Initial commit" && git repack && git pack-refs');
}
$errors = array();
if(!is_writable(Config::getCacheDir())) {
$errors[] = "Le dossier \"".Config::getCacheDir()."\" n'a pas les droits en écriture.";
}
if(!is_readable(Config::getCacheDir())) {
$errors[] = "Le dossier \"".Config::getCacheDir()."\" n'a pas les droits en lecture.";
}
if(!is_readable(Config::getPadsDir())) {
$errors[] = "Le dossier \"".Config::getCacheDir()."\" n'a pas les droits en lecture.";
}
if(!is_writable(Config::getPadsDir())) {
$errors[] = "Le dossier \"".Config::getPadsDir()."\" n'a pas les droits en écriture.";
}
if(!is_readable(Config::getPadsDir().'/.git')) {
$errors[] = "Le dossier \"".Config::getPadsDir()."/.git\" n'a pas les droits en lecture.";
}
if(!is_writable(Config::getPadsDir().'/.git')) {
$errors[] = "Le dossier \"".Config::getPadsDir()."/.git\" n'a pas les droits en écriture.";
}
if(!is_readable(Config::getPadsDir().'/.git/HEAD')) {
$errors[] = "Tous les fichiers du dossier \"".Config::getPadsDir()."/.git\" n'ont pas les droits en lecture.";
}
if(!is_writable(Config::getPadsDir().'/.git/HEAD')) {
$errors[] = "Tous les fichiers du dossier \"".Config::getPadsDir()."/.git\" n'ont pas les droits en écriture.";
}
if(!is_writable(Config::getQueueDir())) {
$errors[] = "Le dossier \"".Config::getQueueDir()."\" n'a pas les droits en écriture.";
}
if(!is_readable(Config::getQueueDir())) {
$errors[] = "Le dossier \"".Config::getQueueDir()."\" n'a pas les droits en lecture.";
}
return $errors;
}
}
class Archive
{
public static function add($url, $time = null) {
$file = Config::getQueueDir().'/'.preg_replace('#^.+\/#', '', $url).'.url';
file_put_contents($file, $url);
if($time) {
touch($file, $time);
}
}
public static function commit($queueFile) {
$url = file_get_contents($queueFile);
$id = preg_replace('#^.+\/#', '', $url);
$file = Config::getPadsDir().'/'.$id;
$txtContent = @file_get_contents($url.'/export/txt');
if(strpos($http_response_header[0], '200 OK') === false) {
echo "Le texte du pad $url n'a pu être récupéré : ".$http_response_header[0]."\n";
unlink($queueFile);
return;
}
if(strpos($txtContent, "Le contenu de ce pad a été effacé") !== false) {
echo "Le texte du pad a été effacé\n";
unlink($queueFile);
return;
}
if(strpos($txtContent, "this pad has been deleted") !== false) {
echo "Le texte du pad a été effacé\n";
unlink($queueFile);
return;
}
if(!trim($txtContent)) {
echo "Le contenu du pad est vide\n";
unlink($queueFile);
return;
}
file_put_contents($file.'.txt', $txtContent);
file_put_contents($file.'.url', $url);
$mdContent = @file_get_contents($url.'/export/markdown');
if(strpos($http_response_header[0], '200 OK') !== false) {
file_put_contents($file.'.md', $mdContent);
}
$htmlContent = @file_get_contents($url.'/export/html');
if(strpos($http_response_header[0], '200 OK') !== false) {
file_put_contents($file.'.html', $htmlContent);
}
$etherpadContent = @file_get_contents($url.'/export/etherpad');
if(strpos($http_response_header[0], '200 OK') !== false) {
file_put_contents($file.'.etherpad', $etherpadContent);
}
echo shell_exec('cd '.Config::getPadsDir().' && git add '.escapeshellarg($id).'.*');
echo shell_exec('cd '.Config::getPadsDir().' && git commit -m "Archivage du pad : '.escapeshellarg($url).'" && git repack && git pack-refs');
unlink($queueFile);
echo "Archivage du pad ".$url."\n";
$pad = PadClient::find($id);
$pad->planNextUpdate();
if($pad->getDateNextArchivage()) {
echo "Nouvelle archivage du pad ".$pad->getUrl()." planifié le ".$pad->getDateNextArchivage()->format('Y-m-d H:i:s')."\n";
}
}
public static function run() {
if(file_exists(Config::getQueueLockFile()) && (time() - filemtime(Config::getQueueLockFile())) < 300) {
echo "Run is lock. Delete \"".Config::getQueueLockFile()."\" file to unlock it.\n";
return;
}
touch(Config::getQueueLockFile());
foreach(glob(Config::getQueueDir().'/*.url') as $queueFile) {
if(filemtime($queueFile) > time()) {
continue;
}
Archive::commit($queueFile);
touch(Config::getQueueLockFile());
}
unlink(Config::getQueueLockFile());
}
}
class Pad
{
protected $id = null;
protected $filename = null;
protected $date = null;
protected $url = null;
protected $title = null;
public function __construct($id) {
$this->id = $id;
$this->date = PadClient::getDatesCommit()[$this->id];
$this->url = str_replace("\n", "", file_get_contents($this->getFile('url')));
$fp = @fopen($this->getFile('txt'), 'r');
$this->title = fgets($fp);
fclose($fp);
}
public function getId() {
return $this->id;
}
public function getFile($extension) {
return Config::getPadsDir().'/'.$this->getId().'.'.$extension;
}
public function getQueueFile() {
return Config::getQueueDir().'/'.$this->getId().'.url';
}
public function getDate() {
return $this->date;
}
public function getTitle() {
return $this->title;
}
public function getUrl() {
return $this->url;
}
public function getContent() {
return file_get_contents($this->getFile('txt'));
}
public function planNextUpdate() {
$hourDiff = floor((time() - $this->getDate()->format('U')) / 3600) + 1;
Archive::add($this->getUrl(), time() + $hourDiff * 3600);
}
public function getDateNextArchivage() {
if(!file_exists($this->getQueueFile())) {
return null;
}
return new \DateTime(date('Y-m-d H:i:s', filemtime($this->getQueueFile())));
}
}
class PadClient
{
public static $datesCommit = null;
public static function search($q = null) {
$pads = self::getAll();
if($q) {
foreach($pads as $k => $pad) {
if($q && strpos(strtolower($pad->getTitle()), strtolower($q)) === false) {
unset($pads[$k]);
}
}
}
return $pads;
}
public static function getDatesCommit() {
if(!is_null(self::$datesCommit)) {
return self::$datesCommit;
}
$gitDates = explode("\n", shell_exec('cd '.Config::getPadsDir().' && git log --pretty="%ai" --name-only'));
$fileDates = array();
$date = null;
foreach($gitDates as $ligne) {
if(preg_match('/^[0-9]{4}-[0-9]{2}-[0-9]{2}/', $ligne)) {
$date = new \DateTime($ligne);
continue;
}
if(!preg_match('/\.txt/', $ligne)) {
continue;
}
if(isset($fileDates[str_replace('.txt', '', $ligne)])) {
continue;
}
if(!file_exists(Config::getPadsDir()."/".$ligne)) {
continue;
}
$fileDates[str_replace('.txt', '', $ligne)] = $date;
}
arsort($fileDates);
self::$datesCommit = $fileDates;
return self::$datesCommit;
}
public static function getAll() {
$cachePadsFile = Config::getCachePadsFile();
if(file_exists($cachePadsFile)) {
return unserialize(file_get_contents($cachePadsFile));
}
self::$datesCommit = null;
$pads = [];
foreach(array_keys(self::getDatesCommit()) as $id) {
$pad = new Pad($id);
$pads[$pad->getId()] = $pad;
}
uasort($pads, function($p1, $p2) { return $p1->getDate() < $p2->getDate(); });
$otherCacheFiles = glob(Config::getCacheDir().'/*.php.serialize');
file_put_contents($cachePadsFile, serialize($pads));
array_map('unlink', $otherCacheFiles);
return $pads;
}
public static function find($id) {
return PadClient::getAll()[$id];
}
public static function extractUrls($content) {
preg_match_all('#'.Config::getRegexpPad().'#', $content, $urls);
return array_values(array_unique($urls[0]));
}
}