-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathapi.rs
More file actions
328 lines (253 loc) · 8.44 KB
/
api.rs
File metadata and controls
328 lines (253 loc) · 8.44 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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
// Copyright 2019 IPinfo library developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! IPinfo API data structures.
use std::collections::HashMap;
use serde::{Deserialize, Serialize};
use serde_json::Value;
/// IP address lookup details.
#[derive(Debug, Default, Deserialize, Serialize, Clone)]
pub struct IpDetails {
/// The IP address.
pub ip: String,
/// The reverse DNS lookup hostname of the IP address.
pub hostname: Option<String>,
/// The city for the IP address.
pub city: String,
/// The region for the IP address.
pub region: String,
/// The country for the IP address.
pub country: String,
/// The countryname for the IP address.
pub country_name: Option<String>,
/// EU status of the country.
pub is_eu: Option<bool>,
/// Flag and unicode of the country.
pub country_flag: Option<CountryFlag>,
/// Link of the Flag of country.
pub country_flag_url: Option<String>,
/// Code and symbol of the country's currency.
pub country_currency: Option<CountryCurrency>,
/// Code and name of the continent.
pub continent: Option<Continent>,
/// The geographical location for the IP address.
pub loc: String,
/// The organization for the IP address.
pub org: Option<String>,
/// The postal code for the IP address.
pub postal: Option<String>,
/// The timezone for the IP address.
pub timezone: Option<String>,
/// The AS details the IP address is part of.
pub asn: Option<AsnDetails>,
/// The company details that owns this IP address.
pub company: Option<CompanyDetails>,
/// The carrier details that owns this mobile IP address.
pub carrier: Option<CarrierDetails>,
/// The privacy details for the IP address.
pub privacy: Option<PrivacyDetails>,
/// The abuse details for the IP address.
pub abuse: Option<AbuseDetails>,
/// The hosted domains details for the IP address.
pub domains: Option<DomainsDetails>,
/// If the IP Address is Bogon
pub bogon: Option<bool>,
#[serde(flatten)]
pub extra: HashMap<String, Value>,
}
/// ASN details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct AsnDetails {
/// The AS number.
pub asn: String,
/// The name of the entity that owns this AS.
pub name: String,
/// The domain for the entity that owns this AS.
pub domain: String,
/// The route for this AS.
pub route: String,
/// The entity type that owns this AS. (i.e., business, education, hosting, isp)
#[serde(rename = "type")]
pub asn_type: String,
}
/// Company details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct CompanyDetails {
/// The name of the entity that owns the IP address.
pub name: String,
/// The domain for the entity that owns this IP address.
pub domain: String,
/// The type of entity that owns this IP address. (i.e., business, education, hosting, isp)
#[serde(rename = "type")]
pub company_type: String,
}
/// Mobile carrier details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct CarrierDetails {
/// The name of the carrier ISP that owns that mobile IP address.
pub name: String,
/// MCC GSM network code of this carrier.
pub mcc: String,
/// MNC GSM network code of this carrier.
pub mnc: String,
}
/// Privacy details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct PrivacyDetails {
/// Whether this IP address belongs to a VPN.
pub vpn: bool,
/// Whether this IP address belongs to a proxy.
pub proxy: bool,
/// Whether this IP address is using Tor.
pub tor: bool,
/// Whether this IP address is a relay.
pub relay: bool,
/// Whether this IP address is from a hosting provider.
pub hosting: bool,
/// The service offering the privacy service(s) listed here.
pub service: String,
}
/// Abuse details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct AbuseDetails {
/// The abuse contact's address.
pub address: String,
/// The abuse contact's country.
pub country: String,
/// The abuse contact's email.
pub email: String,
/// The abuse contact's name.
pub name: String,
/// The abuse contact's network range.
pub network: String,
/// The abuse contact's phone number.
pub phone: String,
}
/// Domains details.
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct DomainsDetails {
/// The IP address associated with these hosted domains details.
pub ip: Option<String>,
/// The actual total number of domains hosted on this IP address.
pub total: u64,
/// A sample list of hosted domains on this IP address.
pub domains: Vec<String>,
}
/// CountryFlag details.
#[derive(Debug, Default, Deserialize, Serialize, Clone, PartialEq)]
pub struct CountryFlag {
pub emoji: String,
pub unicode: String,
}
/// CountryCurrency details.
#[derive(Debug, Default, Deserialize, Serialize, Clone, PartialEq)]
pub struct CountryCurrency {
pub code: String,
pub symbol: String,
}
/// Continent details.
#[derive(Debug, Default, Deserialize, Serialize, Clone, PartialEq)]
pub struct Continent {
pub code: String,
pub name: String,
}
#[derive(Debug, Default, Deserialize, Serialize, Clone)]
pub struct IpDetailsLite {
pub ip: String,
/// The country code for the IP address.
pub country_code: String,
/// The country name for the IP address.
pub country: String,
/// The country name for the IP address.
#[serde(skip_deserializing)]
pub country_name: String,
/// EU status of the country.
#[serde(skip_deserializing)]
pub is_eu: bool,
/// Flag and unicode of the country.
#[serde(skip_deserializing)]
pub country_flag: CountryFlag,
/// Link of the Flag of country.
#[serde(skip_deserializing)]
pub country_flag_url: String,
/// Code and symbol of the country's currency.
#[serde(skip_deserializing)]
pub country_currency: CountryCurrency,
/// The AS number.
pub asn: String,
/// The AS name.
pub as_name: String,
/// The AS domain.
pub as_domain: String,
/// Code and name of the continent.
#[serde(skip_deserializing)]
pub continent: Continent,
/// If the IP Address is Bogon
pub bogon: Option<bool>,
#[serde(flatten)]
pub extra: HashMap<String, Value>,
}
/// Core API Geo details.
#[derive(Debug, Default, Deserialize, Serialize, Clone)]
pub struct CoreGeo {
pub city: Option<String>,
pub region: Option<String>,
pub region_code: Option<String>,
pub country: Option<String>,
pub country_code: Option<String>,
pub continent: Option<String>,
pub continent_code: Option<String>,
pub latitude: f64,
pub longitude: f64,
pub timezone: Option<String>,
pub postal_code: Option<String>,
/// Enriched fields
#[serde(skip_deserializing)]
pub country_name: Option<String>,
#[serde(skip_deserializing)]
pub is_eu: Option<bool>,
#[serde(skip_deserializing)]
pub country_flag: Option<CountryFlag>,
#[serde(skip_deserializing)]
pub country_flag_url: Option<String>,
#[serde(skip_deserializing)]
pub country_currency: Option<CountryCurrency>,
#[serde(skip_deserializing)]
pub continent_info: Option<Continent>,
}
/// Core API AS details.
#[derive(Debug, Default, Deserialize, Serialize, Clone)]
pub struct CoreAS {
pub asn: String,
pub name: String,
pub domain: String,
#[serde(rename = "type")]
pub as_type: String,
}
/// Core API IP address lookup details.
#[derive(Debug, Default, Deserialize, Serialize, Clone)]
pub struct IpDetailsCore {
pub ip: String,
pub geo: Option<CoreGeo>,
#[serde(rename = "as")]
pub asn: Option<CoreAS>,
pub is_anonymous: bool,
pub is_anycast: bool,
pub is_hosting: bool,
pub is_mobile: bool,
pub is_satellite: bool,
/// If the IP Address is Bogon
pub bogon: Option<bool>,
#[serde(flatten)]
pub extra: HashMap<String, Value>,
}