forked from beyondcode/laravel-self-diagnosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServersArePingable.php
111 lines (95 loc) · 3.5 KB
/
ServersArePingable.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
<?php
namespace BeyondCode\SelfDiagnosis\Checks;
use BeyondCode\SelfDiagnosis\Exceptions\InvalidConfigurationException;
use BeyondCode\SelfDiagnosis\Server;
use Illuminate\Support\Collection;
use JJG\Ping;
class ServersArePingable implements Check
{
protected const DEFAULT_TIMEOUT = 5;
/** @var Collection */
protected $notReachableServers;
/**
* The name of the check.
*
* @param array $config
* @return string
*/
public function name(array $config): string
{
return trans('self-diagnosis::checks.servers_are_pingable.name');
}
/**
* Perform the actual verification of this check.
*
* @param array $config
* @return bool
* @throws InvalidConfigurationException
*/
public function check(array $config): bool
{
$this->notReachableServers = $this->parseConfiguredServers(array_get($config, 'servers', []));
if ($this->notReachableServers->isEmpty()) {
return true;
}
$this->notReachableServers = $this->notReachableServers->reject(function (Server $server) {
$ping = new Ping($server->getHost());
$ping->setPort($server->getPort());
$ping->setTimeout($server->getTimeout());
if ($ping->getPort() === null) {
$latency = $ping->ping('exec');
} else {
$latency = $ping->ping('fsockopen');
}
return $latency !== false;
});
return $this->notReachableServers->isEmpty();
}
/**
* The error message to display in case the check does not pass.
*
* @param array $config
* @return string
*/
public function message(array $config): string
{
return $this->notReachableServers->map(function (Server $server) {
return trans('self-diagnosis::checks.servers_are_pingable.message', [
'host' => $server->getHost(),
'port' => $server->getPort() ?? 'n/a',
'timeout' => $server->getTimeout(),
]);
})->implode(PHP_EOL);
}
/**
* Parses an array of servers which can be given in different formats.
* Unifies the format for the resulting collection.
*
* @param array $servers
* @return Collection
* @throws InvalidConfigurationException
*/
private function parseConfiguredServers(array $servers): Collection
{
$result = new Collection();
foreach ($servers as $server) {
if (is_array($server)) {
if (!empty(array_except($server, ['host', 'port', 'timeout']))) {
throw new InvalidConfigurationException('Servers in array notation may only contain a host, port and timeout parameter.');
}
if (!array_has($server, 'host')) {
throw new InvalidConfigurationException('For servers in array notation, the host parameter is required.');
}
$host = array_get($server, 'host');
$port = array_get($server, 'port');
$timeout = array_get($server, 'timeout', self::DEFAULT_TIMEOUT);
$result->push(new Server($host, $port, $timeout));
} else if (is_string($server)) {
$result->push(new Server($server, null, self::DEFAULT_TIMEOUT));
} else {
throw new InvalidConfigurationException('The server configuration may only contain arrays or strings.');
}
}
return $result;
}
}