diff --git a/info.go b/info.go new file mode 100644 index 0000000..045eabf --- /dev/null +++ b/info.go @@ -0,0 +1,32 @@ +package main + +import ( + "fmt" + "net/http" +) + +func HandleHTTPHelp() http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){ + content := `
+Whois42d JSON API: + +Paths: +/ This message, help. +/api/1/text Query with text response +/api/1/json Query with json response +/api/1/version Server version query +/api/1/types Server types query ( list all schema types ) + +Query parameter: +The URL variable 'q' should be filled in with your query + +Ex: +/api/1/json?q=10.0.0.0/8 +/api/1/json?q=SOMEONE-MNT ++` + w.Header().Set("Content-Type", "text/html; charset=utf-8") + w.WriteHeader(http.StatusOK) + fmt.Fprintln(w, content) + }) +} diff --git a/server.go b/server.go index fcc7195..0c09194 100644 --- a/server.go +++ b/server.go @@ -194,7 +194,11 @@ func main() { // create HTTP server httpRouter := http.NewServeMux() - httpRouter.Handle("/", http.HandlerFunc(server.registry.HandleHTTPJSON)) + httpRouter.Handle("/", HandleHTTPHelp()) + httpRouter.Handle("/api/1/text", server.registry.HandleHTTPBoth("text")) + httpRouter.Handle("/api/1/json", server.registry.HandleHTTPBoth("json")) + httpRouter.Handle("/api/1/version", server.registry.HandleHTTPVersion()) + httpRouter.Handle("/api/1/types", server.registry.HandleHTTPTypes()) go func() { address := opts.Address + ":" + strconv.Itoa(int(opts.HttpPort)) diff --git a/whois/json.go b/whois/json.go index ffd754b..c4801f8 100644 --- a/whois/json.go +++ b/whois/json.go @@ -3,13 +3,19 @@ package whois import ( "net/http" "fmt" + "bytes" + "strconv" + "encoding/json" ) -func (r *Registry) HandleHTTPJSON(w http.ResponseWriter, req *http.Request) { +func (r *Registry) HandleHTTPBoth(t string) http.Handler { + // t := "json" + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){ content := []byte("") + var m []map[string]string q, ok := req.URL.Query()["q"] if !ok || len(q[0]) < 1 { - http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) + http.Error(w, "Bad request", 400) return } o := parseObject(q[0]) @@ -20,9 +26,75 @@ func (r *Registry) HandleHTTPJSON(w http.ResponseWriter, req *http.Request) { http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) return } + m = append(m,WhoisToMap(c)) content = append(content[:], c[:]...) } - w.Header().Set("Content-Type", "text/plain; charset=utf-8") - w.WriteHeader(http.StatusOK) - fmt.Fprintln(w, string(content)) + switch t { + case "json": + j, jerr := json.Marshal(m) + if jerr != nil { + http.Error(w, "Bad request", 400) + } else { + w.Header().Set("Content-Type", "application/json; charset=utf-8") + w.WriteHeader(http.StatusOK) + fmt.Fprintln(w, string(j)) + } + return + case "text": + w.Header().Set("Content-Type", "text/plain; charset=utf-8") + w.WriteHeader(http.StatusOK) + fmt.Fprintln(w, string(content)) + return + default: + fmt.Println(t) + http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) + return + } + }) +} + +func WhoisToMap(b []byte) map[string]string { + r := make(map[string]string) + for _, l := range bytes.Split(b, []byte("\n")) { + i := bytes.Index(l, []byte(":")) + if i > 0 { + r[string(bytes.TrimSpace(l[0:i]))] = string(bytes.TrimSpace(l[i+1:])) + } + } + return r +} + +func (r *Registry) HandleHTTPVersion() http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){ + m := map[string]string{ + "version": strconv.FormatInt(VERSION, 10), + } + j, jerr := json.Marshal(m) + if jerr != nil { + http.Error(w, "Bad request", 400) + } else { + w.Header().Set("Content-Type", "application/json; charset=utf-8") + w.WriteHeader(http.StatusOK) + fmt.Fprintln(w, string(j)) + } + return + }) +} + +func (r *Registry) HandleHTTPTypes() http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request){ + var m []string + for _, t := range r.whoisTypes { + m = append(m,t.Name) + } + j, jerr := json.Marshal(m) + if jerr != nil { + http.Error(w, "Bad request", 400) + } else { + w.Header().Set("Content-Type", "application/json; charset=utf-8") + w.WriteHeader(http.StatusOK) + fmt.Fprintln(w, string(j)) + } + return + }) }