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 (
|
|
|
|
"log"
|
2019-09-15 08:38:18 +00:00
|
|
|
"strconv"
|
2018-09-03 06:43:00 +00:00
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdPulls represents to login a gitea server.
|
|
|
|
var CmdPulls = cli.Command{
|
|
|
|
Name: "pulls",
|
2019-03-12 01:36:14 +00:00
|
|
|
Usage: "Operate with pulls of the repository",
|
|
|
|
Description: `Operate with pulls of the repository`,
|
2018-09-03 06:43:00 +00:00
|
|
|
Action: runPulls,
|
2019-10-23 15:58:18 +00:00
|
|
|
Flags: AllDefaultFlags,
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func runPulls(ctx *cli.Context) error {
|
2019-10-23 15:58:18 +00:00
|
|
|
login, owner, repo := initCommand()
|
2018-09-03 06:43:00 +00:00
|
|
|
|
|
|
|
prs, err := login.Client().ListRepoPullRequests(owner, repo, gitea.ListPullRequestsOptions{
|
|
|
|
Page: 0,
|
|
|
|
State: string(gitea.StateOpen),
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-09-15 08:38:18 +00:00
|
|
|
headers := []string{
|
|
|
|
"Index",
|
|
|
|
"Name",
|
|
|
|
"Updated",
|
|
|
|
"Title",
|
|
|
|
}
|
|
|
|
|
|
|
|
var values [][]string
|
|
|
|
|
2018-09-03 06:43:00 +00:00
|
|
|
if len(prs) == 0 {
|
2019-10-26 14:25:54 +00:00
|
|
|
Output(outputValue, headers, values)
|
2018-09-03 06:43:00 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, pr := range prs {
|
2019-04-23 16:13:39 +00:00
|
|
|
if pr == nil {
|
|
|
|
continue
|
|
|
|
}
|
2018-09-03 06:43:00 +00:00
|
|
|
name := pr.Poster.FullName
|
|
|
|
if len(name) == 0 {
|
|
|
|
name = pr.Poster.UserName
|
|
|
|
}
|
2019-09-15 08:38:18 +00:00
|
|
|
values = append(
|
|
|
|
values,
|
|
|
|
[]string{
|
|
|
|
strconv.FormatInt(pr.Index, 10),
|
|
|
|
name,
|
|
|
|
pr.Updated.Format("2006-01-02 15:04:05"),
|
|
|
|
pr.Title,
|
|
|
|
},
|
|
|
|
)
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
2019-10-26 14:25:54 +00:00
|
|
|
Output(outputValue, headers, values)
|
2018-09-03 06:43:00 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|