feat: wrap commands to send info (#612)

Wrap commands in a better way to pass storage
This commit is contained in:
Henrique Dias
2019-01-07 20:24:23 +00:00
committed by GitHub
parent f396602084
commit 01ff03e426
16 changed files with 170 additions and 212 deletions

View File

@@ -20,12 +20,8 @@ var usersUpdateCmd = &cobra.Command{
Long: `Updates an existing user. Set the flags for the
options you want to change.`,
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
db := getDB()
defer db.Close()
st := getStorage(db)
set, err := st.Settings.Get()
Run: python(func(cmd *cobra.Command, args []string, d pythonData) {
set, err := d.store.Settings.Get()
checkErr(err)
username, id := parseUsernameOrID(args[0])
@@ -35,9 +31,9 @@ options you want to change.`,
var user *users.User
if id != 0 {
user, err = st.Users.Get(set.Scope, id)
user, err = d.store.Users.Get(set.Scope, id)
} else {
user, err = st.Users.Get(set.Scope, username)
user, err = d.store.Users.Get(set.Scope, username)
}
checkErr(err)
@@ -68,8 +64,8 @@ options you want to change.`,
checkErr(err)
}
err = st.Users.Update(user)
err = d.store.Users.Update(user)
checkErr(err)
printUsers([]*users.User{user})
},
}, pythonConfig{}),
}