|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Imanghafoori\HeyMan\Reactions; |
|
4
|
|
|
|
|
5
|
|
|
use Imanghafoori\HeyMan\ChainManager; |
|
6
|
|
|
|
|
7
|
|
|
final class ReactionFactory |
|
8
|
|
|
{ |
|
9
|
|
|
/** |
|
10
|
|
|
* @return \Closure |
|
11
|
|
|
*/ |
|
12
|
96 |
|
public function make(): \Closure |
|
13
|
|
|
{ |
|
14
|
96 |
|
$reaction = $this->makeReaction(); |
|
15
|
96 |
|
$condition = resolve(ChainManager::class)->get('condition'); |
|
16
|
|
|
|
|
17
|
96 |
|
return function (...$f) use ($condition, $reaction) { |
|
18
|
67 |
|
if (!$condition($f)) { |
|
19
|
56 |
|
$reaction(); |
|
20
|
|
|
} |
|
21
|
96 |
|
}; |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
96 |
|
private function makeReaction(): \Closure |
|
25
|
|
|
{ |
|
26
|
96 |
|
$chain = resolve(ChainManager::class); |
|
27
|
96 |
|
|
|
28
|
96 |
|
$beforeReaction = $this->makePreResponseActions($chain); |
|
29
|
96 |
|
|
|
30
|
|
|
$debug = $chain->get('debugInfo'); |
|
31
|
96 |
|
$termination = $chain->get('termination'); |
|
32
|
|
|
|
|
33
|
96 |
|
$responder = resolve(ResponderFactory::class)->make(); |
|
34
|
56 |
|
|
|
35
|
1 |
|
return function () use ($beforeReaction, $responder, $debug, $termination) { |
|
36
|
|
|
if ($termination) { |
|
37
|
56 |
|
app()->terminating($termination); |
|
|
|
|
|
|
38
|
56 |
|
} |
|
39
|
55 |
|
event('heyman_reaction_is_happening', $debug); |
|
40
|
96 |
|
$beforeReaction(); |
|
41
|
|
|
$responder(); |
|
42
|
|
|
}; |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @param $chain |
|
47
|
|
|
* @return \Closure |
|
48
|
|
|
*/ |
|
49
|
|
|
private function makePreResponseActions($chain): \Closure |
|
50
|
|
|
{ |
|
51
|
|
|
$tasks = $this->convertToClosures($chain); |
|
52
|
|
|
$beforeReaction = function () use ($tasks) { |
|
53
|
|
|
foreach ($tasks as $task) { |
|
54
|
|
|
$task(); |
|
55
|
|
|
} |
|
56
|
|
|
}; |
|
57
|
|
|
|
|
58
|
|
|
return $beforeReaction; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @param $chain |
|
63
|
|
|
* @return array |
|
64
|
|
|
*/ |
|
65
|
|
|
private function convertToClosures($chain): array |
|
66
|
|
|
{ |
|
67
|
|
|
$tasks = $chain->get('beforeReaction'); |
|
68
|
|
|
$r = []; |
|
69
|
|
|
foreach ($tasks as $task) { |
|
70
|
|
|
if ($task[1] == 'event') { |
|
71
|
|
|
|
|
72
|
|
|
$r[] = function () use ($task) { |
|
73
|
|
|
resolve('events')->dispatch(...$task[0]); |
|
|
|
|
|
|
74
|
|
|
}; |
|
75
|
|
|
} elseif ($task[1] == 'cb') { |
|
76
|
|
|
$r[] = function () use ($task) { |
|
77
|
|
|
app()->call(...$task[0]); |
|
|
|
|
|
|
78
|
|
|
}; |
|
79
|
|
|
} |
|
80
|
|
|
} |
|
81
|
|
|
return $r; |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
|