add delete command api

This commit is contained in:
Jay
2018-12-10 16:48:22 +08:00
parent e2f4766436
commit a7581c74b5
2 changed files with 54 additions and 1 deletions
+28 -1
View File
@@ -160,7 +160,6 @@ func GetCommandList(c *context.Context) {
// AddLineGroupCommand -
func AddLineGroupCommand(c *context.Context) {
// TODO
bodyStruct := struct {
Cmd string `json:"cmd"`
Message string `json:"message"`
@@ -188,3 +187,31 @@ func AddLineGroupCommand(c *context.Context) {
"cmd": utils.ToMap(cmd),
})
}
// DeleteLineGroupCommand -
func DeleteLineGroupCommand(c *context.Context) {
cmd, ok := c.Params.Get("cmd")
if !ok {
c.DataFormat(nil)
return
}
g := c.DefaultQuery("group", "")
exist, err := model.CheckCommand(cmd, g)
if err != nil {
c.ServerError(nil)
return
}
if !exist {
c.NotFound(nil)
return
}
// TODO
err = model.DeleteCommand(cmd, g)
if err != nil {
c.ServerError(nil)
return
}
c.Success(nil)
}