feat: wrap commands to send info (#612)

Wrap commands in a better way to pass storage

Former-commit-id: 9a3790c193936b53fe3826d1e051795efd30670b [formerly 04a9f34933a162cf4a98bc1e019f0d6c6404aae7] [formerly ab9be7f27b55a94e6a0f053df6908e357d4b396c [formerly 01ff03e42601126f5a3f255165d0197b1b555b1f]]
Former-commit-id: ae7b61281dec2b5527f6032dc6f8c1bd8bb51296 [formerly 780ccc3b166e72bf53114bbfc0a95c0b7ffd8656]
Former-commit-id: 68ee8f7f3931f8e571b0188c96951077d6529cd7
This commit is contained in:
Henrique Dias
2019-01-07 20:24:23 +00:00
committed by GitHub
parent 1133f0f826
commit 77e1fe83db
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{}),
}