新增自定义通知模板

This commit is contained in:
linxiaozhi
2019-02-16 20:43:33 +08:00
parent 374b305d96
commit 7bd18fdb64
16 changed files with 830 additions and 112 deletions

166
controllers/notify_tpl.go Normal file
View File

@@ -0,0 +1,166 @@
/************************************************************
** @Description: controllers
** @Author: Bee
** @Date: 2019-02-15 20:21
** @Last Modified by: Bee
** @Last Modified time: 2019-02-15 20:21
*************************************************************/
package controllers
import (
"github.com/george518/PPGo_Job/models"
"strings"
"time"
"github.com/astaxie/beego"
"encoding/json"
)
type NotifyTplController struct {
BaseController
}
func (self *NotifyTplController) List() {
self.Data["pageTitle"] = "通知模板"
self.display()
}
func (self *NotifyTplController) Add() {
self.Data["pageTitle"] = "新增通知模板"
self.Data["serverGroup"] = serverGroupLists(self.serverGroups, self.userId)
self.display()
}
func (self *NotifyTplController) Edit() {
self.Data["pageTitle"] = "编辑通知模板"
id, _ := self.GetInt("id", 0)
notifyTpl, _ := models.NotifyTplGetById(id)
row := make(map[string]interface{})
row["id"] = notifyTpl.Id
row["tpl_name"] = notifyTpl.TplName
row["tpl_type"] = notifyTpl.TplType
row["title"] = notifyTpl.Title
row["content"] = notifyTpl.Content
row["status"] = notifyTpl.Status
self.Data["notifyTpl"] = row
self.display()
}
func (self *NotifyTplController) AjaxSave() {
tpl_id, _ := self.GetInt("id")
if tpl_id == 0 {
notifyTpl := new(models.NotifyTpl)
notifyTpl.TplName = strings.TrimSpace(self.GetString("tpl_name"))
notifyTpl.TplType, _ = self.GetInt("tpl_type")
notifyTpl.Title = strings.TrimSpace(self.GetString("title"))
notifyTpl.Content = strings.TrimSpace(self.GetString("content"))
notifyTpl.CreateId = self.userId
notifyTpl.CreateTime = time.Now().Unix()
notifyTpl.Type = "default"
notifyTpl.Status, _ = self.GetInt("status")
if notifyTpl.TplType == 1 {
m := make(map[string]string)
err := json.Unmarshal([]byte(notifyTpl.Content), &m)
if err != nil {
self.ajaxMsg("模板内容格式错误,"+err.Error(), MSG_ERR)
}
}
if _, err := models.NotifyTplAdd(notifyTpl); err != nil {
self.ajaxMsg(err.Error(), MSG_ERR)
}
self.ajaxMsg("", MSG_OK)
}
notifyTpl, _ := models.NotifyTplGetById(tpl_id)
//修改
notifyTpl.Id = tpl_id
notifyTpl.UpdateId = self.userId
notifyTpl.UpdateTime = time.Now().Unix()
notifyTpl.TplName = strings.TrimSpace(self.GetString("tpl_name"))
notifyTpl.TplType, _ = self.GetInt("tpl_type")
notifyTpl.Title = strings.TrimSpace(self.GetString("title"))
notifyTpl.Content = strings.TrimSpace(self.GetString("content"))
notifyTpl.Status, _ = self.GetInt("status")
if notifyTpl.TplType == 1 {
m := make(map[string]string)
err := json.Unmarshal([]byte(notifyTpl.Content), &m)
if err != nil {
self.ajaxMsg("模板内容格式错误,"+err.Error(), MSG_ERR)
}
}
if notifyTpl.Type == "system" {
self.ajaxMsg("系统模板禁止更新", MSG_ERR)
}
if err := notifyTpl.Update(); err != nil {
self.ajaxMsg("更新失败,"+err.Error(), MSG_ERR)
}
self.ajaxMsg("", MSG_OK)
}
func (self *NotifyTplController) AjaxDel() {
id, _ := self.GetInt("id")
notifyTpl, _ := models.NotifyTplGetById(id)
if notifyTpl.Type == "system" {
self.ajaxMsg("系统模板禁止删除", MSG_ERR)
}
if err := models.NotifyTplDelById(id); err != nil {
self.ajaxMsg("删除失败,"+err.Error(), MSG_ERR)
}
self.ajaxMsg("操作成功", MSG_OK)
}
func (self *NotifyTplController) Table() {
//列表
page, err := self.GetInt("page")
if err != nil {
page = 1
}
limit, err := self.GetInt("limit")
if err != nil {
limit = 30
}
tplName := strings.TrimSpace(self.GetString("tplName"))
StatusText := []string{
"<font color='red'>禁用</font>",
"正常",
}
TplTypeText := []string{
"邮件",
"信息",
"钉钉",
}
self.pageSize = limit
//查询条件
filters := make([]interface{}, 0)
if tplName != "" {
filters = append(filters, "tpl_name__icontains", tplName)
}
result, count := models.NotifyTplGetList(page, self.pageSize, filters...)
list := make([]map[string]interface{}, len(result))
for k, v := range result {
row := make(map[string]interface{})
row["id"] = v.Id
row["type"] = v.Type
row["tpl_name"] = v.TplName
row["tpl_type"] = v.TplType
row["tpl_type_text"] = TplTypeText[v.TplType]
row["status"] = v.Status
row["status_text"] = StatusText[v.Status]
row["create_time"] = beego.Date(time.Unix(v.CreateTime, 0), "Y-m-d H:i:s")
row["update_time"] = beego.Date(time.Unix(v.UpdateTime, 0), "Y-m-d H:i:s")
list[k] = row
}
self.ajaxList("成功", MSG_OK, count, list)
}

