mirror of
https://github.com/larksuite/cli.git
synced 2026-07-03 14:02:43 +08:00
* feat: add --json flag support to auth subcommands * feat(auth/logout): add json output support for logout command * feat(auth/list): add json output support for auth list command
103 lines
2.6 KiB
Go
103 lines
2.6 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package auth
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
larkauth "github.com/larksuite/cli/internal/auth"
|
|
"github.com/larksuite/cli/internal/cmdutil"
|
|
"github.com/larksuite/cli/internal/core"
|
|
"github.com/larksuite/cli/internal/output"
|
|
)
|
|
|
|
// ListOptions holds all inputs for auth list.
|
|
type ListOptions struct {
|
|
Factory *cmdutil.Factory
|
|
JSON bool
|
|
}
|
|
|
|
// NewCmdAuthList creates the auth list subcommand.
|
|
func NewCmdAuthList(f *cmdutil.Factory, runF func(*ListOptions) error) *cobra.Command {
|
|
opts := &ListOptions{Factory: f}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "list",
|
|
Short: "List all logged-in users",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if runF != nil {
|
|
return runF(opts)
|
|
}
|
|
return authListRun(opts)
|
|
},
|
|
}
|
|
cmd.Flags().BoolVar(&opts.JSON, "json", false, "structured JSON output")
|
|
cmdutil.SetRisk(cmd, "read")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func authListRun(opts *ListOptions) error {
|
|
f := opts.Factory
|
|
|
|
multi, _ := core.LoadMultiAppConfig()
|
|
if multi == nil || len(multi.Apps) == 0 {
|
|
if opts.JSON {
|
|
output.PrintJson(f.IOStreams.Out, map[string]interface{}{
|
|
"ok": true,
|
|
"users": []map[string]interface{}{},
|
|
"reason": "not_configured",
|
|
})
|
|
return nil
|
|
}
|
|
// auth list is a read-only probe; the "configured but no users"
|
|
// branch below already returns exit 0 with a stderr hint, so we
|
|
// keep the same contract here. We still want the hint to be
|
|
// workspace-aware, so we pull the message+hint out of
|
|
// NotConfiguredError() instead of hard-coding it.
|
|
var cfgErr *core.ConfigError
|
|
if errors.As(core.NotConfiguredError(), &cfgErr) {
|
|
fmt.Fprintln(f.IOStreams.ErrOut, cfgErr.Message)
|
|
if cfgErr.Hint != "" {
|
|
fmt.Fprintln(f.IOStreams.ErrOut, " hint: "+cfgErr.Hint)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
app := multi.CurrentAppConfig(f.Invocation.Profile)
|
|
if app == nil || len(app.Users) == 0 {
|
|
if opts.JSON {
|
|
output.PrintJson(f.IOStreams.Out, map[string]interface{}{
|
|
"ok": true,
|
|
"users": []map[string]interface{}{},
|
|
"reason": "not_logged_in",
|
|
})
|
|
return nil
|
|
}
|
|
fmt.Fprintln(f.IOStreams.ErrOut, "No logged-in users. Run `lark-cli auth login` to log in.")
|
|
return nil
|
|
}
|
|
|
|
var items []map[string]interface{}
|
|
for _, u := range app.Users {
|
|
stored := larkauth.GetStoredToken(app.AppId, u.UserOpenId)
|
|
status := "no_token"
|
|
if stored != nil {
|
|
status = larkauth.TokenStatus(stored)
|
|
}
|
|
items = append(items, map[string]interface{}{
|
|
"userName": u.UserName,
|
|
"userOpenId": u.UserOpenId,
|
|
"appId": app.AppId,
|
|
"tokenStatus": status,
|
|
})
|
|
}
|
|
output.PrintJson(f.IOStreams.Out, items)
|
|
return nil
|
|
}
|