page_index.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package page_index
  2. import (
  3. "encoding/json"
  4. "html/template"
  5. "net/http"
  6. "github.com/vladimirok5959/golang-ip2location/internal/consts"
  7. "github.com/vladimirok5959/golang-ip2location/internal/server/handler/base"
  8. "github.com/vladimirok5959/golang-ip2location/internal/server/web"
  9. "github.com/vladimirok5959/golang-utils/utils/http/helpers"
  10. "github.com/vladimirok5959/golang-utils/utils/http/render"
  11. )
  12. type Handler struct {
  13. base.Handler
  14. }
  15. func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
  16. data := &base.ServerData{
  17. URL: r.URL.Path,
  18. WebURL: consts.Config.WebURL,
  19. }
  20. var additional struct {
  21. ClientIP string
  22. GeoIPData template.HTML
  23. }
  24. additional.ClientIP = helpers.ClientIP(r)
  25. if h.Client != nil {
  26. if res, err := h.Client.IP2Location(r.Context(), additional.ClientIP); err == nil {
  27. if j, err := json.Marshal(res); err == nil {
  28. additional.GeoIPData = template.HTML(string(j))
  29. }
  30. }
  31. }
  32. data.Additional = additional
  33. if !render.HTML(w, r, h.FuncMap(w, r), data, web.IndexHtml, http.StatusOK) {
  34. return
  35. }
  36. }