177 lines
5.0 KiB
Go
177 lines
5.0 KiB
Go
package api
|
|
|
|
import (
|
|
"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 InitProjectRouter(api *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
|
|
authed := api.Group("/v1/project").Use(authMiddleware.MiddlewareFunc(), middleware.PermissMiddleware)
|
|
authed.GET("/paging", pageQueryProject)
|
|
authed.GET("/list", listQueryProject)
|
|
authed.POST("", createProject)
|
|
authed.GET("/:id", queryProjectInfo)
|
|
authed.PUT("/:id", updateProjectInfo)
|
|
authed.DELETE("/:id", deleteProject)
|
|
}
|
|
|
|
// 分页查询项目信息
|
|
//
|
|
// @Summary 分页查询项目信息
|
|
//
|
|
// @Security JwtAuth
|
|
//
|
|
// @Description 可以通过项目名称过滤,分页查询项目信息
|
|
// @Tags 项目信息Api
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param PageProjectReqDto query dto.PageProjectReqDto true "项目查询条件带分页信息"
|
|
// @Success 200 {object} dto.PageDto
|
|
// @Failure 401 {object} dto.ErrorDto
|
|
// @Failure 404 {object} dto.ErrorDto
|
|
// @Failure 500 {object} dto.ErrorDto
|
|
// @Router /api/v1/project/paging [get]
|
|
func pageQueryProject(c *gin.Context) {
|
|
req := dto.PageProjectReqDto{}
|
|
if err := c.ShouldBind(&req); err != nil {
|
|
panic(sys_error.New("查询失败,参数格式错误", err))
|
|
}
|
|
c.JSON(http.StatusOK, service.PageProjectQuery(&req))
|
|
}
|
|
|
|
// 查询项目信息列表
|
|
//
|
|
// @Summary 查询项目信息列表
|
|
//
|
|
// @Security JwtAuth
|
|
//
|
|
// @Description 可以通过项目名称过滤,查询项目信息列表
|
|
// @Tags 项目信息Api
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param ProjectReqDto query dto.ProjectReqDto true "项目查询条件"
|
|
// @Success 200 {object} model.Project
|
|
// @Failure 401 {object} dto.ErrorDto
|
|
// @Failure 404 {object} dto.ErrorDto
|
|
// @Failure 500 {object} dto.ErrorDto
|
|
// @Router /api/v1/project/list [get]
|
|
func listQueryProject(c *gin.Context) {
|
|
req := dto.ProjectReqDto{}
|
|
if err := c.ShouldBind(&req); err != nil {
|
|
panic(sys_error.New("查询失败,参数格式错误", err))
|
|
}
|
|
c.JSON(http.StatusOK, service.ListProjectQuery(&req))
|
|
}
|
|
|
|
// 创建项目信息
|
|
//
|
|
// @Summary 创建项目信息
|
|
//
|
|
// @Security JwtAuth
|
|
//
|
|
// @Description 创建项目数据
|
|
// @Tags 项目信息Api
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param ProjectDto query dto.ProjectDto true "创建的项目信息"
|
|
// @Success 200 {object} nil
|
|
// @Failure 401 {object} dto.ErrorDto
|
|
// @Failure 404 {object} dto.ErrorDto
|
|
// @Failure 500 {object} dto.ErrorDto
|
|
// @Router /api/v1/project [post]
|
|
func createProject(c *gin.Context) {
|
|
req := dto.ProjectDto{}
|
|
if err := c.ShouldBind(&req); err != nil {
|
|
panic(sys_error.New("创建失败,参数格式错误", err))
|
|
}
|
|
c.JSON(http.StatusOK, service.CreateProject(&req))
|
|
}
|
|
|
|
// 查询项目信息
|
|
//
|
|
// @Summary 查询项目信息
|
|
//
|
|
// @Security JwtAuth
|
|
//
|
|
// @Description 查询项目信息
|
|
// @Tags 项目信息Api
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path int true "项目ID"
|
|
// @Success 200 {object} model.Project
|
|
// @Failure 401 {object} dto.ErrorDto
|
|
// @Failure 404 {object} dto.ErrorDto
|
|
// @Failure 500 {object} dto.ErrorDto
|
|
// @Router /api/v1/project/{id} [get]
|
|
func queryProjectInfo(c *gin.Context) {
|
|
id, exist := c.Params.Get("id")
|
|
if !exist {
|
|
panic(sys_error.New("查询失败,缺少主键"))
|
|
}
|
|
int64Id, _ := strconv.ParseInt(id, 10, 64)
|
|
c.JSON(http.StatusOK, service.QueryProject(int32(int64Id)))
|
|
}
|
|
|
|
// 修改项目信息
|
|
//
|
|
// @Summary 修改项目信息
|
|
//
|
|
// @Security JwtAuth
|
|
//
|
|
// @Description 修改项目信息
|
|
// @Tags 项目信息Api
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path int true "项目信息ID"
|
|
// @Param ProjectDto query dto.ProjectDto true "修改的项目信息"
|
|
// @Success 200 {object} nil
|
|
// @Failure 401 {object} dto.ErrorDto
|
|
// @Failure 404 {object} dto.ErrorDto
|
|
// @Failure 500 {object} dto.ErrorDto
|
|
// @Router /api/v1/project/{id} [put]
|
|
func updateProjectInfo(c *gin.Context) {
|
|
id, exist := c.Params.Get("id")
|
|
if !exist {
|
|
panic(sys_error.New("更新失败,缺少主键"))
|
|
}
|
|
req := dto.ProjectDto{}
|
|
if err := c.ShouldBind(&req); err != nil {
|
|
panic(sys_error.New("更新失败,参数格式错误", err))
|
|
}
|
|
int64Id, _ := strconv.ParseInt(id, 10, 64)
|
|
c.JSON(http.StatusOK, service.UpdateProject(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/project/{id} [delete]
|
|
func deleteProject(c *gin.Context) {
|
|
idStr := c.Param("id")
|
|
id, err := strconv.Atoi(idStr)
|
|
if err != nil {
|
|
panic(sys_error.New("删除失败,缺少主键"))
|
|
}
|
|
service.DeleteProjectById(id)
|
|
c.JSON(http.StatusOK, true)
|
|
}
|