You've already forked filebrowser
mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-11-26 14:25:26 +08:00
feat: wrap commands to send info (#612)
Wrap commands in a better way to pass storage
This commit is contained in:
@@ -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{}),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user