photoprism/internal/commands/users_list.go
Michael Mayer 713593da4e Auth: Add CLI command to create access tokens for apps #782 #808 #3943
You can now run "photoprism auth add" to create new client access tokens
that allow external applications to use the built-in REST API.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2024-01-05 16:31:07 +01:00

68 lines
1.7 KiB
Go

package commands
import (
"fmt"
"github.com/dustin/go-humanize/english"
"github.com/urfave/cli"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/query"
"github.com/photoprism/photoprism/pkg/report"
)
// UsersListCommand configures the command name, flags, and action.
var UsersListCommand = cli.Command{
Name: "ls",
Usage: "Lists registered user accounts",
Flags: append(report.CliFlags, countFlag),
Action: usersListAction,
}
// usersListAction displays existing user accounts.
func usersListAction(ctx *cli.Context) error {
return CallWithDependencies(ctx, func(conf *config.Config) error {
var rows [][]string
cols := []string{"UID", "Username", "Role", "Authentication", "Super Admin", "Web Login", "Last Login", "WebDAV"}
// Fetch users from database.
users, err := query.Users(ctx.Int("n"), 0, "", ctx.Args().First())
if err != nil {
return err
}
// Show log message.
log.Infof("found %s", english.Plural(len(users), "user", "users"))
if len(users) == 0 {
return nil
}
rows = make([][]string, len(users))
// Show log message.
log.Infof("found %s", english.Plural(len(users), "user", "users"))
// Display report.
for i, user := range users {
rows[i] = []string{
user.UID(),
user.Username(),
user.AclRole().Pretty(),
user.Provider().Pretty(),
report.Bool(user.SuperAdmin, report.Yes, report.No),
report.Bool(user.CanLogIn(), report.Enabled, report.Disabled),
report.DateTime(user.LoginAt),
report.Bool(user.CanUseWebDAV(), report.Enabled, report.Disabled),
}
}
result, err := report.RenderFormat(rows, cols, report.CliFormat(ctx))
fmt.Printf("\n%s\n", result)
return err
})
}