mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-19 04:33:28 +02:00
117 lines
3.5 KiB
Go
117 lines
3.5 KiB
Go
package jiracli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/coryb/figtree"
|
|
"github.com/coryb/oreo"
|
|
|
|
jira "gopkg.in/Netflix-Skunkworks/go-jira.v1"
|
|
"gopkg.in/Netflix-Skunkworks/go-jira.v1/jiradata"
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
type SubtaskOptions struct {
|
|
GlobalOptions `yaml:",inline" figtree:",inline"`
|
|
jiradata.IssueUpdate `yaml:",inline" figtree:",inline"`
|
|
Project string
|
|
IssueType string
|
|
Overrides map[string]string
|
|
Issue string
|
|
}
|
|
|
|
func CmdSubtaskRegistry(fig *figtree.FigTree, o *oreo.Client) *CommandRegistryEntry {
|
|
opts := SubtaskOptions{
|
|
GlobalOptions: GlobalOptions{
|
|
Template: figtree.NewStringOption("subtask"),
|
|
},
|
|
IssueType: "Sub-task",
|
|
Overrides: map[string]string{},
|
|
}
|
|
|
|
return &CommandRegistryEntry{
|
|
"Subtask issue",
|
|
func() error {
|
|
return CmdSubtask(o, &opts)
|
|
},
|
|
func(cmd *kingpin.CmdClause) error {
|
|
LoadConfigs(cmd, fig, &opts)
|
|
return CmdSubtaskUsage(cmd, &opts)
|
|
},
|
|
}
|
|
}
|
|
|
|
func CmdSubtaskUsage(cmd *kingpin.CmdClause, opts *SubtaskOptions) error {
|
|
if err := GlobalUsage(cmd, &opts.GlobalOptions); err != nil {
|
|
return err
|
|
}
|
|
BrowseUsage(cmd, &opts.GlobalOptions)
|
|
EditorUsage(cmd, &opts.GlobalOptions)
|
|
TemplateUsage(cmd, &opts.GlobalOptions)
|
|
cmd.Flag("noedit", "Disable opening the editor").SetValue(&opts.SkipEditing)
|
|
cmd.Flag("project", "project to subtask issue in").Short('p').StringVar(&opts.Project)
|
|
cmd.Flag("comment", "Comment message for issue").Short('m').PreAction(func(ctx *kingpin.ParseContext) error {
|
|
opts.Overrides["comment"] = flagValue(ctx, "comment")
|
|
return nil
|
|
}).String()
|
|
cmd.Flag("override", "Set issue property").Short('o').StringMapVar(&opts.Overrides)
|
|
cmd.Arg("ISSUE", "Parent issue for subtask").StringVar(&opts.Issue)
|
|
return nil
|
|
}
|
|
|
|
// CmdSubtask sends the subtask-metadata to the "subtask" template for editing, then
|
|
// will parse the edited document as YAML and submit the document to jira.
|
|
func CmdSubtask(o *oreo.Client, opts *SubtaskOptions) error {
|
|
type templateInput struct {
|
|
Meta *jiradata.CreateMetaIssueType `yaml:"meta" json:"meta"`
|
|
Overrides map[string]string `yaml:"overrides" json:"overrides"`
|
|
Parent *jiradata.Issue `yaml:"parent" json:"parent"`
|
|
}
|
|
|
|
parent, err := jira.GetIssue(o, opts.Endpoint.Value, opts.Issue, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if project, ok := parent.Fields["project"].(map[string]interface{}); ok {
|
|
if key, ok := project["key"].(string); ok {
|
|
opts.Project = key
|
|
} else {
|
|
return fmt.Errorf("Failed to find Project Key in parent issue")
|
|
}
|
|
} else {
|
|
return fmt.Errorf("Failed to find Project field in parent issue")
|
|
}
|
|
|
|
createMeta, err := jira.GetIssueCreateMetaIssueType(o, opts.Endpoint.Value, opts.Project, opts.IssueType)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
issueUpdate := jiradata.IssueUpdate{}
|
|
input := templateInput{
|
|
Meta: createMeta,
|
|
Overrides: opts.Overrides,
|
|
Parent: parent,
|
|
}
|
|
input.Overrides["project"] = opts.Project
|
|
input.Overrides["issuetype"] = opts.IssueType
|
|
input.Overrides["user"] = opts.User.Value
|
|
|
|
var issueResp *jiradata.IssueCreateResponse
|
|
err = editLoop(&opts.GlobalOptions, &input, &issueUpdate, func() error {
|
|
issueResp, err = jira.CreateIssue(o, opts.Endpoint.Value, &issueUpdate)
|
|
return err
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf("OK %s %s/browse/%s\n", issueResp.Key, opts.Endpoint.Value, issueResp.Key)
|
|
|
|
if opts.Browse.Value {
|
|
return CmdBrowse(&BrowseOptions{opts.GlobalOptions, issueResp.Key})
|
|
}
|
|
return nil
|
|
}
|