Skip to content

Commit 85922be

Browse files
authored
🔀 Merge pull request #1656 from ip2location/master
Added support for IP2Location.io API
2 parents 0514ee4 + d8d55d7 commit 85922be

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

docs/privacy.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,10 @@ Dashy supports [Widgets](/docs/widgets.md) for displaying dynamic content. Below
118118
- [OWM Privacy Policy](https://openweather.co.uk/privacy-policy)
119119
- **[RSS Feed](/docs/widgets.md#rss-feed)**: `https://api.rss2json.com/v1/api.json`
120120
- [Rss2Json Privacy Policy](https://rss2json.com/privacy-policy)
121-
- **[IP Address](/docs/widgets.md#public-ip)**: `https://ipapi.co/json` or `http://ip-api.com/json`
121+
- **[IP Address](/docs/widgets.md#public-ip)**: `https://ipapi.co/json` or `http://ip-api.com/json` or `https://api.ip2location.io/`
122122
- [IPGeoLocation Privacy Policy](https://ipgeolocation.io/privacy.html)
123123
- [IP-API Privacy Policy](https://ip-api.com/docs/legal)
124+
- [IP2Location.io Privacy Policy](https://ip2location.io/privacy-policy)
124125
- **[IP Blacklist](/docs/widgets.md#ip-blacklist)**: `https://api.blacklistchecker.com`
125126
- [Blacklist Checker Privacy Policy](https://blacklistchecker.com/privacy)
126127
- **[Domain Monitor](/docs/widgets.md#domain-monitor)**: `http://api.whoapi.com`

docs/widgets.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Unless image fetched from remote source, no external data request is made.
287287

288288
### Public IP
289289

290-
Often find yourself searching "What's my IP", just so you can check your VPN is still connected? This widget displays your public IP address, along with ISP name and approx location. Data can be fetched from either [IpApi.co](https://ipapi.co/), [IP-API.com](https://ip-api.com/) or [IpGeolocation.io](https://ipgeolocation.io/).
290+
Often find yourself searching "What's my IP", just so you can check your VPN is still connected? This widget displays your public IP address, along with ISP name and approx location. Data can be fetched from either [IpApi.co](https://ipapi.co/), [IP-API.com](https://ip-api.com/), [IpGeolocation.io](https://ipgeolocation.io/) or [IP2Location.io](https://ip2location.io/).
291291

292292
<p align="center"><img width="400" src="https://i.ibb.co/vc3c8zN/public-ip.png" /></p>
293293

@@ -297,8 +297,8 @@ _All fields are optional._
297297

298298
**Field** | **Type** | **Required** | **Description**
299299
--- | --- | --- | ---
300-
**`provider`** | `string` | _Optional_ | The name of the service to fetch IP address from. Can be either `ipapi.co`, `ip-api` or `ipgeolocation`. Defaults to `ipapi.co`. Note, `ip-api` doesn't work on HTTPS, and if you set to `ipgeolocation` then you must also provide an API key
301-
**`apiKey`** | `string` | _Optional_ | Only required if provider is set to `ipgeolocation`. You can get a free API key [here](https://ipgeolocation.io/signup.html)
300+
**`provider`** | `string` | _Optional_ | The name of the service to fetch IP address from. Can be either `ipapi.co`, `ip-api`, `ipgeolocation` or `ip2location.io`. Defaults to `ipapi.co`. Note, `ip-api` doesn't work on HTTPS, and if you set to `ipgeolocation` or `ip2location.io` then you must also provide an API key
301+
**`apiKey`** | `string` | _Optional_ | Only required if provider is set to `ipgeolocation` or `ip2location.io`. You can get a free IPGeolocation API key [here](https://ipgeolocation.io/signup.html) or a free IP2Location.io API key [here](https://ip2location.io/pricing)
302302

303303
#### Example
304304

@@ -321,7 +321,7 @@ Or
321321
- **Auth**: 🟠 Optional
322322
- **Price**: 🟢 Free
323323
- **Host**: Managed Instance Only
324-
- **Privacy**: _See [IPGeoLocation Privacy Policy](https://ipgeolocation.io/privacy.html) or [IP-API Privacy Policy](https://ip-api.com/docs/legal)_
324+
- **Privacy**: _See [IPGeoLocation Privacy Policy](https://ipgeolocation.io/privacy.html) or [IP-API Privacy Policy](https://ip-api.com/docs/legal) or [IP2Location.io Privacy Policy](https://ip2location.io/privacy-policy)
325325

326326
---
327327

src/components/Widgets/PublicIp.vue

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,20 @@ export default {
2424
endpoint() {
2525
if (this.provider === 'ipgeolocation') {
2626
return `${widgetApiEndpoints.publicIp2}?apiKey=${this.apiKey}`;
27+
} else if (this.provider === 'ip2location.io') {
28+
return `${widgetApiEndpoints.publicIp4}?key=${this.apiKey}`;
2729
} else if (this.provider === 'ipapi') {
2830
return widgetApiEndpoints.publicIp3;
2931
}
3032
return widgetApiEndpoints.publicIp;
3133
},
3234
apiKey() {
3335
if (this.provider === 'ipgeolocation' && !this.options.apiKey) this.error('Missing API Key');
36+
if (this.provider === 'ip2location.io' && !this.options.apiKey) this.error('Missing API Key');
3437
return this.options.apiKey;
3538
},
3639
provider() {
37-
// Can be either `ip-api`, `ipapi.co` or `ipgeolocation`
40+
// Can be either `ip-api`, `ipapi.co`, `ipgeolocation` or `ip2location.io`
3841
return this.parseAsEnvVar(this.options.provider) || 'ipapi.co';
3942
},
4043
},
@@ -72,6 +75,12 @@ export default {
7275
this.location = `${ipInfo.city}, ${ipInfo.regionName}`;
7376
this.flagImg = getCountryFlag(ipInfo.countryCode);
7477
this.mapsUrl = getMapUrl({ lat: ipInfo.lat, lon: ipInfo.lon });
78+
} else if (this.provider === 'ip2location.io') {
79+
this.ipAddr = ipInfo.ip;
80+
this.ispName = ipInfo.isp || 'IP2Location.io Starter plan or higher required.';
81+
this.location = `${ipInfo.city_name}, ${ipInfo.region_name}`;
82+
this.flagImg = getCountryFlag(ipInfo.country_code);
83+
this.mapsUrl = getMapUrl({ lat: ipInfo.latitude, lon: ipInfo.longitude });
7584
} else {
7685
this.error('Unknown API provider fo IP address');
7786
}

src/utils/defaults.js

+1
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ module.exports = {
245245
publicIp: 'https://ipapi.co/json',
246246
publicIp2: 'https://api.ipgeolocation.io/ipgeo',
247247
publicIp3: 'http://ip-api.com/json',
248+
publicIp4: 'https://api.ip2location.io/',
248249
readMeStats: 'https://github-readme-stats.vercel.app/api',
249250
rescueTime: 'https://www.rescuetime.com/anapi/data',
250251
rssToJson: 'https://api.rss2json.com/v1/api.json',

0 commit comments

Comments
 (0)