2019-11-08 01:33:46 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2020-09-30 05:11:33 +00:00
|
|
|
"code.gitea.io/tea/cmd/repos"
|
2020-12-15 17:38:22 +00:00
|
|
|
"code.gitea.io/tea/modules/context"
|
2020-09-30 05:11:33 +00:00
|
|
|
"code.gitea.io/tea/modules/print"
|
2020-09-30 19:44:22 +00:00
|
|
|
"code.gitea.io/tea/modules/utils"
|
2019-11-08 01:33:46 +00:00
|
|
|
|
2020-09-23 19:49:59 +00:00
|
|
|
"code.gitea.io/sdk/gitea"
|
2020-01-04 17:44:25 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2019-11-08 01:33:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// CmdRepos represents to login a gitea server.
|
|
|
|
var CmdRepos = cli.Command{
|
|
|
|
Name: "repos",
|
2020-10-02 15:46:51 +00:00
|
|
|
Aliases: []string{"repo"},
|
2020-12-21 13:37:20 +00:00
|
|
|
Category: catEntities,
|
2020-10-02 15:46:51 +00:00
|
|
|
Usage: "Show repository details",
|
|
|
|
Description: "Show repository details",
|
2020-09-23 19:49:59 +00:00
|
|
|
ArgsUsage: "[<repo owner>/<repo name>]",
|
|
|
|
Action: runRepos,
|
2020-01-04 17:44:25 +00:00
|
|
|
Subcommands: []*cli.Command{
|
2020-09-30 05:11:33 +00:00
|
|
|
&repos.CmdReposList,
|
2020-10-06 08:05:22 +00:00
|
|
|
&repos.CmdReposSearch,
|
2020-09-30 05:11:33 +00:00
|
|
|
&repos.CmdRepoCreate,
|
2019-11-08 01:33:46 +00:00
|
|
|
},
|
2020-10-06 08:05:22 +00:00
|
|
|
Flags: repos.CmdReposListFlags,
|
2020-09-23 19:49:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func runRepos(ctx *cli.Context) error {
|
|
|
|
if ctx.Args().Len() == 1 {
|
2020-12-15 17:38:22 +00:00
|
|
|
return runRepoDetail(ctx, ctx.Args().First())
|
2019-11-08 01:33:46 +00:00
|
|
|
}
|
2020-09-30 05:11:33 +00:00
|
|
|
return repos.RunReposList(ctx)
|
2019-11-08 01:33:46 +00:00
|
|
|
}
|
2020-09-23 19:49:59 +00:00
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
func runRepoDetail(cmd *cli.Context, path string) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
|
|
|
client := ctx.Login.Client()
|
|
|
|
repoOwner, repoName := utils.GetOwnerAndRepo(path, ctx.Owner)
|
2020-09-23 19:49:59 +00:00
|
|
|
repo, _, err := client.GetRepo(repoOwner, repoName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-12-15 17:38:22 +00:00
|
|
|
topics, _, err := client.ListRepoTopics(repoOwner, repoName, gitea.ListRepoTopicsOptions{})
|
2020-09-23 19:49:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-30 05:11:33 +00:00
|
|
|
print.RepoDetails(repo, topics)
|
2020-09-23 19:49:59 +00:00
|
|
|
return nil
|
|
|
|
}
|