package api import ( "log/slog" "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" "joylink.club/bj-rtsts-server/sys_error" ) func InitCategoryRouter(api *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) { authed := api.Group("/v1/category").Use(authMiddleware.MiddlewareFunc(), middleware.PermissMiddleware) 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 { panic(sys_error.New("查询失败,参数格式错误", err)) } slog.Debug("分页查厂家参数", req) c.JSON(http.StatusOK, service.PageCategoryQuery(&req)) } // 查询厂家信息列表 // // @Summary 查询厂家信息列表 // // @Security JwtAuth // // @Description 可以通过厂家名称过滤,查询厂家信息列表 // @Tags 厂家信息Api // @Accept json // @Produce json // @Param CategoryReqDto query dto.CategoryReqDto 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/list [get] func listQueryCategory(c *gin.Context) { req := dto.CategoryReqDto{} if err := c.ShouldBind(&req); err != nil { panic(sys_error.New("查询失败,参数格式错误", err)) } slog.Debug("查厂家参数", req) c.JSON(http.StatusOK, service.ListCategoryQuery(&req)) } // 创建厂家信息 // // @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 { panic(sys_error.New("保存失败,参数格式错误", err)) } slog.Debug("保存数据", req) c.JSON(http.StatusOK, service.CreateCategory(&req)) } // 查询厂家信息 // // @Summary 查询厂家信息 // // @Security JwtAuth // // @Description 查询厂家信息 // @Tags 厂家信息Api // @Accept json // @Produce json // @Param id path int true "厂家ID" // @Success 200 {object} model.Category // @Failure 401 {object} dto.ErrorDto // @Failure 404 {object} dto.ErrorDto // @Failure 500 {object} dto.ErrorDto // @Router /api/v1/category/{id} [get] func queryCategoryInfo(c *gin.Context) { id, exist := c.Params.Get("id") if !exist { panic(sys_error.New("查询失败,缺少id")) } 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 // @Router /api/v1/category/{id} [put] func updateCategoryInfo(c *gin.Context) { id, exist := c.Params.Get("id") if !exist { panic(sys_error.New("更新失败,缺少id")) } slog.Debug("传入参数id为" + id) req := dto.CategoryDto{} if err := c.ShouldBind(&req); err != nil { panic(sys_error.New("更新失败,参数格式错误", err)) } int64Id, _ := strconv.ParseInt(id, 10, 64) c.JSON(http.StatusOK, service.UpdateCategory(int32(int64Id), &req)) } // 删除厂家信息 // // @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 // @Router /api/v1/category/{id} [delete] func deleteCategory(c *gin.Context) { idStr := c.Param("id") id, err := strconv.Atoi(idStr) if err != nil { panic(sys_error.New("删除失败,主键格式错误", err)) } service.DeleteCategoryById(id) c.JSON(http.StatusOK, true) }