schematicapi.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. render.JSON(response, req, schematic)
  35. }
  36. // GetTenantHandler gets a tenant
  37. func GetSchematicFileHandler(response http.ResponseWriter, req *http.Request) {
  38. //schematicID := chi.URLParam(req, "schematicId")
  39. fileID := chi.URLParam(req, "fileId")
  40. err := dao.GetFile(fileID, response)
  41. if err != nil {
  42. Msg(response, http.StatusBadRequest, err.Error())
  43. return
  44. }
  45. //render.JSON(response, req, schematic)
  46. }
  47. // GetTenantsHandler gets all tenants
  48. func GetSchematicsEndpoint(response http.ResponseWriter, req *http.Request) {
  49. offset := 0
  50. limit := 10
  51. query := req.URL.Query().Get("query")
  52. offsetStr := req.URL.Query().Get("offset")
  53. limitStr := req.URL.Query().Get("limit")
  54. var err error
  55. if offsetStr != "" {
  56. offset, err = strconv.Atoi(offsetStr)
  57. if err != nil {
  58. Msg(response, http.StatusBadRequest, err.Error())
  59. return
  60. }
  61. }
  62. if limitStr != "" {
  63. limit, err = strconv.Atoi(limitStr)
  64. if err != nil {
  65. Msg(response, http.StatusBadRequest, err.Error())
  66. return
  67. }
  68. }
  69. log.Printf("query: %s, offset: %d, limit: %d\n", query, offset, limit)
  70. schematics, err := dao.GetSchematics(query, offset, limit)
  71. if err != nil {
  72. Msg(response, http.StatusBadRequest, err.Error())
  73. return
  74. }
  75. render.JSON(response, req, schematics)
  76. }
  77. func PostSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  78. var schematic model.Schematic
  79. err := render.DefaultDecoder(req, &schematic)
  80. if err != nil {
  81. Msg(response, http.StatusBadRequest, err.Error())
  82. return
  83. }
  84. schematic.CreatedAt = time.Now()
  85. schematic.LastModifiedAt = time.Now()
  86. id, err := dao.CreateSchematic(schematic)
  87. if err != nil {
  88. Msg(response, http.StatusBadRequest, err.Error())
  89. return
  90. }
  91. schematic, err = dao.GetSchematic(id)
  92. if err != nil {
  93. Msg(response, http.StatusBadRequest, err.Error())
  94. return
  95. }
  96. render.Status(req, http.StatusCreated)
  97. render.JSON(response, req, schematic)
  98. }
  99. func PostFileEndpoint(response http.ResponseWriter, req *http.Request) {
  100. req.ParseForm()
  101. f, fileHeader, err := req.FormFile("file")
  102. if err != nil {
  103. Msg(response, http.StatusBadRequest, err.Error())
  104. return
  105. }
  106. //mimeType := fileHeader.Header.Get("Content-type")
  107. filename := fileHeader.Filename
  108. reader := bufio.NewReader(f)
  109. fileid, err := dao.AddFile(filename, reader)
  110. if err != nil {
  111. fmt.Printf("%v\n", err)
  112. } else {
  113. fmt.Printf("fileid: %s\n", fileid)
  114. }
  115. location := fmt.Sprintf("/api/v1/schematics/files/%s", fileid)
  116. response.Header().Add("Location", location)
  117. render.Status(req, http.StatusCreated)
  118. render.JSON(response, req, fileid)
  119. }
  120. func DeleteSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  121. /*
  122. schematicID := chi.URLParam(req, "schematicId")
  123. if err != nil {
  124. Msg(response, http.StatusBadRequest, err.Error())
  125. return
  126. }
  127. */
  128. render.JSON(response, req, "tenant")
  129. }
  130. func UpdateSchematicEndpoint(response http.ResponseWriter, req *http.Request) {
  131. /*
  132. schematicID := chi.URLParam(req, "schematicId")
  133. err := dao.Get().One("tenants", chi.URLParam(req, "schematicId"), &tenant)
  134. if err != nil {
  135. Msg(response, http.StatusBadRequest, err.Error())
  136. return
  137. }
  138. */
  139. render.JSON(response, req, "tenant")
  140. }