schematicapi.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package api
  2. import (
  3. "bufio"
  4. "fmt"
  5. "log"
  6. "net/http"
  7. "strconv"
  8. "time"
  9. "github.com/go-chi/chi"
  10. "github.com/go-chi/render"
  11. "github.com/willie68/schematic-service-go/dao"
  12. "github.com/willie68/schematic-service-go/model"
  13. )
  14. //SchematicsRoutes getting all routes for the config endpoint
  15. func SchematicsRoutes() *chi.Mux {
  16. router := chi.NewRouter()
  17. router.Post("/", PostSchematicEndpoint)
  18. router.Get("/", GetSchematicsEndpoint)
  19. router.Delete("/{schematicId}", DeleteSchematicEndpoint)
  20. router.Put("/{schematicId}", UpdateSchematicEndpoint)
  21. router.Get("/{schematicId}", GetSchematicHandler)
  22. router.Get("/files/{fileId}", GetSchematicFileHandler)
  23. router.Post("/files", PostFileEndpoint)
  24. return router
  25. }
  26. // GetTenantHandler gets a tenant
  27. func GetSchematicHandler(response http.ResponseWriter, req *http.Request) {
  28. schematicID := chi.URLParam(req, "schematicId")
  29. schematic, err := dao.GetSchematic(schematicID)
  30. if err != nil {
  31. Msg(response, http.StatusBadRequest, err.Error())
  32. return
  33. }
  34. owner, _, _ := req.BasicAuth()
  35. if schematic.PrivateFile && schematic.Owner != owner {
  36. Msg(response, http.StatusForbidden, "you don't have the permission to see this file")
  37. return
  38. }
  39. render.JSON(response, req, schematic)
  40. }
  41. // GetTenantHandler gets a tenant
  42. func GetSchematicFileHandler(response http.ResponseWriter, req *http.Request) {
  43. //schematicID := chi.URLParam(req, "schematicId")
  44. fileID := chi.URLParam(req, "fileId")
  45. err := dao.GetFile(fileID, response)
  46. if err != nil {
  47. Msg(response, http.StatusBadRequest, err.Error())
  48. return
  49. }
  50. //render.JSON(response, req, schematic)
  51. }
  52. // GetTenantsHandler gets all tenants
  53. func GetSchematicsEndpoint(response http.ResponseWriter, req *http.Request) {
  54. offset := 0
  55. limit := 10
  56. query := req.URL.Query().Get("query")
  57. offsetStr := req.URL.Query().Get("offset")
  58. limitStr := req.URL.Query().Get("limit")
  59. var err error
  60. if offsetStr != "" {
  61. offset, err = strconv.Atoi(offsetStr)
  62. if err != nil {
  63. Msg(response, http.StatusBadRequest, err.Error())
  64. return
  65. }
  66. }
  67. if limitStr != "" {
  68. limit, err = strconv.Atoi(limitStr)
  69. if err != nil {
  70. Msg(response, http.StatusBadRequest, err.Error())
  71. return
  72. }
  73. }
  74. log.Printf("query: %s, offset: %d, limit: %d\n", query, offset, limit)
  75. owner, _, _ := req.BasicAuth()
  76. schematics, err := dao.GetSchematics(query, offset, limit, owner)
  77. if err != nil {
  78. Msg(response, http.StatusBadRequest, err.Error())
  79. return
  80. }
  81. render.JSON(response, req, schematics)
  82. }
  83. func PostSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  84. var schematic model.Schematic
  85. err := render.DefaultDecoder(req, &schematic)
  86. if err != nil {
  87. Msg(response, http.StatusBadRequest, err.Error())
  88. return
  89. }
  90. username, _, _ := req.BasicAuth()
  91. if username != "" {
  92. schematic.Owner = username
  93. }
  94. schematic.CreatedAt = time.Now()
  95. schematic.LastModifiedAt = time.Now()
  96. id, err := dao.CreateSchematic(schematic)
  97. if err != nil {
  98. Msg(response, http.StatusBadRequest, err.Error())
  99. return
  100. }
  101. schematic, err = dao.GetSchematic(id)
  102. if err != nil {
  103. Msg(response, http.StatusBadRequest, err.Error())
  104. return
  105. }
  106. render.Status(req, http.StatusCreated)
  107. render.JSON(response, req, schematic)
  108. }
  109. func PostFileEndpoint(response http.ResponseWriter, req *http.Request) {
  110. req.ParseForm()
  111. f, fileHeader, err := req.FormFile("file")
  112. if err != nil {
  113. Msg(response, http.StatusBadRequest, err.Error())
  114. return
  115. }
  116. //mimeType := fileHeader.Header.Get("Content-type")
  117. filename := fileHeader.Filename
  118. reader := bufio.NewReader(f)
  119. fileid, err := dao.AddFile(filename, reader)
  120. if err != nil {
  121. fmt.Printf("%v\n", err)
  122. } else {
  123. fmt.Printf("fileid: %s\n", fileid)
  124. }
  125. location := fmt.Sprintf("/api/v1/schematics/files/%s", fileid)
  126. response.Header().Add("Location", location)
  127. render.Status(req, http.StatusCreated)
  128. render.JSON(response, req, fileid)
  129. }
  130. func DeleteSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  131. /*
  132. schematicID := chi.URLParam(req, "schematicId")
  133. if err != nil {
  134. Msg(response, http.StatusBadRequest, err.Error())
  135. return
  136. }
  137. */
  138. render.JSON(response, req, "tenant")
  139. }
  140. func UpdateSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  141. /*
  142. schematicID := chi.URLParam(req, "schematicId")
  143. err := dao.Get().One("tenants", chi.URLParam(req, "schematicId"), &tenant)
  144. if err != nil {
  145. Msg(response, http.StatusBadRequest, err.Error())
  146. return
  147. }
  148. */
  149. render.JSON(response, req, "tenant")
  150. }