endpoints.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package api
  2. import (
  3. "log"
  4. "net/http"
  5. "time"
  6. "github.com/go-chi/chi"
  7. "github.com/go-chi/render"
  8. )
  9. // TenantHeader in this header thr right tenant should be inserted
  10. const TenantHeader = "X-es-tenant"
  11. const timeout = 1 * time.Minute
  12. //APIKey the apikey of this service
  13. var APIKey string
  14. //SystemID the systemid of this service
  15. var SystemID string
  16. /*
  17. ConfigDescription describres all metadata of a config
  18. */
  19. type ConfigDescription struct {
  20. StoreID string `json:"storeid"`
  21. TenantID string `json:"tenantID"`
  22. Size int `json:"size"`
  23. }
  24. /*
  25. ConfigRoutes getting all routes for the config endpoint
  26. */
  27. func ConfigRoutes() *chi.Mux {
  28. router := chi.NewRouter()
  29. router.Post("/", PostConfigEndpoint)
  30. router.Get("/", GetConfigEndpoint)
  31. router.Delete("/", DeleteConfigEndpoint)
  32. router.Get("/size", GetConfigSizeEndpoint)
  33. return router
  34. }
  35. /*
  36. GetConfigEndpoint getting if a store for a tenant is initialised
  37. because of the automatic store creation, the value is more likely that data is stored for this tenant
  38. */
  39. func GetConfigEndpoint(response http.ResponseWriter, req *http.Request) {
  40. tenant := getTenant(req)
  41. if tenant == "" {
  42. Msg(response, http.StatusBadRequest, "tenant not set")
  43. return
  44. }
  45. c := ConfigDescription{
  46. StoreID: "myNewStore",
  47. TenantID: tenant,
  48. Size: 1234567,
  49. }
  50. render.JSON(response, req, c)
  51. }
  52. /*
  53. PostConfigEndpoint create a new store for a tenant
  54. because of the automatic store creation, this method will always return 201
  55. */
  56. func PostConfigEndpoint(response http.ResponseWriter, req *http.Request) {
  57. tenant := getTenant(req)
  58. if tenant == "" {
  59. Msg(response, http.StatusBadRequest, "tenant not set")
  60. return
  61. }
  62. log.Printf("create store for tenant %s", tenant)
  63. render.Status(req, http.StatusCreated)
  64. render.JSON(response, req, tenant)
  65. }
  66. /*
  67. DeleteConfigEndpoint deleting store for a tenant, this will automatically delete all data in the store
  68. */
  69. func DeleteConfigEndpoint(response http.ResponseWriter, req *http.Request) {
  70. tenant := getTenant(req)
  71. if tenant == "" {
  72. Msg(response, http.StatusBadRequest, "tenant not set")
  73. return
  74. }
  75. render.JSON(response, req, tenant)
  76. }
  77. /*
  78. GetConfigSizeEndpoint size of the store for a tenant
  79. */
  80. func GetConfigSizeEndpoint(response http.ResponseWriter, req *http.Request) {
  81. tenant := getTenant(req)
  82. if tenant == "" {
  83. Msg(response, http.StatusBadRequest, "tenant not set")
  84. return
  85. }
  86. render.JSON(response, req, tenant)
  87. }
  88. /*
  89. getTenant getting the tenant from the request
  90. */
  91. func getTenant(req *http.Request) string {
  92. return req.Header.Get(TenantHeader)
  93. }