add delete command api
This commit is contained in:
parent
e2f4766436
commit
a7581c74b5
@ -135,3 +135,29 @@ func AddCommand(cmdkey, message, group string) (cmd *Commands, err error) {
|
|||||||
}
|
}
|
||||||
return
|
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
|
||||||
|
}
|
||||||
|
@ -160,7 +160,6 @@ func GetCommandList(c *context.Context) {
|
|||||||
|
|
||||||
// AddLineGroupCommand -
|
// AddLineGroupCommand -
|
||||||
func AddLineGroupCommand(c *context.Context) {
|
func AddLineGroupCommand(c *context.Context) {
|
||||||
// TODO
|
|
||||||
bodyStruct := struct {
|
bodyStruct := struct {
|
||||||
Cmd string `json:"cmd"`
|
Cmd string `json:"cmd"`
|
||||||
Message string `json:"message"`
|
Message string `json:"message"`
|
||||||
@ -188,3 +187,31 @@ func AddLineGroupCommand(c *context.Context) {
|
|||||||
"cmd": utils.ToMap(cmd),
|
"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)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user