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

View File

@ -135,3 +135,29 @@ func AddCommand(cmdkey, message, group string) (cmd *Commands, err error) {
}
return
}
// CheckCommand -
func CheckCommand(cmd, group string) (exist bool, err error) {
if len(cmd) == 0 {
return false, errors.New("cmd is empty")
}
query := `select count(*) as c from "public"."commands" where "cmd" = $1 and "group" = $2`
c := 0
err = x.Get(&c, query, cmd, group)
if err != nil {
return false, err
}
return c > 0, nil
}
// DeleteCommand -
func DeleteCommand(cmd, group string) (err error) {
if len(cmd) == 0 {
return errors.New("cmd is empty")
}
query := `delete from "public"."commands" where "cmd" = $1 and "group" = $2`
_, err = x.Exec(query, cmd, group)
return
}

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)
}