View File

@@ -81,6 +81,22 @@ func (self *TaskController) Edit() {
}
self.Data["notify_user_ids"] = notifyUserIds
notifyTplList, _, err := models.NotifyTplGetByTplTypeList(task.NotifyType)
tplList := make([]map[string]interface{}, len(notifyTplList))
if err == nil {
for k, v := range notifyTplList {
row := make(map[string]interface{})
row["id"] = v.Id
row["tpl_name"] = v.TplName
row["tpl_type"] = v.TplType
tplList[k] = row
}
}
self.Data["notifyTpl"] = tplList
self.display()
}
@@ -197,8 +213,13 @@ func (self *TaskController) AjaxSave() {
task.Timeout, _ = self.GetInt("timeout")
task.IsNotify, _ = self.GetInt("is_notify")
task.NotifyType, _ = self.GetInt("notify_type")
task.NotifyTplId, _ = self.GetInt("notify_tpl_id")
task.NotifyUserIds = strings.TrimSpace(self.GetString("notify_user_ids"))
if task.IsNotify == 1 && task.NotifyTplId <= 0 {
self.ajaxMsg("请选择通知模板", MSG_ERR)
}
msg, isBan := checkCommand(task.Command)
if !isBan {
self.ajaxMsg("含有禁止命令:"+msg, MSG_ERR)
@@ -213,6 +234,7 @@ func (self *TaskController) AjaxSave() {
if task.TaskName == "" || task.CronSpec == "" || task.Command == "" {
self.ajaxMsg("请填写完整信息", MSG_ERR)
}
if _, err := cron.Parse(task.CronSpec); err != nil {
self.ajaxMsg("cron表达式无效", MSG_ERR)
}
@@ -237,9 +259,15 @@ func (self *TaskController) AjaxSave() {
task.Timeout, _ = self.GetInt("timeout")
task.IsNotify, _ = self.GetInt("is_notify")
task.NotifyType, _ = self.GetInt("notify_type")
task.NotifyTplId, _ = self.GetInt("notify_tpl_id")
task.NotifyUserIds = strings.TrimSpace(self.GetString("notify_user_ids"))
task.UpdateId = self.userId
task.Status = 2 //审核中,超级管理员不需要
if task.IsNotify == 1 && task.NotifyTplId <= 0 {
self.ajaxMsg("请选择通知模板", MSG_ERR)
}
if self.userId == 1 {
task.Status = 0
}
@@ -487,6 +515,23 @@ func (self *TaskController) AjaxDel() {
self.ajaxMsg("操作成功", MSG_OK)
}
func (self *TaskController) AjaxNotifyType() {
notifyType, _ := self.GetInt("notify_type")
result, count, _ := models.NotifyTplGetByTplTypeList(notifyType)
list := make([]map[string]interface{}, len(result))
for k, v := range result {
row := make(map[string]interface{})
row["id"] = v.Id
row["tpl_name"] = v.TplName
row["tpl_type"] = v.TplType
list[k] = row
}
self.ajaxList("成功", MSG_OK, count, list)
}
func (self *TaskController) Table() {
//列表
page, err := self.GetInt("page")

View File

@@ -146,6 +146,15 @@ func (self *TaskLogController) Detail() {
self.Data["CreateTime"] = beego.Date(time.Unix(task.CreateTime, 0), "Y-m-d H:i:s")
self.Data["UpdateTime"] = beego.Date(time.Unix(task.UpdateTime, 0), "Y-m-d H:i:s")
self.Data["task"] = task
self.Data["NotifyTplName"] = "未知"
if task.IsNotify == 1 {
notifyTpl, err := models.NotifyTplGetById(task.NotifyTplId)
if err == nil {
self.Data["NotifyTplName"] = notifyTpl.TplName
}
}
// 分组列表
self.Data["taskGroup"] = taskGroupLists(self.taskGroups, self.userId)