All checks were successful
Build and Release / Create Release (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 3m7s
Build and Release / Lint (push) Successful in 5m21s
Build and Release / Unit Tests (push) Successful in 5m46s
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Successful in 3m44s
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Successful in 4m4s
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Successful in 3m23s
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Successful in 3m47s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Successful in 8h6m28s
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"text/tabwriter"
|
|
|
|
user_model "code.gitcaddy.com/server/models/user"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var microcmdUserList = &cli.Command{
|
|
Name: "list",
|
|
Usage: "List users",
|
|
Action: runListUsers,
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "admin",
|
|
Usage: "List only admin users",
|
|
},
|
|
},
|
|
}
|
|
|
|
func runListUsers(ctx context.Context, c *cli.Command) error {
|
|
if err := initDB(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
users, err := user_model.GetAllUsers(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 5, 0, 1, ' ', 0)
|
|
|
|
if c.IsSet("admin") {
|
|
fmt.Fprintf(w, "ID\tUsername\tEmail\tIsActive\n")
|
|
for _, u := range users {
|
|
if u.IsAdmin {
|
|
fmt.Fprintf(w, "%d\t%s\t%s\t%t\n", u.ID, u.Name, u.Email, u.IsActive)
|
|
}
|
|
}
|
|
} else {
|
|
twofa := user_model.UserList(users).GetTwoFaStatus(ctx)
|
|
fmt.Fprintf(w, "ID\tUsername\tEmail\tIsActive\tIsAdmin\t2FA\n")
|
|
for _, u := range users {
|
|
fmt.Fprintf(w, "%d\t%s\t%s\t%t\t%t\t%t\n", u.ID, u.Name, u.Email, u.IsActive, u.IsAdmin, twofa[u.ID])
|
|
}
|
|
}
|
|
|
|
w.Flush()
|
|
return nil
|
|
}
|