mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 09:15:26 +01:00 
			
		
		
		
	 0e54bae0c4
			
		
	
	0e54bae0c4
	
	
	
		
			
			I tested this somewhat, but I haven't been using the cli before so I'm not sure if there are changes - there shouldn't be though. Reviewed-on: https://gitea.com/gitea/tea/pulls/760 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 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,
 | |
| 	},
 | |
| 	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 := context.InitCommand(cmd)
 | |
| 	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
 | |
| }
 |