|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
package api
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
@ -23,7 +23,7 @@ const (
|
|
|
|
|
textMediaType = "text/plain"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type API struct {
|
|
|
|
|
type Server struct {
|
|
|
|
|
Template string
|
|
|
|
|
IPHeader string
|
|
|
|
|
oracle Oracle
|
|
|
|
@ -45,8 +45,8 @@ type PortResponse struct {
|
|
|
|
|
Reachable bool `json:"reachable"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func New(oracle Oracle, logger *logrus.Logger) *API {
|
|
|
|
|
return &API{oracle: oracle, log: logger}
|
|
|
|
|
func New(oracle Oracle, logger *logrus.Logger) *Server {
|
|
|
|
|
return &Server{oracle: oracle, log: logger}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func ipToDecimal(ip net.IP) *big.Int {
|
|
|
|
@ -75,27 +75,27 @@ func ipFromRequest(header string, r *http.Request) (net.IP, error) {
|
|
|
|
|
return ip, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) newResponse(r *http.Request) (Response, error) {
|
|
|
|
|
ip, err := ipFromRequest(a.IPHeader, r)
|
|
|
|
|
func (s *Server) newResponse(r *http.Request) (Response, error) {
|
|
|
|
|
ip, err := ipFromRequest(s.IPHeader, r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return Response{}, err
|
|
|
|
|
}
|
|
|
|
|
ipDecimal := ipToDecimal(ip)
|
|
|
|
|
country, err := a.oracle.LookupCountry(ip)
|
|
|
|
|
country, err := s.oracle.LookupCountry(ip)
|
|
|
|
|
if err != nil {
|
|
|
|
|
a.log.Debug(err)
|
|
|
|
|
s.log.Debug(err)
|
|
|
|
|
}
|
|
|
|
|
countryISO, err := a.oracle.LookupCountryISO(ip)
|
|
|
|
|
countryISO, err := s.oracle.LookupCountryISO(ip)
|
|
|
|
|
if err != nil {
|
|
|
|
|
a.log.Debug(err)
|
|
|
|
|
s.log.Debug(err)
|
|
|
|
|
}
|
|
|
|
|
city, err := a.oracle.LookupCity(ip)
|
|
|
|
|
city, err := s.oracle.LookupCity(ip)
|
|
|
|
|
if err != nil {
|
|
|
|
|
a.log.Debug(err)
|
|
|
|
|
s.log.Debug(err)
|
|
|
|
|
}
|
|
|
|
|
hostnames, err := a.oracle.LookupAddr(ip)
|
|
|
|
|
hostnames, err := s.oracle.LookupAddr(ip)
|
|
|
|
|
if err != nil {
|
|
|
|
|
a.log.Debug(err)
|
|
|
|
|
s.log.Debug(err)
|
|
|
|
|
}
|
|
|
|
|
return Response{
|
|
|
|
|
IP: ip,
|
|
|
|
@ -107,7 +107,7 @@ func (a *API) newResponse(r *http.Request) (Response, error) {
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) newPortResponse(r *http.Request) (PortResponse, error) {
|
|
|
|
|
func (s *Server) newPortResponse(r *http.Request) (PortResponse, error) {
|
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
|
port, err := strconv.ParseUint(vars["port"], 10, 16)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -116,11 +116,11 @@ func (a *API) newPortResponse(r *http.Request) (PortResponse, error) {
|
|
|
|
|
if port < 1 || port > 65355 {
|
|
|
|
|
return PortResponse{Port: port}, fmt.Errorf("invalid port: %d", port)
|
|
|
|
|
}
|
|
|
|
|
ip, err := ipFromRequest(a.IPHeader, r)
|
|
|
|
|
ip, err := ipFromRequest(s.IPHeader, r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return PortResponse{Port: port}, err
|
|
|
|
|
}
|
|
|
|
|
err = a.oracle.LookupPort(ip, port)
|
|
|
|
|
err = s.oracle.LookupPort(ip, port)
|
|
|
|
|
return PortResponse{
|
|
|
|
|
IP: ip,
|
|
|
|
|
Port: port,
|
|
|
|
@ -128,8 +128,8 @@ func (a *API) newPortResponse(r *http.Request) (PortResponse, error) {
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) CLIHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
ip, err := ipFromRequest(a.IPHeader, r)
|
|
|
|
|
func (s *Server) CLIHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
ip, err := ipFromRequest(s.IPHeader, r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
@ -137,8 +137,8 @@ func (a *API) CLIHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) CLICountryHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newResponse(r)
|
|
|
|
|
func (s *Server) CLICountryHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
@ -146,8 +146,8 @@ func (a *API) CLICountryHandler(w http.ResponseWriter, r *http.Request) *appErro
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) CLICountryISOHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newResponse(r)
|
|
|
|
|
func (s *Server) CLICountryISOHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
@ -155,8 +155,8 @@ func (a *API) CLICountryISOHandler(w http.ResponseWriter, r *http.Request) *appE
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) CLICityHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newResponse(r)
|
|
|
|
|
func (s *Server) CLICityHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
@ -164,8 +164,8 @@ func (a *API) CLICityHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) JSONHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newResponse(r)
|
|
|
|
|
func (s *Server) JSONHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err).AsJSON()
|
|
|
|
|
}
|
|
|
|
@ -178,8 +178,8 @@ func (a *API) JSONHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) PortHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newPortResponse(r)
|
|
|
|
|
func (s *Server) PortHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newPortResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return badRequest(err).WithMessage(fmt.Sprintf("Invalid port: %d", response.Port)).AsJSON()
|
|
|
|
|
}
|
|
|
|
@ -192,12 +192,12 @@ func (a *API) PortHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) DefaultHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := a.newResponse(r)
|
|
|
|
|
func (s *Server) DefaultHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
response, err := s.newResponse(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
|
t, err := template.New(filepath.Base(a.Template)).ParseFiles(a.Template)
|
|
|
|
|
t, err := template.New(filepath.Base(s.Template)).ParseFiles(s.Template)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
@ -205,14 +205,14 @@ func (a *API) DefaultHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
Host string
|
|
|
|
|
Response
|
|
|
|
|
Oracle
|
|
|
|
|
}{r.Host, response, a.oracle}
|
|
|
|
|
}{r.Host, response, s.oracle}
|
|
|
|
|
if err := t.Execute(w, &data); err != nil {
|
|
|
|
|
return internalServerError(err)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) NotFoundHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
func (s *Server) NotFoundHandler(w http.ResponseWriter, r *http.Request) *appError {
|
|
|
|
|
err := notFound(nil).WithMessage("404 page not found")
|
|
|
|
|
if r.Header.Get("accept") == jsonMediaType {
|
|
|
|
|
err = err.AsJSON()
|
|
|
|
@ -253,29 +253,33 @@ func (fn appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *API) Router() http.Handler {
|
|
|
|
|
func (s *Server) Handler() http.Handler {
|
|
|
|
|
r := mux.NewRouter()
|
|
|
|
|
|
|
|
|
|
// JSON
|
|
|
|
|
r.Handle("/", appHandler(a.JSONHandler)).Methods("GET").Headers("Accept", jsonMediaType)
|
|
|
|
|
r.Handle("/json", appHandler(a.JSONHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/", appHandler(s.JSONHandler)).Methods("GET").Headers("Accept", jsonMediaType)
|
|
|
|
|
r.Handle("/json", appHandler(s.JSONHandler)).Methods("GET")
|
|
|
|
|
|
|
|
|
|
// CLI
|
|
|
|
|
r.Handle("/", appHandler(a.CLIHandler)).Methods("GET").MatcherFunc(cliMatcher)
|
|
|
|
|
r.Handle("/", appHandler(a.CLIHandler)).Methods("GET").Headers("Accept", textMediaType)
|
|
|
|
|
r.Handle("/ip", appHandler(a.CLIHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/country", appHandler(a.CLICountryHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/country-iso", appHandler(a.CLICountryISOHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/city", appHandler(a.CLICityHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/", appHandler(s.CLIHandler)).Methods("GET").MatcherFunc(cliMatcher)
|
|
|
|
|
r.Handle("/", appHandler(s.CLIHandler)).Methods("GET").Headers("Accept", textMediaType)
|
|
|
|
|
r.Handle("/ip", appHandler(s.CLIHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/country", appHandler(s.CLICountryHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/country-iso", appHandler(s.CLICountryISOHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/city", appHandler(s.CLICityHandler)).Methods("GET")
|
|
|
|
|
|
|
|
|
|
// Browser
|
|
|
|
|
r.Handle("/", appHandler(a.DefaultHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/", appHandler(s.DefaultHandler)).Methods("GET")
|
|
|
|
|
|
|
|
|
|
// Port testing
|
|
|
|
|
r.Handle("/port/{port:[0-9]+}", appHandler(a.PortHandler)).Methods("GET")
|
|
|
|
|
r.Handle("/port/{port:[0-9]+}", appHandler(s.PortHandler)).Methods("GET")
|
|
|
|
|
|
|
|
|
|
// Not found handler which returns JSON when appropriate
|
|
|
|
|
r.NotFoundHandler = appHandler(a.NotFoundHandler)
|
|
|
|
|
r.NotFoundHandler = appHandler(s.NotFoundHandler)
|
|
|
|
|
|
|
|
|
|
return r
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *Server) ListenAndServe(addr string) error {
|
|
|
|
|
return http.ListenAndServe(addr, s.Handler())
|
|
|
|
|
}
|