-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.go
148 lines (143 loc) · 4.29 KB
/
main.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
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
// go-geoserve provides an ip geolocation server that's made so that it can run
// on Heroku. It uses the MaxMind GeoIP2City Lite data form the MaxMind
// website. It checks for updates every minute and automatically downloads the
// most recent version of that database.
//
// The server caches JSON results by ip address for low-latency lookups.
//
// When starting the server, the following environment variables control its
// behavior:
//
// PORT - integer port on which to listen
// DB - optional filename of local database file (useful for testing, not Heroku)
// ALLOW_ORIGIN - optional cors access control for the response header ("*", "example.com", etc.)
//
// To request JSON geolocation information for your IP:
//
// curl http://go-geoserve.herokuapp.com/lookup/
//
// To request JSON geolocation information for a specific IP:
//
// curl http://go-geoserve.herokuapp.com/lookup/66.69.242.177
//
// Sample response:
//
// {
// "City": {
// "GeoNameID": 4671654,
// "Names": {
// "de": "Austin",
// "en": "Austin",
// "es": "Austin",
// "fr": "Austin",
// "ja": "オースティン",
// "pt-BR": "Austin",
// "ru": "Остин"
// }
// },
// "Continent": {
// "Code": "NA",
// "GeoNameID": 6255149,
// "Names": {
// "de": "Nordamerika",
// "en": "North America",
// "es": "Norteamérica",
// "fr": "Amérique du Nord",
// "ja": "北アメリカ",
// "pt-BR": "América do Norte",
// "ru": "Северная Америка",
// "zh-CN": "北美洲"
// }
// },
// "Country": {
// "GeoNameID": 6252001,
// "IsoCode": "US",
// "Names": {
// "de": "USA",
// "en": "United States",
// "es": "Estados Unidos",
// "fr": "États-Unis",
// "ja": "アメリカ合衆国",
// "pt-BR": "Estados Unidos",
// "ru": "США",
// "zh-CN": "美国"
// }
// },
// "Location": {
// "Latitude": 30.2672,
// "Longitude": -97.7431,
// "MetroCode": "635",
// "TimeZone": "America/Chicago"
// },
// "Postal": {
// "Code": ""
// },
// "RegisteredCountry": {
// "GeoNameID": 6252001,
// "IsoCode": "US",
// "Names": {
// "de": "USA",
// "en": "United States",
// "es": "Estados Unidos",
// "fr": "États-Unis",
// "ja": "アメリカ合衆国",
// "pt-BR": "Estados Unidos",
// "ru": "США",
// "zh-CN": "美国"
// }
// },
// "RepresentedCountry": {
// "GeoNameID": 0,
// "IsoCode": "",
// "Names": null,
// "Type": ""
// },
// "Subdivisions": [
// {
// "GeoNameID": 4736286,
// "IsoCode": "TX",
// "Names": {
// "en": "Texas",
// "es": "Texas",
// "ja": "テキサス州",
// "ru": "Техас",
// "zh-CN": "得克萨斯州"
// }
// }
// ],
// "Traits": {
// "IsAnonymousProxy": false,
// "IsSatelliteProvider": false
// }
// }
package main
import (
"net/http"
"os"
"github.com/getlantern/golog"
"github.com/getlantern/go-geoserve/geoserve"
)
var (
log = golog.LoggerFor("go-geoserve")
)
func main() {
log.Debug("Creating GeoServer, this can take a while")
geoServer, err := geoserve.NewServer(os.Getenv("DB"), os.Getenv("DB_URL"))
if err != nil {
log.Fatalf("Unable to create geoserve server: %s", err)
}
allowOrigin := os.Getenv("ALLOW_ORIGIN")
log.Debugf("Access-Control-Allow-Origin set to: %s", allowOrigin)
http.HandleFunc("/lookup/", func(resp http.ResponseWriter, req *http.Request) {
geoServer.Handle(resp, req, "/lookup/", allowOrigin)
})
http.HandleFunc("/lookup", func(resp http.ResponseWriter, req *http.Request) {
geoServer.Handle(resp, req, "/lookup", allowOrigin)
})
port := os.Getenv("PORT")
log.Debugf("About to listen at port: %s", port)
err = http.ListenAndServe(":"+port, nil)
if err != nil {
log.Fatalf("Unable to start HTTP server: %s", err)
}
}