mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-05 16:03: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>
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/tea/cmd/repos"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdRepos represents to login a gitea server.
|
|
var CmdRepos = cli.Command{
|
|
Name: "repos",
|
|
Aliases: []string{"repo"},
|
|
Category: catEntities,
|
|
Usage: "Show repository details",
|
|
Description: "Show repository details",
|
|
ArgsUsage: "[<repo owner>/<repo name>]",
|
|
Action: runRepos,
|
|
Commands: []*cli.Command{
|
|
&repos.CmdReposList,
|
|
&repos.CmdReposSearch,
|
|
&repos.CmdRepoCreate,
|
|
&repos.CmdRepoCreateFromTemplate,
|
|
&repos.CmdRepoFork,
|
|
&repos.CmdRepoMigrate,
|
|
&repos.CmdRepoRm,
|
|
&repos.CmdRepoEdit,
|
|
},
|
|
Flags: repos.CmdReposListFlags,
|
|
}
|
|
|
|
func runRepos(ctx stdctx.Context, cmd *cli.Command) error {
|
|
if cmd.Args().Len() == 1 {
|
|
return runRepoDetail(ctx, cmd, cmd.Args().First())
|
|
}
|
|
return repos.RunReposList(ctx, cmd)
|
|
}
|
|
|
|
func runRepoDetail(_ stdctx.Context, cmd *cli.Command, path string) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
client := ctx.Login.Client()
|
|
repoOwner, repoName := utils.GetOwnerAndRepo(path, ctx.Owner)
|
|
repo, _, err := client.GetRepo(repoOwner, repoName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
topics, _, err := client.ListRepoTopics(repoOwner, repoName, gitea.ListRepoTopicsOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.RepoDetails(repo, topics)
|
|
return nil
|
|
}
|