feat: add message template
This commit is contained in:
@@ -0,0 +1,336 @@
|
||||
package v1
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"message-nest/models"
|
||||
"message-nest/pkg/app"
|
||||
"message-nest/pkg/e"
|
||||
"message-nest/pkg/util"
|
||||
"message-nest/service/message_template_service"
|
||||
"message-nest/service/send_ins_service"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// GetMessageTemplateList 获取消息模板列表
|
||||
func GetMessageTemplateList(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
text := c.Query("text")
|
||||
status := c.Query("status")
|
||||
|
||||
offset, limit := util.GetPageSize(c)
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
Text: text,
|
||||
Status: status,
|
||||
PageNum: offset,
|
||||
PageSize: limit,
|
||||
}
|
||||
|
||||
templates, err := templateService.GetAll()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "获取消息模板失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
count, err := templateService.Count()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "获取消息模板总数失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "获取消息模板成功", map[string]interface{}{
|
||||
"lists": templates,
|
||||
"total": count,
|
||||
})
|
||||
}
|
||||
|
||||
// GetMessageTemplate 获取单个消息模板
|
||||
func GetMessageTemplate(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
id := c.Query("id")
|
||||
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
ID: id,
|
||||
}
|
||||
|
||||
exists, err := templateService.ExistByID()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "查询模板失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if !exists {
|
||||
appG.CResponse(http.StatusNotFound, "模板不存在!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
template, err := templateService.Get()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "获取模板详情失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "获取模板详情成功", template)
|
||||
}
|
||||
|
||||
// AddMessageTemplate 添加消息模板
|
||||
func AddMessageTemplate(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
|
||||
var req struct {
|
||||
Name string `json:"name" binding:"required"`
|
||||
Description string `json:"description"`
|
||||
TextTemplate string `json:"text_template"`
|
||||
HTMLTemplate string `json:"html_template"`
|
||||
MarkdownTemplate string `json:"markdown_template"`
|
||||
Placeholders string `json:"placeholders"`
|
||||
AtMobiles string `json:"at_mobiles"`
|
||||
AtUserIds string `json:"at_user_ids"`
|
||||
IsAtAll bool `json:"is_at_all"`
|
||||
Status string `json:"status"`
|
||||
}
|
||||
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "参数错误:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
if req.TextTemplate == "" && req.HTMLTemplate == "" && req.MarkdownTemplate == "" {
|
||||
appG.CResponse(http.StatusBadRequest, "至少需要填写一种格式的模板内容", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if req.Status == "" {
|
||||
req.Status = "enabled"
|
||||
}
|
||||
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
Name: req.Name,
|
||||
Description: req.Description,
|
||||
TextTemplate: req.TextTemplate,
|
||||
HTMLTemplate: req.HTMLTemplate,
|
||||
MarkdownTemplate: req.MarkdownTemplate,
|
||||
Placeholders: req.Placeholders,
|
||||
AtMobiles: req.AtMobiles,
|
||||
AtUserIds: req.AtUserIds,
|
||||
IsAtAll: req.IsAtAll,
|
||||
Status: req.Status,
|
||||
}
|
||||
|
||||
if err := templateService.Add(); err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "添加模板失败:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "添加模板成功", nil)
|
||||
}
|
||||
|
||||
// EditMessageTemplate 编辑消息模板
|
||||
func EditMessageTemplate(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
|
||||
var req struct {
|
||||
ID string `json:"id" binding:"required"`
|
||||
Name string `json:"name" binding:"required"`
|
||||
Description string `json:"description"`
|
||||
TextTemplate string `json:"text_template"`
|
||||
HTMLTemplate string `json:"html_template"`
|
||||
MarkdownTemplate string `json:"markdown_template"`
|
||||
Placeholders string `json:"placeholders"`
|
||||
AtMobiles string `json:"at_mobiles"`
|
||||
AtUserIds string `json:"at_user_ids"`
|
||||
IsAtAll bool `json:"is_at_all"`
|
||||
Status string `json:"status"`
|
||||
}
|
||||
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "参数错误:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
if req.TextTemplate == "" && req.HTMLTemplate == "" && req.MarkdownTemplate == "" {
|
||||
appG.CResponse(http.StatusBadRequest, "至少需要填写一种格式的模板内容", nil)
|
||||
return
|
||||
}
|
||||
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
ID: req.ID,
|
||||
}
|
||||
|
||||
exists, err := templateService.ExistByID()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "查询模板失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if !exists {
|
||||
appG.CResponse(http.StatusNotFound, "模板不存在!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
templateService.Name = req.Name
|
||||
templateService.Description = req.Description
|
||||
templateService.TextTemplate = req.TextTemplate
|
||||
templateService.HTMLTemplate = req.HTMLTemplate
|
||||
templateService.MarkdownTemplate = req.MarkdownTemplate
|
||||
templateService.Placeholders = req.Placeholders
|
||||
templateService.AtMobiles = req.AtMobiles
|
||||
templateService.AtUserIds = req.AtUserIds
|
||||
templateService.IsAtAll = req.IsAtAll
|
||||
templateService.Status = req.Status
|
||||
|
||||
if err := templateService.Update(); err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "更新模板失败:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "更新模板成功", nil)
|
||||
}
|
||||
|
||||
// DeleteMessageTemplate 删除消息模板
|
||||
func DeleteMessageTemplate(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
|
||||
var req struct {
|
||||
ID string `json:"id" binding:"required"`
|
||||
}
|
||||
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "参数错误:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
ID: req.ID,
|
||||
}
|
||||
|
||||
exists, err := templateService.ExistByID()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "查询模板失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if !exists {
|
||||
appG.CResponse(http.StatusNotFound, "模板不存在!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if err := templateService.Delete(); err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "删除模板失败:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "删除模板成功", nil)
|
||||
}
|
||||
|
||||
// PreviewMessageTemplate 预览消息模板
|
||||
func PreviewMessageTemplate(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
|
||||
var req struct {
|
||||
ID string `json:"id" binding:"required"`
|
||||
Params map[string]string `json:"params"`
|
||||
}
|
||||
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "参数错误:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
templateService := message_template_service.MessageTemplateService{
|
||||
ID: req.ID,
|
||||
}
|
||||
|
||||
exists, err := templateService.ExistByID()
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "查询模板失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
if !exists {
|
||||
appG.CResponse(http.StatusNotFound, "模板不存在!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
preview, err := templateService.PreviewTemplate(req.Params)
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusInternalServerError, "预览模板失败:"+err.Error(), nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "预览模板成功", preview)
|
||||
}
|
||||
|
||||
// GetTemplateWithIns 获取模板及其关联的实例
|
||||
func GetTemplateWithIns(c *gin.Context) {
|
||||
appG := app.Gin{C: c}
|
||||
id := c.Query("id")
|
||||
|
||||
if id == "" {
|
||||
appG.CResponse(http.StatusBadRequest, "模板ID为空!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
// 获取模板信息
|
||||
template, err := models.GetMessageTemplateByID(id)
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "获取模板信息失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
// 获取关联的实例列表
|
||||
insList, err := models.GetTemplateInsList(id)
|
||||
if err != nil {
|
||||
appG.CResponse(http.StatusBadRequest, "获取实例列表失败!", nil)
|
||||
return
|
||||
}
|
||||
|
||||
result := map[string]interface{}{
|
||||
"template": template,
|
||||
"ins_list": insList,
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "获取模板信息成功", result)
|
||||
}
|
||||
|
||||
// TemplateInsReq 模板实例请求结构
|
||||
type TemplateInsReq struct {
|
||||
ID string `json:"id" validate:"required,len=12" label:"实例id"`
|
||||
TemplateID string `json:"template_id" validate:"required" label:"模板id"`
|
||||
WayID string `json:"way_id" validate:"required,len=12" label:"渠道id"`
|
||||
ContentType string `json:"content_type" validate:"required,max=100" label:"实例内容类型"`
|
||||
Config string `json:"config" validate:"" label:"任务配置"`
|
||||
Extra string `json:"extra" validate:"" label:"任务额外信息"`
|
||||
WayType string `json:"way_type" validate:"required,max=100" label:"渠道类型"`
|
||||
}
|
||||
|
||||
// AddTemplateIns 添加模板关联的实例
|
||||
func AddTemplateIns(c *gin.Context) {
|
||||
var (
|
||||
appG = app.Gin{C: c}
|
||||
req TemplateInsReq
|
||||
)
|
||||
|
||||
errCode, errStr := app.BindJsonAndPlayValid(c, &req)
|
||||
if errCode != e.SUCCESS {
|
||||
appG.CResponse(errCode, errStr, nil)
|
||||
return
|
||||
}
|
||||
|
||||
sendTaskInsService := send_ins_service.SendTaskInsService{}
|
||||
err := sendTaskInsService.AddOne(models.SendTasksIns{
|
||||
UUIDModel: models.UUIDModel{ID: req.ID},
|
||||
TemplateID: req.TemplateID,
|
||||
WayID: req.WayID,
|
||||
WayType: req.WayType,
|
||||
ContentType: req.ContentType,
|
||||
Config: req.Config,
|
||||
Extra: req.Extra,
|
||||
})
|
||||
if err != "" {
|
||||
appG.CResponse(http.StatusBadRequest, fmt.Sprintf("添加实例失败!错误原因:%s", err), nil)
|
||||
return
|
||||
}
|
||||
|
||||
appG.CResponse(http.StatusOK, "添加实例成功!", nil)
|
||||
}
|
||||
@@ -61,6 +61,7 @@ func DoSendMassage(c *gin.Context) {
|
||||
}
|
||||
|
||||
msgService := send_message_service.SendMessageService{
|
||||
SendMode: send_message_service.SendModeTask, // 明确标记为任务模式
|
||||
TaskID: taskID,
|
||||
Title: req.Title,
|
||||
Text: req.Text,
|
||||
|
||||
Reference in New Issue
Block a user