2018-09-03 06:43:00 +00:00
|
|
|
// Copyright 2018 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-12-08 04:06:05 +00:00
|
|
|
"fmt"
|
|
|
|
|
2020-09-30 05:11:33 +00:00
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
|
|
"code.gitea.io/tea/cmd/pulls"
|
2020-12-15 17:38:22 +00:00
|
|
|
"code.gitea.io/tea/modules/context"
|
2020-10-02 14:15:18 +00:00
|
|
|
"code.gitea.io/tea/modules/print"
|
2020-09-30 05:11:33 +00:00
|
|
|
"code.gitea.io/tea/modules/utils"
|
2018-09-03 06:43:00 +00:00
|
|
|
|
2020-12-08 04:06:05 +00:00
|
|
|
"code.gitea.io/sdk/gitea"
|
2020-01-04 17:44:25 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2018-09-03 06:43:00 +00:00
|
|
|
)
|
|
|
|
|
2020-04-19 03:09:03 +00:00
|
|
|
// CmdPulls is the main command to operate on PRs
|
2018-09-03 06:43:00 +00:00
|
|
|
var CmdPulls = cli.Command{
|
|
|
|
Name: "pulls",
|
2020-04-19 03:09:03 +00:00
|
|
|
Aliases: []string{"pull", "pr"},
|
2020-12-21 13:37:20 +00:00
|
|
|
Category: catEntities,
|
2020-12-16 22:47:12 +00:00
|
|
|
Usage: "Manage and checkout pull requests",
|
|
|
|
Description: `Manage and checkout pull requests`,
|
2020-09-21 05:03:20 +00:00
|
|
|
ArgsUsage: "[<pull index>]",
|
2018-09-03 06:43:00 +00:00
|
|
|
Action: runPulls,
|
2020-09-30 05:11:33 +00:00
|
|
|
Flags: flags.IssuePRFlags,
|
2020-04-19 03:09:03 +00:00
|
|
|
Subcommands: []*cli.Command{
|
2020-09-30 05:11:33 +00:00
|
|
|
&pulls.CmdPullsList,
|
|
|
|
&pulls.CmdPullsCheckout,
|
|
|
|
&pulls.CmdPullsClean,
|
|
|
|
&pulls.CmdPullsCreate,
|
2020-12-16 22:47:12 +00:00
|
|
|
&pulls.CmdPullsClose,
|
|
|
|
&pulls.CmdPullsReopen,
|
2020-12-21 15:22:22 +00:00
|
|
|
&pulls.CmdPullsReview,
|
|
|
|
&pulls.CmdPullsApprove,
|
|
|
|
&pulls.CmdPullsReject,
|
2020-04-19 03:09:03 +00:00
|
|
|
},
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func runPulls(ctx *cli.Context) error {
|
2020-09-21 05:03:20 +00:00
|
|
|
if ctx.Args().Len() == 1 {
|
2020-12-15 17:38:22 +00:00
|
|
|
return runPullDetail(ctx, ctx.Args().First())
|
2020-09-21 05:03:20 +00:00
|
|
|
}
|
2020-09-30 05:11:33 +00:00
|
|
|
return pulls.RunPullsList(ctx)
|
2020-09-21 05:03:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
func runPullDetail(cmd *cli.Context, index string) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
|
|
|
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
2020-09-30 05:11:33 +00:00
|
|
|
idx, err := utils.ArgToIndex(index)
|
2020-09-21 05:03:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-12-08 04:06:05 +00:00
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
client := ctx.Login.Client()
|
|
|
|
pr, _, err := client.GetPullRequest(ctx.Owner, ctx.Repo, idx)
|
2020-09-21 05:03:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
reviews, _, err := client.ListPullReviews(ctx.Owner, ctx.Repo, idx, gitea.ListPullReviewsOptions{})
|
2020-12-08 04:06:05 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error while loading reviews: %v\n", err)
|
|
|
|
}
|
|
|
|
|
2020-12-16 17:16:50 +00:00
|
|
|
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)
|
2020-09-21 05:03:20 +00:00
|
|
|
return nil
|
|
|
|
}
|