mirror of
https://gitea.com/gitea/tea.git
synced 2026-09-10 07:26:33 -04:00
75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package issues
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"gitea.dev/tea/cmd/flags"
|
|
"gitea.dev/tea/modules/context"
|
|
"gitea.dev/tea/modules/interact"
|
|
"gitea.dev/tea/modules/task"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdIssuesCreate represents a sub command of issues to create issue
|
|
var CmdIssuesCreate = cli.Command{
|
|
Name: "create",
|
|
Aliases: []string{"c"},
|
|
Usage: "Create an issue on repository",
|
|
Description: `Create an issue on repository`,
|
|
ArgsUsage: " ", // command does not accept arguments
|
|
Action: runIssuesCreate,
|
|
Flags: append([]cli.Flag{flags.ProjectFlag}, flags.IssuePRCreateFlags...),
|
|
}
|
|
|
|
func runIssuesCreate(requestCtx stdctx.Context, cmd *cli.Command) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := ctx.Ensure(context.CtxRequirement{RemoteRepo: true}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if ctx.IsInteractiveMode() {
|
|
err := interact.CreateIssue(requestCtx, ctx.Login, ctx.Owner, ctx.Repo)
|
|
if err != nil && !interact.IsQuitting(err) {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
opts, err := flags.GetIssuePRCreateFlags(requestCtx, ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var projectTarget *task.IssueProject
|
|
if project := ctx.String("project"); project != "" {
|
|
projectTarget, err = task.ResolveIssueProject(requestCtx, ctx.Login.Client(), ctx.Owner, ctx.Repo, project)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
issue, err := task.CreateIssue(requestCtx, ctx.Login,
|
|
ctx.Owner,
|
|
ctx.Repo,
|
|
*opts,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if projectTarget != nil {
|
|
if err := projectTarget.AddIssue(requestCtx, ctx.Login.Client(), issue.ID); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|