53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// 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 issues
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// CmdIssuesClose represents a sub command of issues to close an issue
|
|
var CmdIssuesClose = cli.Command{
|
|
Name: "close",
|
|
Usage: "Change state of an issue to 'closed'",
|
|
Description: `Change state of an issue to 'closed'`,
|
|
ArgsUsage: "<issue index>",
|
|
Action: func(ctx *cli.Context) error {
|
|
var s = gitea.StateClosed
|
|
return editIssueState(ctx, gitea.EditIssueOption{State: &s})
|
|
},
|
|
Flags: flags.AllDefaultFlags,
|
|
}
|
|
|
|
// editIssueState abstracts the arg parsing to edit the given issue
|
|
func editIssueState(cmd *cli.Context, opts gitea.EditIssueOption) error {
|
|
ctx := context.InitCommand(cmd)
|
|
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
|
if ctx.Args().Len() == 0 {
|
|
return fmt.Errorf(ctx.Command.ArgsUsage)
|
|
}
|
|
|
|
index, err := utils.ArgToIndex(ctx.Args().First())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
issue, _, err := ctx.Login.Client().EditIssue(ctx.Owner, ctx.Repo, index, opts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.IssueDetails(issue, nil)
|
|
return nil
|
|
}
|