mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 19:51:58 +01:00
a60c71469d
Signed-off-by: jolheiser <john.olheiser@gmail.com>
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"code.gitea.io/sdk/gitea"
|
|
"gitea.com/jolheiser/beaver"
|
|
"gitea.com/jolheiser/beaver/color"
|
|
"gitea.com/jolheiser/sip/modules/sdk"
|
|
"github.com/urfave/cli/v2"
|
|
"strconv"
|
|
)
|
|
|
|
var Repo = cli.Command{
|
|
Name: "repo",
|
|
Usage: "Commands for interacting with a Gitea repository",
|
|
Action: doRepo,
|
|
}
|
|
|
|
func doRepo(ctx *cli.Context) error {
|
|
client := getClient(ctx)
|
|
|
|
issues, err := sdk.GetIssues(client, ctx.String("owner"), ctx.String("repo"), gitea.ListIssueOption{State: "open"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var issueCount, pullCount int
|
|
for _, issue := range issues {
|
|
if issue.PullRequest != nil {
|
|
pullCount++
|
|
continue
|
|
}
|
|
issueCount++
|
|
}
|
|
|
|
beaver.Infof("Repository: %s", color.New(color.FgYellow).Format(ctx.String("owner")+"/"+ctx.String("repo")))
|
|
beaver.Infof("URL: %s", color.New(color.FgYellow).Format(ctx.String("url")+"/"+ctx.String("owner")+"/"+ctx.String("repo")))
|
|
beaver.Info()
|
|
beaver.Infof("Open Issues: %s", color.New(color.FgYellow).Format(strconv.Itoa(issueCount)))
|
|
beaver.Infof("Open Pulls: %s", color.New(color.FgYellow).Format(strconv.Itoa(pullCount)))
|
|
|
|
return nil
|
|
}
|