mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
7e191eb18b
split modules/config login_tasks.go should probably be modules/task/login.go, but i didn't do that, as it still depends on the global `Config` variable from the config module, see https://gitea.com/gitea/tea/issues/158 rework InitCommand() - make it error tolerant if $PWD is not a git repo (#200) - don't force default login when repo flag is set (#191) remove InitCommandLoginOnly() Merge branch 'master' into issue-200-initcommand improve docs Merge branch 'master' into issue-200-initcommand move config func and config task func to right place Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/285 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: khmarbaise <khmarbaise@noreply.gitea.io> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
// 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 (
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/cmd/repos"
|
|
"code.gitea.io/tea/modules/config"
|
|
"code.gitea.io/tea/modules/print"
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// CmdRepos represents to login a gitea server.
|
|
var CmdRepos = cli.Command{
|
|
Name: "repos",
|
|
Aliases: []string{"repo"},
|
|
Usage: "Show repository details",
|
|
Description: "Show repository details",
|
|
ArgsUsage: "[<repo owner>/<repo name>]",
|
|
Action: runRepos,
|
|
Subcommands: []*cli.Command{
|
|
&repos.CmdReposList,
|
|
&repos.CmdReposSearch,
|
|
&repos.CmdRepoCreate,
|
|
},
|
|
Flags: repos.CmdReposListFlags,
|
|
}
|
|
|
|
func runRepos(ctx *cli.Context) error {
|
|
if ctx.Args().Len() == 1 {
|
|
return runRepoDetail(ctx.Args().First())
|
|
}
|
|
return repos.RunReposList(ctx)
|
|
}
|
|
|
|
func runRepoDetail(path string) error {
|
|
login, ownerFallback, _ := config.InitCommand(flags.GlobalRepoValue, flags.GlobalLoginValue, flags.GlobalRemoteValue)
|
|
client := login.Client()
|
|
repoOwner, repoName := utils.GetOwnerAndRepo(path, ownerFallback)
|
|
repo, _, err := client.GetRepo(repoOwner, repoName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
topics, _, err := client.ListRepoTopics(repo.Owner.UserName, repo.Name, gitea.ListRepoTopicsOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.RepoDetails(repo, topics)
|
|
return nil
|
|
}
|