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>
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2018 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package cmd
 | |
| 
 | |
| import (
 | |
| 	stdctx "context"
 | |
| 	"fmt"
 | |
| 
 | |
| 	"code.gitea.io/tea/cmd/pulls"
 | |
| 	"code.gitea.io/tea/modules/context"
 | |
| 	"code.gitea.io/tea/modules/interact"
 | |
| 	"code.gitea.io/tea/modules/print"
 | |
| 	"code.gitea.io/tea/modules/utils"
 | |
| 	"code.gitea.io/tea/modules/workaround"
 | |
| 
 | |
| 	"code.gitea.io/sdk/gitea"
 | |
| 	"github.com/urfave/cli/v3"
 | |
| )
 | |
| 
 | |
| // CmdPulls is the main command to operate on PRs
 | |
| var CmdPulls = cli.Command{
 | |
| 	Name:        "pulls",
 | |
| 	Aliases:     []string{"pull", "pr"},
 | |
| 	Category:    catEntities,
 | |
| 	Usage:       "Manage and checkout pull requests",
 | |
| 	Description: `Lists PRs when called without argument. If PR index is provided, will show it in detail.`,
 | |
| 	ArgsUsage:   "[<pull index>]",
 | |
| 	Action:      runPulls,
 | |
| 	Flags: append([]cli.Flag{
 | |
| 		&cli.BoolFlag{
 | |
| 			Name:  "comments",
 | |
| 			Usage: "Whether to display comments (will prompt if not provided & run interactively)",
 | |
| 		},
 | |
| 	}, pulls.CmdPullsList.Flags...),
 | |
| 	Commands: []*cli.Command{
 | |
| 		&pulls.CmdPullsList,
 | |
| 		&pulls.CmdPullsCheckout,
 | |
| 		&pulls.CmdPullsClean,
 | |
| 		&pulls.CmdPullsCreate,
 | |
| 		&pulls.CmdPullsClose,
 | |
| 		&pulls.CmdPullsReopen,
 | |
| 		&pulls.CmdPullsReview,
 | |
| 		&pulls.CmdPullsApprove,
 | |
| 		&pulls.CmdPullsReject,
 | |
| 		&pulls.CmdPullsMerge,
 | |
| 	},
 | |
| }
 | |
| 
 | |
| func runPulls(ctx stdctx.Context, cmd *cli.Command) error {
 | |
| 	if cmd.Args().Len() == 1 {
 | |
| 		return runPullDetail(ctx, cmd, cmd.Args().First())
 | |
| 	}
 | |
| 	return pulls.RunPullsList(ctx, cmd)
 | |
| }
 | |
| 
 | |
| func runPullDetail(_ stdctx.Context, cmd *cli.Command, index string) error {
 | |
| 	ctx := context.InitCommand(cmd)
 | |
| 	ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
 | |
| 	idx, err := utils.ArgToIndex(index)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	client := ctx.Login.Client()
 | |
| 	pr, _, err := client.GetPullRequest(ctx.Owner, ctx.Repo, idx)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if err := workaround.FixPullHeadSha(client, pr); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	reviews, _, err := client.ListPullReviews(ctx.Owner, ctx.Repo, idx, gitea.ListPullReviewsOptions{
 | |
| 		ListOptions: gitea.ListOptions{Page: -1},
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		fmt.Printf("error while loading reviews: %v\n", err)
 | |
| 	}
 | |
| 
 | |
| 	ci, _, err := client.GetCombinedStatus(ctx.Owner, ctx.Repo, pr.Head.Sha)
 | |
| 	if err != nil {
 | |
| 		fmt.Printf("error while loading CI: %v\n", err)
 | |
| 	}
 | |
| 
 | |
| 	print.PullDetails(pr, reviews, ci)
 | |
| 
 | |
| 	if pr.Comments > 0 {
 | |
| 		err = interact.ShowCommentsMaybeInteractive(ctx, idx, pr.Comments)
 | |
| 		if err != nil {
 | |
| 			fmt.Printf("error loading comments: %v\n", err)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 |