mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-05 07:53:32 +02:00
* Use stdlib encoders * Reduce some duplication * Remove global pagination state * Dedupe JSON detail types * Bump golangci-lint Reviewed-on: https://gitea.com/gitea/tea/pulls/941 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
32 lines
811 B
Go
32 lines
811 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdWhoami represents the command to show current logged in user
|
|
var CmdWhoami = cli.Command{
|
|
Name: "whoami",
|
|
Category: catMisc,
|
|
Description: `For debugging purposes, show the user that is currently logged in.`,
|
|
Usage: "Show current logged in user",
|
|
ArgsUsage: " ", // command does not accept arguments
|
|
Action: func(_ stdctx.Context, cmd *cli.Command) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
client := ctx.Login.Client()
|
|
user, _, _ := client.GetMyUserInfo()
|
|
print.UserDetails(user)
|
|
return nil
|
|
},
|
|
}
|