endpoints.go 2.9 KB

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