-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
51 lines (41 loc) · 1.03 KB
/
api.go
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
package main
import (
"encoding/json"
"io"
"net/http"
"time"
)
type ipHolder struct {
IpVersion int `json:"ipVersion"`
IpAddress string `json:"ipAddress"`
Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"`
Country string `json:"countryName"`
CountryCode string `json:"countryCode"`
TimeZone string `json:"timeZone"`
ZipCode string `json:"zipCode"`
CityName string `json:"cityName"`
RegionName string `json:"regionName"`
IsProxy bool `json:"isProxy"`
Continent string `json:"continent"`
ContinentCode string `json:"continentCode"`
}
func getIp() ipHolder {
var url string = "https://freeipapi.com/api/json"
var ipDetails ipHolder
http.DefaultClient.Timeout = 15 * time.Second
resp, err := http.Get(url)
if err != nil {
panic(err)
}
defer resp.Body.Close()
content, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
err = json.Unmarshal(content, &ipDetails)
if err != nil {
panic(err)
}
return ipDetails
}