mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-22 10:00:39 +00:00
Add convert sub-command
This commit is contained in:
parent
b6add0c2d9
commit
6a1167dbb3
27
main.go
27
main.go
@ -15,6 +15,7 @@ import (
|
|||||||
"github.com/drone/drone-yaml/yaml"
|
"github.com/drone/drone-yaml/yaml"
|
||||||
"github.com/drone/drone-yaml/yaml/compiler"
|
"github.com/drone/drone-yaml/yaml/compiler"
|
||||||
"github.com/drone/drone-yaml/yaml/compiler/transform"
|
"github.com/drone/drone-yaml/yaml/compiler/transform"
|
||||||
|
"github.com/drone/drone-yaml/yaml/converter"
|
||||||
"github.com/drone/drone-yaml/yaml/linter"
|
"github.com/drone/drone-yaml/yaml/linter"
|
||||||
"github.com/drone/drone-yaml/yaml/pretty"
|
"github.com/drone/drone-yaml/yaml/pretty"
|
||||||
"github.com/drone/drone-yaml/yaml/signer"
|
"github.com/drone/drone-yaml/yaml/signer"
|
||||||
@ -28,6 +29,10 @@ var (
|
|||||||
formatSave = format.Flag("save", "save result to source").Short('s').Bool()
|
formatSave = format.Flag("save", "save result to source").Short('s').Bool()
|
||||||
formatFile = format.Arg("source", "source file location").Default(".drone.yml").File()
|
formatFile = format.Arg("source", "source file location").Default(".drone.yml").File()
|
||||||
|
|
||||||
|
convert = kingpin.Command("convert", "convert the yaml file")
|
||||||
|
convertSave = convert.Flag("save", "save result to source").Short('s').Bool()
|
||||||
|
convertFile = convert.Arg("source", "source file location").Default(".drone.yml").File()
|
||||||
|
|
||||||
lint = kingpin.Command("lint", "lint the yaml file")
|
lint = kingpin.Command("lint", "lint the yaml file")
|
||||||
lintPriv = lint.Flag("privileged", "privileged mode").Short('p').Bool()
|
lintPriv = lint.Flag("privileged", "privileged mode").Short('p').Bool()
|
||||||
lintFile = lint.Arg("source", "source file location").Default(".drone.yml").File()
|
lintFile = lint.Arg("source", "source file location").Default(".drone.yml").File()
|
||||||
@ -50,6 +55,8 @@ func main() {
|
|||||||
switch kingpin.Parse() {
|
switch kingpin.Parse() {
|
||||||
case format.FullCommand():
|
case format.FullCommand():
|
||||||
kingpin.FatalIfError(runFormat(), "")
|
kingpin.FatalIfError(runFormat(), "")
|
||||||
|
case convert.FullCommand():
|
||||||
|
kingpin.FatalIfError(runConvert(), "")
|
||||||
case lint.FullCommand():
|
case lint.FullCommand():
|
||||||
kingpin.FatalIfError(runLint(), "")
|
kingpin.FatalIfError(runLint(), "")
|
||||||
case sign.FullCommand():
|
case sign.FullCommand():
|
||||||
@ -78,6 +85,26 @@ func runFormat() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func runConvert() error {
|
||||||
|
f := *convertFile
|
||||||
|
d, err := ioutil.ReadAll(f)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
m := converter.Metadata{
|
||||||
|
Filename: f.Name(),
|
||||||
|
}
|
||||||
|
b, err := converter.Convert(d, m)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if *formatSave {
|
||||||
|
return ioutil.WriteFile(f.Name(), b, 0644)
|
||||||
|
}
|
||||||
|
_, err = io.Copy(os.Stderr, bytes.NewReader(b))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
func runLint() error {
|
func runLint() error {
|
||||||
f := *lintFile
|
f := *lintFile
|
||||||
m, err := yaml.Parse(f)
|
m, err := yaml.Parse(f)
|
||||||
|
Loading…
Reference in New Issue
Block a user