|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Acacha\ForgePublish\Commands\Traits; |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* Trait ItFetchesServers |
|
7
|
|
|
* |
|
8
|
|
|
* @package Acacha\ForgePublish\Commands |
|
9
|
|
|
*/ |
|
10
|
|
|
trait ItFetchesServers |
|
11
|
|
|
{ |
|
12
|
|
|
/** |
|
13
|
|
|
* Fetch servers |
|
14
|
|
|
*/ |
|
15
|
|
View Code Duplication |
protected function fetchServers() |
|
|
|
|
|
|
16
|
|
|
{ |
|
17
|
|
|
$url = config('forge-publish.url') . config('forge-publish.user_servers_uri'); |
|
18
|
|
|
try { |
|
19
|
|
|
$response = $this->http->get($url, [ |
|
|
|
|
|
|
20
|
|
|
'headers' => [ |
|
21
|
|
|
'X-Requested-With' => 'XMLHttpRequest', |
|
22
|
|
|
'Authorization' => 'Bearer ' . fp_env('ACACHA_FORGE_ACCESS_TOKEN') |
|
23
|
|
|
] |
|
24
|
|
|
]); |
|
25
|
|
|
} catch (\Exception $e) { |
|
26
|
|
|
$this->error('And error occurs connecting to the api url: ' . $url); |
|
|
|
|
|
|
27
|
|
|
dd($e); |
|
28
|
|
|
$this->error('Status code: ' . $e->getResponse()->getStatusCode() . ' | Reason : ' . $e->getResponse()->getReasonPhrase()); |
|
|
|
|
|
|
29
|
|
|
return []; |
|
30
|
|
|
} |
|
31
|
|
|
return json_decode((string) $response->getBody()); |
|
32
|
|
|
} |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* Get forge id server from server name. |
|
36
|
|
|
* |
|
37
|
|
|
* @param $servers |
|
38
|
|
|
* @param $server_name |
|
39
|
|
|
* @return mixed |
|
40
|
|
|
*/ |
|
41
|
|
|
protected function getForgeIdServer($servers, $server_name) |
|
42
|
|
|
{ |
|
43
|
|
|
$found_server = $this->searchServer($servers, 'name', $server_name); |
|
44
|
|
|
return $found_server->first() ? $found_server->first()->forge_id : null; |
|
|
|
|
|
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Get forge name from forge id. |
|
49
|
|
|
* |
|
50
|
|
|
* @param $servers |
|
51
|
|
|
* @param $server_id |
|
52
|
|
|
* @return mixed |
|
53
|
|
|
*/ |
|
54
|
|
|
protected function getForgeName($servers, $server_id) |
|
55
|
|
|
{ |
|
56
|
|
|
$found_server = $this->searchServer($servers, 'forge_id', $server_id); |
|
57
|
|
|
return $found_server->first() ? $found_server->first()->name : null; |
|
|
|
|
|
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
/** |
|
61
|
|
|
* Get server ip addres by forge server id. |
|
62
|
|
|
* |
|
63
|
|
|
* @param $servers |
|
64
|
|
|
* @param $server_id |
|
65
|
|
|
* @return mixed |
|
66
|
|
|
*/ |
|
67
|
|
|
protected function serverIpAddress($servers, $server_id) |
|
68
|
|
|
{ |
|
69
|
|
|
$found_server = $this->searchServer($servers, 'forge_id', $server_id); |
|
70
|
|
|
return $found_server->first() ? $found_server->first()->ipAddress : null; |
|
|
|
|
|
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* Search server by property with a specific value. |
|
75
|
|
|
* |
|
76
|
|
|
* @param $servers |
|
77
|
|
|
* @param $property |
|
78
|
|
|
* @param $value |
|
79
|
|
|
* @return static |
|
80
|
|
|
*/ |
|
81
|
|
|
protected function searchServer($servers, $property, $value) |
|
82
|
|
|
{ |
|
83
|
|
|
return collect($servers)->filter(function ($server) use ($property, $value) { |
|
84
|
|
|
return $server->$property == $value; |
|
85
|
|
|
}); |
|
86
|
|
|
} |
|
87
|
|
|
} |
|
88
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.