package archetype import ( "fmt" "nilfm.cc/git/quartzgun/auth" "strings" ) func ProcessCmd(args []string, userStore auth.UserStore, cfg *Config) bool { if len(args) == 1 { return false } switch args[1] { case "adduser": if len(args) < 4 { return help() } userStore.AddUser(args[2], args[3]) case "rmuser": if len(args) < 3 { return help() } userStore.DeleteUser(args[2]) case "passwd": if len(args) < 5 { return help() } userStore.ChangePassword(args[2], args[3], args[4]) case "configure": fmt.Printf("configuring\n") for _, token := range args[2:] { kvp := strings.Split(token, "=") k := kvp[0] v := kvp[1] fmt.Printf("%s = %s\n", k, v) switch k { case "adapter": cfg.SetAdapter(v) case "root": cfg.Root = v case "assetRoot": cfg.AssetRoot = v case "staticRoot": cfg.StaticRoot = v case "plugins": // handle plugins later default: panic("unknown configuration option: " + v) } } cfg.Write() default: help() } return true } func help() bool { return true }