-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrack.go
64 lines (48 loc) · 1.07 KB
/
track.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
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
type IPInfo struct {
IP string
Latlong string
Country string
City string
UserAgent string
}
func getIp() (*http.Response, error) {
url := "http://www.trackip.net/ip?json"
request, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, fmt.Errorf("Error creating request when tracking current IP: %s", err)
}
resp, err := http.DefaultClient.Do(request)
if err != nil {
return nil, fmt.Errorf("Error creating request when tracking current IP: %s", err)
}
return resp, nil
}
func decodeResponse(resp *http.Response, out interface{}) error {
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
if err = json.Unmarshal(body, &out); err != nil {
return err
}
return nil
}
func trackCurrentIP() (*IPInfo, error) {
resp, err := getIp()
if err != nil {
return nil, err
}
ipInfo := new(IPInfo)
err = decodeResponse(resp, &ipInfo)
if err != nil {
return nil, fmt.Errorf("Problem decoding IP response", err)
}
return ipInfo, nil
}