-
Notifications
You must be signed in to change notification settings - Fork 1
/
Core.php
370 lines (329 loc) · 8.1 KB
/
Core.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
364
365
366
367
368
369
370
<?php
/**
* Mollicute
*
* @author Siwaÿll <[email protected]>
* @license CC by-nc http://creativecommons.org/licenses/by-nc/3.0/fr/
*/
namespace Siwayll\Mollicute;
use Monolog\Logger;
use Siwayll\Mollicute\Abort;
/**
* Mollicute
*
* @author Siwaÿll <[email protected]>
* @license CC by-nc http://creativecommons.org/licenses/by-nc/3.0/fr/
*/
class Core
{
/**
* Liste des Command à exécuter
*
* @var \Siwayll\Mollicute\Command[]
*/
private $plan = [];
/**
* Commande courante
*
* @var \Siwayll\Mollicute\Command
*/
private $curCmd;
/**
* Résultat de l'aspiration de la commande
*
* @var string
*/
private $curContent;
/**
* Systeme de log monolog
*
* @var Logger
*/
private $log;
/**
*
* @var Curl
*/
protected $curl;
/**
* Chemin vers le fichier de sauvegarde du plan
*
* @var string
*/
private $savePath;
/**
* Création d'un plan d'aspiration Mollicute
*/
public function __construct()
{
$this->curl = new Curl();
}
/**
* Retourne l'objet Curl utilisé
*
* @return Curl
*/
public function getCurl()
{
return $this->curl;
}
/**
* Paramétrage du log
*
* @param Logger $logger Système de log
*
* @return self
*/
public function setLogger(Logger $logger)
{
$this->log = $logger;
return $this;
}
/**
* Ajout d'un plugin
*
* @param string $name Namespace du plugin
*
* @return self
*/
public function addPlugin($name)
{
Command::addPugin($name);
$coreName = $name . '\Core';
$this->plugins[] = new $coreName;
return $this;
}
/**
* Appel des fonctions des plugins
*
* @param string $name Nom de la fonction
* @param mixed $args Paramètres
*
* @return mixed
* @throws Exception
*/
public function __call($name, array $args)
{
foreach ($this->plugins as $plugin) {
if (is_callable([$plugin, $name])) {
$return = call_user_func_array([$plugin, $name], $args);
if (
$return !== null
&& (
is_object($return)
&& get_class($return) !== get_class($plugin)
)
) {
return $return;
}
return $this;
}
}
throw new Exception('Aucune fonction à ce nom');
}
/**
* Initialisation du plan
*
* @param \Siwayll\Mollicute\Command $start Première aspiration
*
* @return self
*/
public function startWith(Command $start)
{
$this->plan = [$start];
return $this;
}
/**
* Récupération d'un plan sauvegardé
*
* @return $this
* @throws \Exception
*/
public function recovery()
{
if (empty($this->savePath)) {
throw new \Exception('Aucune reprise possible');
}
$data = file_get_contents($this->savePath);
$this->plan = unserialize($data);
return $this;
}
/**
* Enregistre le chemin du fichier de sauvegarde
*
* @param string $path Chemin vers le fichier de sauvegarde
*
* @return $this
*/
public function setSavePath($path)
{
$this->savePath = $path;
return $this;
}
/**
* Arrêt de l'aspiration
*
* @return self
*/
public function stop()
{
if (!empty($this->savePath)) {
$data = serialize($this->plan);
file_put_contents($this->savePath, $data);
unset($data);
}
return $this;
}
/**
* Lance l'éxécution de l'aspiration
*
* @return void
* @throws
*/
public function run()
{
if (empty($this->log)) {
throw new Exception('Un logger est nécessaire');
}
$this->curl->setLogger($this->log);
$this->execPlugin('init');
do {
$this->curContent = null;
$this->curCmd = array_pop($this->plan);
try {
$this->execPlugin('before', $this->curCmd);
$this->exec('CallPre', $this->curCmd);
} catch (Abort $exc) {
continue;
}
// Paramétrage curl
$this->curl->setOpts($this->curCmd->getCurlOpts());
// éxecution curl
$this->curContent = $this->curl->exec($this->curCmd->getUrl());
$this->exec('CallBack', $this->curCmd);
$this->execPlugin('after', $this->curCmd);
$this->exec('CallAfterPlug', $this->curCmd);
$this->sleep($this->curCmd);
} while (!empty($this->plan));
}
/**
* Temporisation
*
* @param Command $command Command courante
*/
private function sleep(Command $command)
{
if ($command->getSleep() === false) {
return;
}
$progress = null;
foreach ($this->plugins as $plugin) {
if (method_exists($plugin, 'getTickSleep')) {
$progress = $plugin->getTickSleep();
break;
}
}
for ($i = $command->getSleep(); $i > 0; $i--) {
if (is_callable($progress)) {
$progress($i);
}
sleep(1);
}
}
/**
* Exécution d'une callback
*
* @param string $stepName Nom de l'étape
* @param Command $command Command courante
*
* @return self
* @throws Exception Des plugins
* @throws Stop Lors d'une demande d'arret de l'aspiration
*/
private function exec($stepName = 'CallBack', Command $command)
{
$funcTestName = 'has' . $stepName;
if ($command->$funcTestName() !== true) {
return $this;
}
unset($funcTestName);
$funcName = 'get' . $stepName;
try {
foreach (call_user_func($command->$funcName(), $this->curContent, $command) as $cmd) {
if (is_a($cmd, '\\Siwayll\\Mollicute\\Command')) {
$this->add($cmd);
}
}
} catch (Stop $exc) {
$this->stop();
throw $exc;
}
return $this;
}
/**
* Execution d'un plugin
*
* @param string $name Nom de l'étape
* @param Command $command Command courante
*
* @return self
* @throws Exception Des plugins
* @throws Stop Lors d'une demande d'arret de l'aspiration
* @throws Abort Pour une annulation de l'ordre d'aspi courant
*/
private function execPlugin($name, Command $command = null)
{
try {
foreach ($this->plugins as $plugin) {
if (method_exists($plugin, $name)) {
$plugin->$name($command, $this->curContent, $this);
}
}
} catch (Abort $exc) {
$this->log->addNotice(
'Annulation ordre',
[$command, $exc]
);
throw $exc;
} catch (Stop $exc) {
$this->stop();
throw $exc;
}
return $this;
}
/**
* Ajoute une liste de commandes au plan d'aspiration
*
* @param \Siwayll\Mollicute\Command[] $cmds Liste de Command
*
* @return self
*/
public function addToPlan(array $cmds)
{
foreach ($cmds as $cmd) {
$this->add($cmd);
}
return $this;
}
/**
* Ajoute une commande au plan d'aspiration
*
* @param \Siwayll\Mollicute\Command $cmd Ordre d'aspiration à ajouter
*
* @return self
*/
public function add(Command $cmd)
{
$this->plan[] = $cmd;
return $this;
}
/**
* Retourne le nombre d'éléments présent dans le plan d'aspiration
*
* @return int
*/
public function countPlan()
{
return count($this->plan);
}
}