rts-sim-testing-service/api/category.go

182 lines
5.2 KiB
Go
Raw Normal View History

2023-08-03 17:01:28 +08:00
package api
import (
"log/slog"
2023-08-03 17:01:28 +08:00
"net/http"
"strconv"
jwt "github.com/appleboy/gin-jwt/v2"
"github.com/gin-gonic/gin"
"joylink.club/bj-rtsts-server/dto"
"joylink.club/bj-rtsts-server/middleware"
"joylink.club/bj-rtsts-server/service"
2023-10-20 18:08:06 +08:00
"joylink.club/bj-rtsts-server/sys_error"
2023-08-03 17:01:28 +08:00
)
func InitCategoryRouter(api *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
2023-08-30 09:28:21 +08:00
authed := api.Group("/v1/category").Use(authMiddleware.MiddlewareFunc(), middleware.PermissMiddleware)
2023-08-03 17:01:28 +08:00
authed.GET("/paging", pageQueryCategory)
authed.GET("/list", listQueryCategory)
authed.POST("", createCategory)
authed.GET("/:id", queryCategoryInfo)
authed.PUT("/:id", updateCategoryInfo)
authed.DELETE("/:id", deleteCategory)
}
// 分页查询厂家信息
//
// @Summary 分页查询厂家信息
//
// @Security JwtAuth
//
// @Description 可以通过厂家名称过滤,分页查询厂家信息
// @Tags 厂家信息Api
// @Accept json
// @Produce json
// @Param PageCategoryReqDto query dto.PageCategoryReqDto true "厂家查询条件带分页信息"
// @Success 200 {object} dto.PageDto
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
// @Router /api/v1/category/paging [get]
func pageQueryCategory(c *gin.Context) {
req := dto.PageCategoryReqDto{}
if err := c.ShouldBind(&req); err != nil {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("查询失败,参数格式错误", err))
2023-08-03 17:01:28 +08:00
}
slog.Debug("分页查厂家参数", req)
2023-10-20 18:08:06 +08:00
c.JSON(http.StatusOK, service.PageCategoryQuery(&req))
2023-08-03 17:01:28 +08:00
}
// 查询厂家信息列表
//
// @Summary 查询厂家信息列表
//
// @Security JwtAuth
//
// @Description 可以通过厂家名称过滤,查询厂家信息列表
// @Tags 厂家信息Api
// @Accept json
// @Produce json
2023-08-18 10:59:41 +08:00
// @Param CategoryReqDto query dto.CategoryReqDto true "厂家查询条件"
2023-08-03 17:01:28 +08:00
// @Success 200 {object} dto.PageDto
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
// @Router /api/v1/category/list [get]
func listQueryCategory(c *gin.Context) {
req := dto.CategoryReqDto{}
2023-08-03 17:01:28 +08:00
if err := c.ShouldBind(&req); err != nil {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("查询失败,参数格式错误", err))
2023-08-03 17:01:28 +08:00
}
slog.Debug("查厂家参数", req)
2023-10-20 18:08:06 +08:00
c.JSON(http.StatusOK, service.ListCategoryQuery(&req))
2023-08-03 17:01:28 +08:00
}
// 创建厂家信息
//
// @Summary 创建厂家信息
//
// @Security JwtAuth
//
// @Description 创建厂家数据
// @Tags 厂家信息Api
// @Accept json
// @Produce json
// @Param CategoryDto query dto.CategoryDto true "创建的厂家信息"
// @Success 200 {object} nil
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
// @Router /api/v1/category [post]
func createCategory(c *gin.Context) {
req := dto.CategoryDto{}
if err := c.ShouldBind(&req); err != nil {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("保存失败,参数格式错误", err))
2023-08-03 17:01:28 +08:00
}
slog.Debug("保存数据", req)
2023-10-20 18:08:06 +08:00
c.JSON(http.StatusOK, service.CreateCategory(&req))
2023-08-03 17:01:28 +08:00
}
// 查询厂家信息
//
// @Summary 查询厂家信息
//
// @Security JwtAuth
//
// @Description 查询厂家信息
// @Tags 厂家信息Api
// @Accept json
// @Produce json
// @Param id path int true "厂家ID"
// @Success 200 {object} model.Category
2023-08-03 17:01:28 +08:00
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
2023-08-28 15:24:17 +08:00
// @Router /api/v1/category/{id} [get]
2023-08-03 17:01:28 +08:00
func queryCategoryInfo(c *gin.Context) {
id, exist := c.Params.Get("id")
if !exist {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("查询失败,缺少id"))
2023-08-03 17:01:28 +08:00
}
int64Id, _ := strconv.ParseInt(id, 10, 64)
c.JSON(http.StatusOK, service.QueryCategory(int32(int64Id)))
}
// 修改厂家信息
//
// @Summary 修改厂家信息
//
// @Security JwtAuth
//
// @Description 修改厂家信息
// @Tags 厂家信息Api
// @Accept json
// @Produce json
// @Param id path int true "厂家信息ID"
// @Param CategoryDto query dto.CategoryDto true "修改的厂家信息"
// @Success 200 {object} nil
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
2023-08-28 15:24:17 +08:00
// @Router /api/v1/category/{id} [put]
2023-08-03 17:01:28 +08:00
func updateCategoryInfo(c *gin.Context) {
id, exist := c.Params.Get("id")
if !exist {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("更新失败,缺少id"))
2023-08-03 17:01:28 +08:00
}
slog.Debug("传入参数id为" + id)
2023-08-03 17:01:28 +08:00
req := dto.CategoryDto{}
if err := c.ShouldBind(&req); err != nil {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("更新失败,参数格式错误", err))
2023-08-03 17:01:28 +08:00
}
int64Id, _ := strconv.ParseInt(id, 10, 64)
2023-10-20 18:08:06 +08:00
c.JSON(http.StatusOK, service.UpdateCategory(int32(int64Id), &req))
2023-08-03 17:01:28 +08:00
}
// 删除厂家信息
//
// @Summary 删除厂家信息
//
// @Security JwtAuth
//
// @Description 删除厂家信息
// @Tags 厂家信息Api
// @Accept json
// @Produce json
// @Param id path int true "厂家信息ID"
// @Success 200 {object} nil
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
2023-08-28 15:24:17 +08:00
// @Router /api/v1/category/{id} [delete]
2023-08-03 17:01:28 +08:00
func deleteCategory(c *gin.Context) {
idStr := c.Param("id")
id, err := strconv.Atoi(idStr)
if err != nil {
2023-10-20 18:08:06 +08:00
panic(sys_error.New("删除失败,主键格式错误", err))
2023-08-03 17:01:28 +08:00
}
service.DeleteCategoryById(id)
c.JSON(http.StatusOK, true)
}