-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIpstack.php
275 lines (242 loc) · 4.73 KB
/
Ipstack.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
namespace Sujip\Ipstack;
use Sujip\Ipstack\Exception\Forbidden;
use Sujip\Ipstack\Http\Request;
/**
* Class GeoIp.
*/
class Ipstack
{
/**
* @var string
*/
protected $ip;
/**
* @var string
*/
protected $api_key;
/**
* @var boolean
*/
protected $secure = false;
/**
* @var array
*/
protected $items = [];
/**
* Create new instance.
*
* @param $ip
* @param $api_key
*/
public function __construct($ip, $api_key = null)
{
$this->ip = $ip;
$this->api_key = $api_key;
}
/**
* Set HTTPS mode on for API call.
*
* @return boolean
*/
public function secure()
{
$this->secure = true;
return $this;
}
/**
* Make an API call with IP
*
* @return \Sujip\Ipstack\Http\Response
*/
public function call()
{
try {
$request = new Request([
'ip' => $this->ip,
'api_key' => $this->api_key,
'secure' => $this->secure,
]);
$response = $request->make();
} catch (Forbidden $e) {
throw new Forbidden('Error: No IP specified', 403);
}
return $response->getBody();
}
/**
* Resolve if the API returns the coulumn.
*
* @param $key
* @param $default
*/
public function resolve($key, $default = null)
{
if (!sizeof($this->items)) {
$this->items = $this->call();
}
if (isset($this->items[$key])) {
return $this->items[$key];
}
return $default;
}
/**
* Get formatted address by IP
* eg: Kathmandu, Central Region, Nepal
*
* @return string
*/
public function formatted()
{
$address = array_filter([
$this->city(),
$this->zip(),
$this->region(),
$this->country(),
]);
return implode(', ', $address);
}
/**
* Get IP address, eg: 27.34.19.106
*
* @return string
*/
public function ip()
{
return $this->resolve('ip');
}
/**
* Get continent eg: Asia
*
* @return string
*/
public function continent()
{
return $this->resolve('continent_name');
}
/**
* Get continent_code eg AS
*
* @return string
*/
public function continentCode()
{
return $this->resolve('continent_code');
}
/**
* Get country code, eg:NP
*
* @return string
*/
public function countryCode()
{
return $this->resolve('country_code');
}
/**
* Get country name, eg: Nepal
*
* @return string
*/
public function country()
{
return $this->resolve('country_name');
}
/**
* Get your region eg: Central Region
*
* @return string
*/
public function region()
{
return $this->resolve('region_name');
}
/**
* Gey your region_code: 1
*
* @return string
*/
public function regionCode()
{
return $this->resolve('region_code');
}
/**
* Get city, eg: Kathmandu
*
* @return string
*/
public function city()
{
return $this->resolve('city');
}
/**
* Get zip code, eg: 33700
*
* @return string
*/
public function zip()
{
return $this->resolve('zip');
}
/**
* Get your capital eg: Kathmandu
*
* @return string
*/
public function capital()
{
return $this->resolve('location')['capital'] ?? null;
}
/**
* Get latitude eg: 27.6667
*
* @return string
*/
public function latitude()
{
return $this->resolve('latitude');
}
/**
* Get longitude eg: 85.3167
*
* @return string
*/
public function longitude()
{
return $this->resolve('longitude');
}
/**
* Get timezone eg: Asia/Kathmandu
*
* @return string
*/
public function timezone()
{
return $this->resolve('time_zone')['id'] ?? null;
}
/**
* Get connection, isp eg: WorldLink Communications Pvt Ltd
*
* @return string
*/
public function isp()
{
return $this->resolve('connection')['isp'] ?? null;
}
/**
* Get curreny code eg: NPR
*
* @return string
*/
public function currency()
{
return $this->resolve('currency')['code'] ?? null;
}
/**
* Get the currency name eg: Nepalese Rupee
*
* @return string
*/
public function currencyName()
{
return $this->resolve('currency')['name'] ?? null;
}
}