sysapihandler.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package api
  2. import (
  3. "log"
  4. "net/http"
  5. "strings"
  6. )
  7. // APIKeyHeader in this header thr right api key should be inserted
  8. const APIKeyHeader = "X-es-apikey"
  9. // SystemHeader in this header thr right system should be inserted
  10. const SystemHeader = "X-es-system"
  11. /*
  12. SysAPIKey defining a handler for checking system id and api key
  13. */
  14. type SysAPIKey struct {
  15. log *log.Logger
  16. SystemID string
  17. Apikey string
  18. }
  19. /*
  20. NewSysAPIHandler creates a new SysApikeyHandler
  21. */
  22. func NewSysAPIHandler(systemID string, apikey string) *SysAPIKey {
  23. c := &SysAPIKey{
  24. SystemID: systemID,
  25. Apikey: apikey,
  26. }
  27. return c
  28. }
  29. /*
  30. Handler the handler checks systemid and apikey headers
  31. */
  32. func (s *SysAPIKey) Handler(next http.Handler) http.Handler {
  33. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  34. path := strings.TrimSuffix(r.URL.Path, "/")
  35. if !strings.HasPrefix(path, "/health") {
  36. if s.SystemID != r.Header.Get(SystemHeader) {
  37. Msg(w, http.StatusBadRequest, "either system id or apikey not correct")
  38. return
  39. }
  40. if s.Apikey != strings.ToLower(r.Header.Get(APIKeyHeader)) {
  41. Msg(w, http.StatusBadRequest, "either system id or apikey not correct")
  42. return
  43. }
  44. }
  45. next.ServeHTTP(w, r)
  46. })
  47. }
  48. /*
  49. AddHeader adding gefault header for system and apikey
  50. */
  51. func AddHeader(response http.ResponseWriter, apikey string, system string) {
  52. response.Header().Add(APIKeyHeader, apikey)
  53. response.Header().Add(SystemHeader, system)
  54. }