mirror of
https://github.com/larksuite/cli.git
synced 2026-07-08 18:13:01 +08:00
67 lines
1.6 KiB
Go
67 lines
1.6 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package auth
|
|
|
|
import (
|
|
"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"
|
|
)
|
|
|
|
// LogoutOptions holds all inputs for auth logout.
|
|
type LogoutOptions struct {
|
|
Factory *cmdutil.Factory
|
|
}
|
|
|
|
// NewCmdAuthLogout creates the auth logout subcommand.
|
|
func NewCmdAuthLogout(f *cmdutil.Factory, runF func(*LogoutOptions) error) *cobra.Command {
|
|
opts := &LogoutOptions{Factory: f}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "logout",
|
|
Short: "Log out (clear token)",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if runF != nil {
|
|
return runF(opts)
|
|
}
|
|
return authLogoutRun(opts)
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func authLogoutRun(opts *LogoutOptions) error {
|
|
f := opts.Factory
|
|
|
|
multi, _ := core.LoadMultiAppConfig()
|
|
if multi == nil || len(multi.Apps) == 0 {
|
|
fmt.Fprintln(f.IOStreams.ErrOut, "No configuration found.")
|
|
return nil
|
|
}
|
|
|
|
app := &multi.Apps[0]
|
|
if len(app.Users) == 0 {
|
|
fmt.Fprintln(f.IOStreams.ErrOut, "Not logged in.")
|
|
return nil
|
|
}
|
|
|
|
for _, user := range app.Users {
|
|
if err := larkauth.RemoveStoredToken(app.AppId, user.UserOpenId); err != nil {
|
|
fmt.Fprintf(f.IOStreams.ErrOut, "Warning: failed to remove token for %s: %v\n", user.UserOpenId, err)
|
|
}
|
|
}
|
|
app.Users = []core.AppUser{}
|
|
if err := core.SaveMultiAppConfig(multi); err != nil {
|
|
return output.Errorf(output.ExitInternal, "internal", "failed to save config: %v", err)
|
|
}
|
|
output.PrintSuccess(f.IOStreams.ErrOut, "Logged out")
|
|
return nil
|
|
}
|