mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00

License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com> Former-commit-id: 2923c251335301f361098890bf67d47cd58c0f86 [formerly 277653e21c4b9077ea3b83c149f0c5b2982b694f] [formerly 7481557b6f47c8de6499f3ee7339ea8d29216700 [formerly 999c69de5c96a3ea42c22b88e3ae016f0cfd6f52]] Former-commit-id: 65eaacb4aee11f84c9f97ca2834def045921202a [formerly 7c9260a1fe142258dd0ac02c4710b03badd66d76] Former-commit-id: ff3f3d7189b2e8cc2f00bef581cba108780e4552
33 lines
646 B
Go
33 lines
646 B
Go
package cmd
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmdsCmd.AddCommand(cmdsAddCmd)
|
|
}
|
|
|
|
var cmdsAddCmd = &cobra.Command{
|
|
Use: "add <event> <command>",
|
|
Short: "Add a command to run on a specific event",
|
|
Long: `Add a command to run on a specific event.`,
|
|
Args: cobra.MinimumNArgs(2),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
db := getDB()
|
|
defer db.Close()
|
|
st := getStorage(db)
|
|
s, err := st.Settings.Get()
|
|
checkErr(err)
|
|
|
|
command := strings.Join(args[1:], " ")
|
|
|
|
s.Commands[args[0]] = append(s.Commands[args[0]], command)
|
|
err = st.Settings.Save(s)
|
|
checkErr(err)
|
|
printEvents(s.Commands)
|
|
},
|
|
}
|