Dispatcher.php
1.3 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
<?php
namespace Lackoxygen\ExceptionPush;
use Lackoxygen\ExceptionPush\Contracts\AgentInterface;
use Lackoxygen\ExceptionPush\Contracts\CallbackInterface;
class Dispatcher implements CallbackInterface
{
/**
* @return \Closure|null
*/
public function config(): ?\Closure
{
$dispatcher = ExceptionPush::config('callbacks.dispatcher');
if ($dispatcher instanceof \Closure) {
return $dispatcher;
}
return null;
}
/**
* @return \Closure
*/
public function default(): \Closure
{
return function ($agents, $body) {
foreach ($agents as $agent) {
if (!$agent instanceof AgentInterface) {
continue;
}
if ($agent->dsiabled()) {
continue;
}
try {
$agent->report($body);
} catch (\Exception $exception) {
app('log')->error($exception->getMessage());
}
}
};
}
/**
* @return \Closure
*/
public static function callback(): \Closure
{
$that = new static;
if ($dispatcher = $that->config()) {
return $dispatcher;
}
return $that->default();
}
}