mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
999c69de5c
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com>
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)
|
|
},
|
|
}
|