gocron/internal/routers/manage/manage.go

115 lines
2.9 KiB
Go
Raw Normal View History

2017-04-30 22:02:49 +00:00
package manage
2017-04-28 03:54:46 +00:00
import (
2017-09-16 09:58:33 +00:00
"encoding/json"
2018-01-30 11:26:04 +00:00
2018-03-25 05:12:12 +00:00
"github.com/ouqiang/gocron/internal/models"
"github.com/ouqiang/gocron/internal/modules/logger"
"github.com/ouqiang/gocron/internal/modules/utils"
2017-09-16 09:58:33 +00:00
"gopkg.in/macaron.v1"
2017-04-28 03:54:46 +00:00
)
2017-04-30 17:12:07 +00:00
func Slack(ctx *macaron.Context) string {
2017-09-16 09:58:33 +00:00
settingModel := new(models.Setting)
slack, err := settingModel.Slack()
2018-05-02 12:41:41 +00:00
jsonResp := utils.JsonResponse{}
2017-09-16 09:58:33 +00:00
if err != nil {
logger.Error(err)
2018-05-02 12:41:41 +00:00
return jsonResp.Success(utils.SuccessContent, nil)
2017-09-16 09:58:33 +00:00
}
2018-05-02 12:41:41 +00:00
return jsonResp.Success(utils.SuccessContent, slack)
2017-04-30 17:12:07 +00:00
}
func UpdateSlackUrl(ctx *macaron.Context) string {
2017-09-16 09:58:33 +00:00
url := ctx.QueryTrim("url")
settingModel := new(models.Setting)
_, err := settingModel.UpdateSlackUrl(url)
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
2017-09-16 09:58:33 +00:00
func CreateSlackChannel(ctx *macaron.Context) string {
channel := ctx.QueryTrim("channel")
settingModel := new(models.Setting)
if settingModel.IsChannelExist(channel) {
2018-05-02 12:41:41 +00:00
jsonResp := utils.JsonResponse{}
2017-04-30 17:12:07 +00:00
2018-05-02 12:41:41 +00:00
return jsonResp.CommonFailure("Channel已存在")
2017-09-16 09:58:33 +00:00
}
_, err := settingModel.CreateChannel(channel)
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
2017-09-16 09:58:33 +00:00
func RemoveSlackChannel(ctx *macaron.Context) string {
id := ctx.ParamsInt(":id")
settingModel := new(models.Setting)
_, err := settingModel.RemoveChannel(id)
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
// endregion
// region 邮件
func Mail(ctx *macaron.Context) string {
2017-09-16 09:58:33 +00:00
settingModel := new(models.Setting)
mail, err := settingModel.Mail()
2018-05-02 12:41:41 +00:00
jsonResp := utils.JsonResponse{}
2017-09-16 09:58:33 +00:00
if err != nil {
logger.Error(err)
2018-05-02 12:41:41 +00:00
return jsonResp.Success(utils.SuccessContent, nil)
2017-09-16 09:58:33 +00:00
}
2017-04-30 17:12:07 +00:00
2018-05-02 12:41:41 +00:00
return jsonResp.Success("", mail)
2017-04-30 17:12:07 +00:00
}
type MailServerForm struct {
2017-09-16 09:58:33 +00:00
Host string `binding:"Required;MaxSize(100)"`
Port int `binding:"Required;Range(1-65535)"`
User string `binding:"Required;MaxSize(64);Email"`
Password string `binding:"Required;MaxSize(64)"`
2017-04-30 17:12:07 +00:00
}
func UpdateMailServer(ctx *macaron.Context, form MailServerForm) string {
2017-09-16 09:58:33 +00:00
jsonByte, _ := json.Marshal(form)
settingModel := new(models.Setting)
_, err := settingModel.UpdateMailServer(string(jsonByte))
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
func ClearMailServer(ctx *macaron.Context) string {
2017-09-16 09:58:33 +00:00
jsonByte, _ := json.Marshal(MailServerForm{})
settingModel := new(models.Setting)
_, err := settingModel.UpdateMailServer(string(jsonByte))
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
}
2017-09-16 09:58:33 +00:00
func CreateMailUser(ctx *macaron.Context) string {
username := ctx.QueryTrim("username")
email := ctx.QueryTrim("email")
settingModel := new(models.Setting)
if username == "" || email == "" {
2018-05-02 12:41:41 +00:00
jsonResp := utils.JsonResponse{}
2017-04-30 17:12:07 +00:00
2018-05-02 12:41:41 +00:00
return jsonResp.CommonFailure("用户名、邮箱均不能为空")
2017-09-16 09:58:33 +00:00
}
_, err := settingModel.CreateMailUser(username, email)
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
2017-09-16 09:58:33 +00:00
func RemoveMailUser(ctx *macaron.Context) string {
id := ctx.ParamsInt(":id")
settingModel := new(models.Setting)
_, err := settingModel.RemoveMailUser(id)
2017-04-30 17:12:07 +00:00
2017-09-16 09:58:33 +00:00
return utils.JsonResponseByErr(err)
2017-04-30 17:12:07 +00:00
}
2017-04-28 03:54:46 +00:00
2017-09-16 09:58:33 +00:00
// endregion