2020-11-17 05:41:34 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"go.jolheiser.com/tmpl/cmd/flags"
|
|
|
|
"go.jolheiser.com/tmpl/registry"
|
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"go.jolheiser.com/beaver"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Save = &cli.Command{
|
|
|
|
Name: "save",
|
|
|
|
Usage: "Save a local template",
|
|
|
|
Description: "Save a local template to the registry",
|
2020-11-22 05:25:24 +00:00
|
|
|
ArgsUsage: "[path] [name]",
|
2020-11-18 05:28:07 +00:00
|
|
|
Action: runSave,
|
2020-11-17 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func runSave(ctx *cli.Context) error {
|
|
|
|
if ctx.NArg() < 2 {
|
2020-11-22 05:25:24 +00:00
|
|
|
return cli.ShowCommandHelp(ctx, ctx.Command.Name)
|
2020-11-17 05:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reg, err := registry.Open(flags.Registry)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
localPath := ctx.Args().First()
|
|
|
|
localPath, err = filepath.Abs(localPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-11-18 05:28:07 +00:00
|
|
|
t, err := reg.SaveTemplate(ctx.Args().Get(1), localPath)
|
2020-11-17 05:41:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
beaver.Infof("Added new template %s", t.Name)
|
|
|
|
return nil
|
|
|
|
}
|