echoip/http/http.go

272 lines
6.3 KiB
Go
Raw Normal View History

2018-02-10 13:24:32 +01:00
package http
2015-09-17 20:57:27 +02:00
import (
"encoding/json"
"fmt"
2016-04-15 20:14:16 +02:00
"html/template"
2018-03-18 22:15:51 +01:00
"path/filepath"
2016-08-13 20:32:19 +02:00
2018-02-10 14:35:12 +01:00
"github.com/mpolden/ipd/iputil"
2018-02-11 11:16:21 +01:00
"github.com/mpolden/ipd/iputil/database"
2017-05-27 15:31:50 +02:00
"github.com/mpolden/ipd/useragent"
2016-08-13 20:32:19 +02:00
2015-09-17 20:57:27 +02:00
"net"
"net/http"
2016-04-15 20:52:15 +02:00
"strconv"
2015-09-17 20:57:27 +02:00
)
const (
jsonMediaType = "application/json"
textMediaType = "text/plain"
)
2015-09-17 20:57:27 +02:00
2018-02-10 13:24:32 +01:00
type Server struct {
2018-02-10 14:35:12 +01:00
Template string
IPHeader string
2018-03-19 19:54:24 +01:00
LookupAddr func(net.IP) (string, error)
2018-02-11 11:19:50 +01:00
LookupPort func(net.IP, uint64) error
2018-02-11 11:16:21 +01:00
db database.Client
2015-09-17 20:57:27 +02:00
}
2016-04-15 20:14:16 +02:00
type Response struct {
2018-02-10 18:10:16 +01:00
IP net.IP `json:"ip"`
IPDecimal uint64 `json:"ip_decimal"`
Country string `json:"country,omitempty"`
CountryISO string `json:"country_iso,omitempty"`
City string `json:"city,omitempty"`
Hostname string `json:"hostname,omitempty"`
2016-04-15 20:14:16 +02:00
}
2016-04-27 17:07:53 +02:00
type PortResponse struct {
2016-04-15 20:52:15 +02:00
IP net.IP `json:"ip"`
Port uint64 `json:"port"`
Reachable bool `json:"reachable"`
}
2018-03-18 23:12:00 +01:00
func New(db database.Client) *Server {
return &Server{db: db}
2016-07-06 23:44:33 +02:00
}
func ipFromRequest(header string, r *http.Request) (net.IP, error) {
remoteIP := r.Header.Get(header)
2016-04-16 10:45:43 +02:00
if remoteIP == "" {
host, _, err := net.SplitHostPort(r.RemoteAddr)
2015-09-17 20:57:27 +02:00
if err != nil {
return nil, err
}
2016-04-16 10:45:43 +02:00
remoteIP = host
2015-09-17 20:57:27 +02:00
}
2016-04-16 10:45:43 +02:00
ip := net.ParseIP(remoteIP)
2015-09-17 20:57:27 +02:00
if ip == nil {
2016-04-16 10:45:43 +02:00
return nil, fmt.Errorf("could not parse IP: %s", remoteIP)
2015-09-17 20:57:27 +02:00
}
return ip, nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) newResponse(r *http.Request) (Response, error) {
ip, err := ipFromRequest(s.IPHeader, r)
2015-09-17 20:57:27 +02:00
if err != nil {
2016-04-15 20:14:16 +02:00
return Response{}, err
2015-09-17 20:57:27 +02:00
}
2018-02-10 14:35:12 +01:00
ipDecimal := iputil.ToDecimal(ip)
2018-03-18 23:12:00 +01:00
country, _ := s.db.Country(ip)
city, _ := s.db.City(ip)
2018-03-19 19:54:24 +01:00
var hostname string
2018-02-11 11:19:50 +01:00
if s.LookupAddr != nil {
2018-03-19 19:54:24 +01:00
hostname, _ = s.LookupAddr(ip)
2016-04-15 20:14:16 +02:00
}
return Response{
2018-02-09 20:41:30 +01:00
IP: ip,
IPDecimal: ipDecimal,
2018-02-10 14:35:12 +01:00
Country: country.Name,
CountryISO: country.ISO,
2018-02-09 20:41:30 +01:00
City: city,
2018-03-19 19:54:24 +01:00
Hostname: hostname,
2016-04-15 20:14:16 +02:00
}, nil
}
2015-09-17 20:57:27 +02:00
2018-02-10 13:24:32 +01:00
func (s *Server) newPortResponse(r *http.Request) (PortResponse, error) {
2018-03-18 22:15:51 +01:00
lastElement := filepath.Base(r.URL.Path)
port, err := strconv.ParseUint(lastElement, 10, 16)
2018-03-19 19:54:24 +01:00
if err != nil || port < 1 || port > 65355 {
2016-04-27 17:07:53 +02:00
return PortResponse{Port: port}, fmt.Errorf("invalid port: %d", port)
}
2018-02-10 13:24:32 +01:00
ip, err := ipFromRequest(s.IPHeader, r)
2016-04-27 17:07:53 +02:00
if err != nil {
return PortResponse{Port: port}, err
}
2018-02-11 11:19:50 +01:00
err = s.LookupPort(ip, port)
2016-04-27 17:07:53 +02:00
return PortResponse{
IP: ip,
Port: port,
Reachable: err == nil,
}, nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) CLIHandler(w http.ResponseWriter, r *http.Request) *appError {
ip, err := ipFromRequest(s.IPHeader, r)
2016-04-15 20:14:16 +02:00
if err != nil {
2015-09-18 17:13:14 +02:00
return internalServerError(err)
2015-09-17 20:57:27 +02:00
}
2017-05-28 19:20:02 +02:00
fmt.Fprintln(w, ip.String())
2016-04-16 09:18:21 +02:00
return nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) CLICountryHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newResponse(r)
2016-04-16 09:18:21 +02:00
if err != nil {
return internalServerError(err)
2016-04-15 20:14:16 +02:00
}
2017-05-28 19:20:02 +02:00
fmt.Fprintln(w, response.Country)
2015-09-18 17:13:14 +02:00
return nil
2015-09-17 20:57:27 +02:00
}
2018-02-10 13:24:32 +01:00
func (s *Server) CLICountryISOHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newResponse(r)
2018-02-09 20:41:30 +01:00
if err != nil {
return internalServerError(err)
}
fmt.Fprintln(w, response.CountryISO)
return nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) CLICityHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newResponse(r)
2016-04-17 11:28:47 +02:00
if err != nil {
return internalServerError(err)
}
2017-05-28 19:20:02 +02:00
fmt.Fprintln(w, response.City)
2016-04-17 11:28:47 +02:00
return nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) JSONHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newResponse(r)
2015-09-18 17:13:14 +02:00
if err != nil {
2016-04-15 20:14:16 +02:00
return internalServerError(err).AsJSON()
2015-09-17 22:39:12 +02:00
}
2016-04-15 20:14:16 +02:00
b, err := json.Marshal(response)
2015-09-17 20:57:27 +02:00
if err != nil {
2016-04-15 20:14:16 +02:00
return internalServerError(err).AsJSON()
2015-09-17 20:57:27 +02:00
}
2016-05-26 21:38:10 +02:00
w.Header().Set("Content-Type", jsonMediaType)
2015-09-17 20:57:27 +02:00
w.Write(b)
2015-09-18 17:13:14 +02:00
return nil
2015-09-17 20:57:27 +02:00
}
2018-02-10 13:24:32 +01:00
func (s *Server) PortHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newPortResponse(r)
2016-04-15 20:52:15 +02:00
if err != nil {
2016-04-27 17:07:53 +02:00
return badRequest(err).WithMessage(fmt.Sprintf("Invalid port: %d", response.Port)).AsJSON()
2016-04-15 20:52:15 +02:00
}
b, err := json.Marshal(response)
if err != nil {
return internalServerError(err).AsJSON()
}
2016-05-26 21:38:10 +02:00
w.Header().Set("Content-Type", jsonMediaType)
2016-04-15 20:52:15 +02:00
w.Write(b)
return nil
}
2018-02-10 13:24:32 +01:00
func (s *Server) DefaultHandler(w http.ResponseWriter, r *http.Request) *appError {
response, err := s.newResponse(r)
2015-09-18 17:42:43 +02:00
if err != nil {
2016-04-15 20:14:16 +02:00
return internalServerError(err)
2015-09-18 17:42:43 +02:00
}
2018-02-10 18:10:16 +01:00
t, err := template.ParseFiles(s.Template)
2015-09-18 17:13:14 +02:00
if err != nil {
2016-04-15 20:14:16 +02:00
return internalServerError(err)
2015-09-17 22:39:12 +02:00
}
2018-02-10 14:35:12 +01:00
json, err := json.MarshalIndent(response, "", " ")
if err != nil {
return internalServerError(err)
}
var data = struct {
Response
2018-02-10 14:35:12 +01:00
Host string
JSON string
Port bool
}{
response,
r.Host,
string(json),
2018-02-11 11:19:50 +01:00
s.LookupPort != nil,
2018-02-10 14:35:12 +01:00
}
if err := t.Execute(w, &data); err != nil {
2016-04-15 20:14:16 +02:00
return internalServerError(err)
2015-09-17 20:57:27 +02:00
}
2015-09-18 17:13:14 +02:00
return nil
2015-09-17 20:57:27 +02:00
}
2018-03-18 22:15:51 +01:00
func NotFoundHandler(w http.ResponseWriter, r *http.Request) *appError {
2016-04-15 20:14:16 +02:00
err := notFound(nil).WithMessage("404 page not found")
2016-05-26 21:38:10 +02:00
if r.Header.Get("accept") == jsonMediaType {
2016-04-15 20:14:16 +02:00
err = err.AsJSON()
}
return err
}
2018-03-18 22:15:51 +01:00
func cliMatcher(r *http.Request) bool {
2017-05-27 15:31:50 +02:00
ua := useragent.Parse(r.UserAgent())
switch ua.Product {
case "curl", "HTTPie", "Wget", "fetch libfetch", "Go", "Go-http-client", "ddclient":
return true
}
return false
2015-09-17 20:57:27 +02:00
}
2015-09-18 17:13:14 +02:00
type appHandler func(http.ResponseWriter, *http.Request) *appError
func (fn appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if e := fn(w, r); e != nil { // e is *appError
2016-04-15 20:14:16 +02:00
// When Content-Type for error is JSON, we need to marshal the response into JSON
2015-09-18 17:13:14 +02:00
if e.IsJSON() {
var data = struct {
Error string `json:"error"`
2016-04-15 20:14:16 +02:00
}{e.Message}
b, err := json.Marshal(data)
2015-09-18 17:13:14 +02:00
if err != nil {
panic(err)
}
2016-04-15 20:14:16 +02:00
e.Message = string(b)
}
// Set Content-Type of response if set in error
if e.ContentType != "" {
w.Header().Set("Content-Type", e.ContentType)
2015-09-18 17:13:14 +02:00
}
w.WriteHeader(e.Code)
2017-05-28 19:20:02 +02:00
fmt.Fprint(w, e.Message)
2015-09-18 17:13:14 +02:00
}
}
2018-02-10 13:24:32 +01:00
func (s *Server) Handler() http.Handler {
2018-03-18 22:15:51 +01:00
r := NewRouter()
2015-09-17 20:57:27 +02:00
// JSON
2018-03-18 22:15:51 +01:00
r.Route("GET", "/", s.JSONHandler).Header("Accept", jsonMediaType)
r.Route("GET", "/json", s.JSONHandler)
2015-09-17 20:57:27 +02:00
// CLI
2018-03-18 22:15:51 +01:00
r.Route("GET", "/", s.CLIHandler).MatcherFunc(cliMatcher)
r.Route("GET", "/", s.CLIHandler).Header("Accept", textMediaType)
r.Route("GET", "/ip", s.CLIHandler)
2018-02-10 17:52:55 +01:00
if !s.db.IsEmpty() {
2018-03-18 22:15:51 +01:00
r.Route("GET", "/country", s.CLICountryHandler)
r.Route("GET", "/country-iso", s.CLICountryISOHandler)
r.Route("GET", "/city", s.CLICityHandler)
2018-02-10 17:52:55 +01:00
}
2015-09-17 20:57:27 +02:00
2016-04-15 20:14:16 +02:00
// Browser
2018-03-18 22:15:51 +01:00
r.Route("GET", "/", s.DefaultHandler)
2015-09-17 20:57:27 +02:00
2016-04-15 20:52:15 +02:00
// Port testing
2018-02-11 11:19:50 +01:00
if s.LookupPort != nil {
2018-03-18 22:15:51 +01:00
r.RoutePrefix("GET", "/port/", s.PortHandler)
2018-02-10 17:52:55 +01:00
}
2016-04-15 20:52:15 +02:00
2018-03-18 22:15:51 +01:00
return r.Handler()
2015-09-17 20:57:27 +02:00
}
2018-02-10 13:24:32 +01:00
func (s *Server) ListenAndServe(addr string) error {
return http.ListenAndServe(addr, s.Handler())
}