mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
69 lines
2.2 KiB
Go
69 lines
2.2 KiB
Go
package jiracmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/coryb/figtree"
|
|
"github.com/coryb/oreo"
|
|
|
|
"gopkg.in/Netflix-Skunkworks/go-jira.v1"
|
|
"gopkg.in/Netflix-Skunkworks/go-jira.v1/jiracli"
|
|
"gopkg.in/Netflix-Skunkworks/go-jira.v1/jiradata"
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
type ComponentAddOptions struct {
|
|
jiracli.CommonOptions `yaml:",inline" json:",inline" figtree:",inline"`
|
|
jiradata.Component `yaml:",inline" json:",inline" figtree:",inline"`
|
|
}
|
|
|
|
func CmdComponentAddRegistry() *jiracli.CommandRegistryEntry {
|
|
opts := ComponentAddOptions{
|
|
CommonOptions: jiracli.CommonOptions{
|
|
Template: figtree.NewStringOption("component-add"),
|
|
},
|
|
}
|
|
|
|
return &jiracli.CommandRegistryEntry{
|
|
"Add component",
|
|
func(fig *figtree.FigTree, cmd *kingpin.CmdClause) error {
|
|
jiracli.LoadConfigs(cmd, fig, &opts)
|
|
return CmdComponentAddUsage(cmd, &opts)
|
|
},
|
|
func(o *oreo.Client, globals *jiracli.GlobalOptions) error {
|
|
return CmdComponentAdd(o, globals, &opts)
|
|
},
|
|
}
|
|
}
|
|
|
|
func CmdComponentAddUsage(cmd *kingpin.CmdClause, opts *ComponentAddOptions) error {
|
|
jiracli.EditorUsage(cmd, &opts.CommonOptions)
|
|
jiracli.TemplateUsage(cmd, &opts.CommonOptions)
|
|
cmd.Flag("noedit", "Disable opening the editor").SetValue(&opts.SkipEditing)
|
|
cmd.Flag("project", "project to create component in").Short('p').StringVar(&opts.Project)
|
|
cmd.Flag("name", "name of component").Short('n').StringVar(&opts.Name)
|
|
cmd.Flag("description", "description of component").Short('d').StringVar(&opts.Description)
|
|
cmd.Flag("lead", "person that acts as lead for component").Short('l').StringVar(&opts.LeadUserName)
|
|
return nil
|
|
}
|
|
|
|
// CmdComponentAdd sends the provided overrides to the "component-add" template for editing, then
|
|
// will parse the edited document as YAML and submit the document to jira.
|
|
func CmdComponentAdd(o *oreo.Client, globals *jiracli.GlobalOptions, opts *ComponentAddOptions) error {
|
|
var err error
|
|
component := &jiradata.Component{}
|
|
var resp *jiradata.Component
|
|
err = jiracli.EditLoop(&opts.CommonOptions, &opts.Component, component, func() error {
|
|
resp, err = jira.CreateComponent(o, globals.Endpoint.Value, component)
|
|
return err
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !globals.Quiet.Value {
|
|
fmt.Printf("OK %s %s\n", component.Project, component.Name)
|
|
}
|
|
return nil
|
|
}
|