userapi.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package api
  2. import (
  3. "fmt"
  4. "net/http"
  5. "github.com/go-chi/chi"
  6. "github.com/go-chi/render"
  7. "github.com/willie68/schematic-service-go/dao"
  8. "github.com/willie68/schematic-service-go/model"
  9. )
  10. // TagsRoutes getting all routes for the tags endpoint
  11. func UsersRoutes() *chi.Mux {
  12. router := chi.NewRouter()
  13. router.Post("/", PostUserEndpoint)
  14. router.Put("/{username}", PutUserEndpoint)
  15. router.Delete("/{username}", DeleteUserEndpoint)
  16. return router
  17. }
  18. //PutUserEndpoint getting all tags back. No paging...
  19. func PostUserEndpoint(response http.ResponseWriter, req *http.Request) {
  20. var user model.User
  21. err := render.DefaultDecoder(req, &user)
  22. if err != nil {
  23. Msg(response, http.StatusBadRequest, err.Error())
  24. return
  25. }
  26. adminusername, _, _ := req.BasicAuth()
  27. admin, ok := dao.GetStorage().GetUser(adminusername)
  28. if !ok {
  29. Msg(response, http.StatusInternalServerError, "")
  30. return
  31. }
  32. if !admin.Admin {
  33. Msg(response, http.StatusForbidden, "permission denied")
  34. return
  35. }
  36. err = dao.GetStorage().AddUser(user)
  37. if err != nil {
  38. Msg(response, http.StatusBadRequest, err.Error())
  39. return
  40. }
  41. Msg(response, http.StatusCreated, fmt.Sprintf("user \"%s\" created sucessfully", user.Name))
  42. }
  43. //PutUserEndpoint getting all tags back. No paging...
  44. func PutUserEndpoint(response http.ResponseWriter, req *http.Request) {
  45. username := chi.URLParam(req, "username")
  46. var user model.User
  47. err := render.DefaultDecoder(req, &user)
  48. if err != nil {
  49. Msg(response, http.StatusBadRequest, err.Error())
  50. return
  51. }
  52. if username != user.Name {
  53. Msg(response, http.StatusBadRequest, "username should be identically")
  54. return
  55. }
  56. adminusername, _, _ := req.BasicAuth()
  57. admin, ok := dao.GetStorage().GetUser(adminusername)
  58. if !ok {
  59. Msg(response, http.StatusInternalServerError, "")
  60. return
  61. }
  62. if !admin.Admin {
  63. Msg(response, http.StatusForbidden, "permission denied")
  64. return
  65. }
  66. err = dao.GetStorage().ChangePWD(username, user.NewPassword, user.Password)
  67. if err != nil {
  68. Msg(response, http.StatusBadRequest, err.Error())
  69. return
  70. }
  71. return
  72. }
  73. //PutUserEndpoint getting all tags back. No paging...
  74. func DeleteUserEndpoint(response http.ResponseWriter, req *http.Request) {
  75. username := chi.URLParam(req, "username")
  76. adminusername, _, _ := req.BasicAuth()
  77. admin, ok := dao.GetStorage().GetUser(adminusername)
  78. if !ok {
  79. Msg(response, http.StatusInternalServerError, "")
  80. return
  81. }
  82. if !admin.Admin {
  83. Msg(response, http.StatusForbidden, "permission denied")
  84. return
  85. }
  86. err := dao.GetStorage().DeleteUser(username)
  87. if err != nil {
  88. Msg(response, http.StatusBadRequest, err.Error())
  89. return
  90. }
  91. return
  92. }