forked from opennodedb/php-as-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASAPI.php
205 lines (170 loc) · 6.59 KB
/
ASAPI.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
<?php
use PHPHtmlParser\Dom;
class ASAPI
{
private $api_root = 'https://nodedb.walker.wan/api';
private $cookie_file = '/tmp/as-api-cookie.txt';
private $curlopts;
private $ch;
private $cache;
private $config;
public function __construct($config)
{
$this->config = $config;
$this->curlopts = [
/* Enable for further debugging */
//CURLOPT_HEADER => 1,
//CURLOPT_VERBOSE => 1,
CURLOPT_SSL_VERIFYPEER => 0,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_FOLLOWLOCATION => 1,
CURLOPT_TIMEOUT => 60,
CURLOPT_COOKIEJAR => $this->cookie_file,
CURLOPT_COOKIEFILE => $this->cookie_file,
];
$this->ch = curl_init();
curl_setopt_array($this->ch, $this->curlopts);
$this->cache = new Cache('as-api-cache');
}
public function call($api_url, $nocache = false) {
$api_call = $this->api_root . '/' . $api_url;
$is_cached = [
false,
];
// Retrieve from local cache is possible
if(!$nocache && $cached = $this->cache->retrieve($api_url)) {
$json = $cached;
$is_cached = [
true,
];
}
else {
if($this->doLogin()) {
curl_setopt($this->ch, CURLOPT_URL, $api_call);
curl_setopt($this->ch, CURLOPT_POST, 0);
$result = curl_exec($this->ch);
if($result !== false) {
$dom = new Dom;
$dom->load($result);
$tag = $dom->find('meta')[0];
@$meta_content = $tag->content;
$meta_redirect = strpos($meta_content, '1;url=');
if($meta_redirect !== false){
unset($result);
$redirect_url = substr($meta_content, 6);
curl_setopt($this->ch, CURLOPT_URL, $redirect_url);
$result = curl_exec($this->ch);
}
}
}
// Check for errors
// Error within CURL response
$result_json = json_decode($result, true);
if(@$result_json['error']) {
$result = false;
}
// Error within HTML body
$dom = new Dom;
$dom->load($result);
$tag = $dom->find('html');
if(sizeof($tag)) {
$result = false;
}
// If this is a request for a node, and we have some data for it, return the small amount we have
if ($result === false && strpos($api_url, 'nodes/') !== false) {
$node_id = substr($api_url, 6);
// Get full node list and pluck out the one we want
$nodes_data = $this->call('nodes?b', $nocache);
foreach ($nodes_data as $node_data) {
if(@$node_data['id'] == $node_id) {
$node = [
'id' => $node_id,
'name' => $node_data['name'],
'region' => 'UNKNOWN',
'zone' => 'UNKNOWN',
'lat' => $node_data['lat'],
'lng' => $node_data['lng'],
'elevation' => NULL,
'antHeight' => NULL,
'asNum' => NULL,
'ord' => $node_data['ord'],
'zabbixGroudId' => NULL,
'suburb' => [],
'manager' => [],
'status' => [],
'hosts' => [],
'devices' => $node_data['devices'],
'links' => $node_data['links'],
'subnets' => [],
];
$result = json_encode($node);
break;
}
}
}
// Record in cache for a dat + random part of an hour
$this->cache->store($api_url, $result, 86400 + rand(0, 3600));
$json = $result;
}
if($data = json_decode($json, true)) {
$data['is_cached'] = $is_cached;
return $data;
}
else {
return false;
}
}
private function doLogin()
{
if($this->cache->retrieve('logged_in')) {
return true;
}
else {
// Start by getting the _token variable so we can login
$logged_in = false;
$url = 'https://members.air-stream.org/login';
curl_setopt($this->ch, CURLOPT_URL, $url);
curl_setopt($this->ch, CURLOPT_POST, 0);
$result = curl_exec($this->ch);
if ($result !== false) {
$dom = new Dom;
$dom->load($result);
// Check if we're already logged in
$tag = $dom->find('h1')[0];
if(@$tag->innerHtml == 'Sorry, the page you are looking for could not be found.') {
$logged_in = true;
}
if(!$logged_in) {
// Start by getting the _token variable so we can login
$tag = $dom->find('input[name=_token]')[0];
if(!$token = $tag->value) {
die('No token found');
}
// Attempt to login
if($this->config['username'] && $this->config['password'] && $token) {
curl_setopt_array($this->ch, [
CURLOPT_URL => $url,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => [
'_token' => $token,
'username' => $this->config['username'],
'password' => $this->config['password'],
],
]);
$result = curl_exec($this->ch);
if($result === false) {
die('Not logged in?');
}
else {
$logged_in = true;
}
}
}
}
if($logged_in) {
$this->cache->store('logged_in', true, 3600);
}
return $logged_in;
}
}
}