183 lines
5.2 KiB
Go
183 lines
5.2 KiB
Go
package api
|
||
|
||
import (
|
||
"kra/internal/plugin/announcement/model"
|
||
"kra/internal/plugin/announcement/model/request"
|
||
"kra/internal/plugin/announcement/service"
|
||
"kra/pkg/response"
|
||
|
||
"github.com/gin-gonic/gin"
|
||
)
|
||
|
||
// InfoApi 公告API
|
||
type InfoApi struct {
|
||
svc *service.Info
|
||
}
|
||
|
||
// NewInfoApi 创建公告API
|
||
func NewInfoApi(svc *service.Info) *InfoApi {
|
||
return &InfoApi{svc: svc}
|
||
}
|
||
|
||
// CreateInfo 创建公告
|
||
// @Tags Info
|
||
// @Summary 创建公告
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body model.Info true "创建公告"
|
||
// @Success 200 {object} response.Response{msg=string} "创建成功"
|
||
// @Router /info/createInfo [post]
|
||
func (a *InfoApi) CreateInfo(c *gin.Context) {
|
||
var infoData model.Info
|
||
err := c.ShouldBindJSON(&infoData)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
err = a.svc.CreateInfo(&infoData)
|
||
if err != nil {
|
||
response.FailWithMessage("创建失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("创建成功", c)
|
||
}
|
||
|
||
// DeleteInfo 删除公告
|
||
// @Tags Info
|
||
// @Summary 删除公告
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body model.Info true "删除公告"
|
||
// @Success 200 {object} response.Response{msg=string} "删除成功"
|
||
// @Router /info/deleteInfo [delete]
|
||
func (a *InfoApi) DeleteInfo(c *gin.Context) {
|
||
ID := c.Query("ID")
|
||
err := a.svc.DeleteInfo(ID)
|
||
if err != nil {
|
||
response.FailWithMessage("删除失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("删除成功", c)
|
||
}
|
||
|
||
// DeleteInfoByIds 批量删除公告
|
||
// @Tags Info
|
||
// @Summary 批量删除公告
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{msg=string} "批量删除成功"
|
||
// @Router /info/deleteInfoByIds [delete]
|
||
func (a *InfoApi) DeleteInfoByIds(c *gin.Context) {
|
||
IDs := c.QueryArray("IDs[]")
|
||
if err := a.svc.DeleteInfoByIds(IDs); err != nil {
|
||
response.FailWithMessage("批量删除失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("批量删除成功", c)
|
||
}
|
||
|
||
// UpdateInfo 更新公告
|
||
// @Tags Info
|
||
// @Summary 更新公告
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body model.Info true "更新公告"
|
||
// @Success 200 {object} response.Response{msg=string} "更新成功"
|
||
// @Router /info/updateInfo [put]
|
||
func (a *InfoApi) UpdateInfo(c *gin.Context) {
|
||
var infoData model.Info
|
||
err := c.ShouldBindJSON(&infoData)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
err = a.svc.UpdateInfo(infoData)
|
||
if err != nil {
|
||
response.FailWithMessage("更新失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("更新成功", c)
|
||
}
|
||
|
||
// FindInfo 用id查询公告
|
||
// @Tags Info
|
||
// @Summary 用id查询公告
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query model.Info true "用id查询公告"
|
||
// @Success 200 {object} response.Response{data=model.Info,msg=string} "查询成功"
|
||
// @Router /info/findInfo [get]
|
||
func (a *InfoApi) FindInfo(c *gin.Context) {
|
||
ID := c.Query("ID")
|
||
reinfo, err := a.svc.GetInfo(ID)
|
||
if err != nil {
|
||
response.FailWithMessage("查询失败", c)
|
||
return
|
||
}
|
||
response.OkWithData(reinfo, c)
|
||
}
|
||
|
||
// GetInfoList 分页获取公告列表
|
||
// @Tags Info
|
||
// @Summary 分页获取公告列表
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query request.InfoSearch true "分页获取公告列表"
|
||
// @Success 200 {object} response.Response{data=response.PageResult,msg=string} "获取成功"
|
||
// @Router /info/getInfoList [get]
|
||
func (a *InfoApi) GetInfoList(c *gin.Context) {
|
||
var pageInfo request.InfoSearch
|
||
err := c.ShouldBindQuery(&pageInfo)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
list, total, err := a.svc.GetInfoInfoList(pageInfo)
|
||
if err != nil {
|
||
response.FailWithMessage("获取失败", c)
|
||
return
|
||
}
|
||
response.OkWithDetailed(response.PageResult{
|
||
List: list,
|
||
Total: total,
|
||
Page: pageInfo.Page,
|
||
PageSize: pageInfo.PageSize,
|
||
}, "获取成功", c)
|
||
}
|
||
|
||
// GetInfoDataSource 获取Info的数据源
|
||
// @Tags Info
|
||
// @Summary 获取Info的数据源
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{data=object,msg=string} "查询成功"
|
||
// @Router /info/getInfoDataSource [get]
|
||
func (a *InfoApi) GetInfoDataSource(c *gin.Context) {
|
||
// 此接口为获取数据源定义的数据
|
||
dataSource, err := a.svc.GetInfoDataSource()
|
||
if err != nil {
|
||
response.FailWithMessage("查询失败", c)
|
||
return
|
||
}
|
||
response.OkWithData(dataSource, c)
|
||
}
|
||
|
||
// GetInfoPublic 不需要鉴权的公告接口
|
||
// @Tags Info
|
||
// @Summary 不需要鉴权的公告接口
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query request.InfoSearch true "分页获取公告列表"
|
||
// @Success 200 {object} response.Response{data=object,msg=string} "获取成功"
|
||
// @Router /info/getInfoPublic [get]
|
||
func (a *InfoApi) GetInfoPublic(c *gin.Context) {
|
||
// 此接口不需要鉴权 示例为返回了一个固定的消息接口,一般本接口用于C端服务,需要自己实现业务逻辑
|
||
response.OkWithDetailed(gin.H{"info": "不需要鉴权的公告接口信息"}, "获取成功", c)
|
||
}
|