mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-05 16:03:32 +02:00
* Use stdlib encoders * Reduce some duplication * Remove global pagination state * Dedupe JSON detail types * Bump golangci-lint Reviewed-on: https://gitea.com/gitea/tea/pulls/941 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
117 lines
2.9 KiB
Go
117 lines
2.9 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package issues
|
|
|
|
import (
|
|
stdctx "context"
|
|
"time"
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/araddon/dateparse"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var issueFieldsFlag = flags.FieldsFlag(print.IssueFields, []string{
|
|
"index", "title", "state", "author", "milestone", "labels", "owner", "repo",
|
|
})
|
|
|
|
// CmdIssuesList represents a sub command of issues to list issues
|
|
var CmdIssuesList = cli.Command{
|
|
Name: "list",
|
|
Aliases: []string{"ls"},
|
|
Usage: "List issues of the repository",
|
|
Description: `List issues of the repository`,
|
|
ArgsUsage: " ", // command does not accept arguments
|
|
Action: RunIssuesList,
|
|
Flags: append([]cli.Flag{issueFieldsFlag}, flags.IssueListingFlags...),
|
|
}
|
|
|
|
// RunIssuesList list issues
|
|
func RunIssuesList(_ stdctx.Context, cmd *cli.Command) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
state, err := flags.ParseState(ctx.String("state"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
kind, err := flags.ParseIssueKind(ctx.String("kind"), gitea.IssueTypeIssue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var from, until time.Time
|
|
if ctx.IsSet("from") {
|
|
from, err = dateparse.ParseLocal(ctx.String("from"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if ctx.IsSet("until") {
|
|
until, err = dateparse.ParseLocal(ctx.String("until"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
owner := ctx.Owner
|
|
if ctx.IsSet("owner") {
|
|
owner = ctx.String("owner")
|
|
}
|
|
|
|
// ignore error, as we don't do any input validation on these flags
|
|
labels, _ := flags.LabelFilterFlag.GetValues(cmd)
|
|
milestones, _ := flags.MilestoneFilterFlag.GetValues(cmd)
|
|
var issues []*gitea.Issue
|
|
if ctx.Repo != "" {
|
|
issues, _, err = ctx.Login.Client().ListRepoIssues(owner, ctx.Repo, gitea.ListIssueOption{
|
|
ListOptions: flags.GetListOptions(cmd),
|
|
State: state,
|
|
Type: kind,
|
|
KeyWord: ctx.String("keyword"),
|
|
CreatedBy: ctx.String("author"),
|
|
AssignedBy: ctx.String("assigned-to"),
|
|
MentionedBy: ctx.String("mentions"),
|
|
Labels: labels,
|
|
Milestones: milestones,
|
|
Since: from,
|
|
Before: until,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
issues, _, err = ctx.Login.Client().ListIssues(gitea.ListIssueOption{
|
|
ListOptions: flags.GetListOptions(cmd),
|
|
State: state,
|
|
Type: kind,
|
|
KeyWord: ctx.String("keyword"),
|
|
CreatedBy: ctx.String("author"),
|
|
AssignedBy: ctx.String("assigned-to"),
|
|
MentionedBy: ctx.String("mentions"),
|
|
Labels: labels,
|
|
Milestones: milestones,
|
|
Since: from,
|
|
Before: until,
|
|
Owner: owner,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
fields, err := issueFieldsFlag.GetValues(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return print.IssuesPullsList(issues, ctx.Output, fields)
|
|
}
|