schematicapi.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. // GetSchematicHandler gets a tenant
  27. func GetSchematicHandler(response http.ResponseWriter, req *http.Request) {
  28. schematicID := chi.URLParam(req, "schematicId")
  29. schematic, err := dao.GetStorage().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. // GetSchematicFileHandler gets a tenant
  42. func GetSchematicFileHandler(response http.ResponseWriter, req *http.Request) {
  43. fileID := chi.URLParam(req, "fileId")
  44. err := dao.GetStorage().GetFile(fileID, response)
  45. if err != nil {
  46. Msg(response, http.StatusBadRequest, err.Error())
  47. return
  48. }
  49. }
  50. // GetSchematicsEndpoint gets all tenants
  51. func GetSchematicsEndpoint(response http.ResponseWriter, req *http.Request) {
  52. offset := 0
  53. limit := 10
  54. query := req.URL.Query().Get("query")
  55. offsetStr := req.URL.Query().Get("offset")
  56. limitStr := req.URL.Query().Get("limit")
  57. var err error
  58. if offsetStr != "" {
  59. offset, err = strconv.Atoi(offsetStr)
  60. if err != nil {
  61. Msg(response, http.StatusBadRequest, err.Error())
  62. return
  63. }
  64. }
  65. if limitStr != "" {
  66. limit, err = strconv.Atoi(limitStr)
  67. if err != nil {
  68. Msg(response, http.StatusBadRequest, err.Error())
  69. return
  70. }
  71. }
  72. log.Printf("query: %s, offset: %d, limit: %d\n", query, offset, limit)
  73. owner, _, _ := req.BasicAuth()
  74. n, schematics, err := dao.GetStorage().GetSchematics(query, offset, limit, owner)
  75. if err != nil {
  76. Msg(response, http.StatusBadRequest, err.Error())
  77. return
  78. }
  79. m := make(map[string]interface{})
  80. m["data"] = schematics
  81. m["found"] = n
  82. m["count"] = len(schematics)
  83. m["query"] = query
  84. m["offset"] = offset
  85. m["limit"] = limit
  86. render.JSON(response, req, m)
  87. }
  88. func PostSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  89. var schematic model.Schematic
  90. err := render.DefaultDecoder(req, &schematic)
  91. if err != nil {
  92. Msg(response, http.StatusBadRequest, err.Error())
  93. return
  94. }
  95. username, _, _ := req.BasicAuth()
  96. if username != "" {
  97. schematic.Owner = username
  98. }
  99. schematic.CreatedAt = time.Now()
  100. schematic.LastModifiedAt = time.Now()
  101. id, err := dao.GetStorage().CreateSchematic(schematic)
  102. if err != nil {
  103. Msg(response, http.StatusBadRequest, err.Error())
  104. return
  105. }
  106. schematic, err = dao.GetStorage().GetSchematic(id)
  107. if err != nil {
  108. Msg(response, http.StatusBadRequest, err.Error())
  109. return
  110. }
  111. render.Status(req, http.StatusCreated)
  112. render.JSON(response, req, schematic)
  113. }
  114. func PostFileEndpoint(response http.ResponseWriter, req *http.Request) {
  115. req.ParseForm()
  116. f, fileHeader, err := req.FormFile("file")
  117. if err != nil {
  118. Msg(response, http.StatusBadRequest, err.Error())
  119. return
  120. }
  121. //mimeType := fileHeader.Header.Get("Content-type")
  122. filename := fileHeader.Filename
  123. reader := bufio.NewReader(f)
  124. fileid, err := dao.GetStorage().AddFile(filename, reader)
  125. if err != nil {
  126. fmt.Printf("%v\n", err)
  127. } else {
  128. fmt.Printf("fileid: %s\n", fileid)
  129. }
  130. location := fmt.Sprintf("/api/v1/schematics/files/%s", fileid)
  131. response.Header().Add("Location", location)
  132. render.Status(req, http.StatusCreated)
  133. render.JSON(response, req, fileid)
  134. }
  135. func DeleteSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  136. schematicID := chi.URLParam(req, "schematicId")
  137. schematic, err := dao.GetStorage().GetSchematic(schematicID)
  138. if err != nil {
  139. if err == dao.ErrNoDocument {
  140. Msg(response, http.StatusNotFound, err.Error())
  141. return
  142. }
  143. Msg(response, http.StatusBadRequest, err.Error())
  144. return
  145. }
  146. owner, _, _ := req.BasicAuth()
  147. if schematic.PrivateFile && schematic.Owner != owner {
  148. Msg(response, http.StatusForbidden, "you don't have the permission to see this file")
  149. return
  150. }
  151. dao.GetStorage().DeleteSchematic(schematic.ID.Hex())
  152. render.JSON(response, req, schematic)
  153. }
  154. func UpdateSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  155. /*
  156. schematicID := chi.URLParam(req, "schematicId")
  157. err := dao.Get().One("tenants", chi.URLParam(req, "schematicId"), &tenant)
  158. if err != nil {
  159. Msg(response, http.StatusBadRequest, err.Error())
  160. return
  161. }
  162. */
  163. render.JSON(response, req, "tenant")
  164. }