Home

tmpl @cae16cdbdc6ec5ee3def0755aeb1959f1d20f7de - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tmpl / cmd / update.go
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package cmd

import (
	"errors"

	"go.jolheiser.com/tmpl/cmd/flags"
	"go.jolheiser.com/tmpl/registry"

	"github.com/urfave/cli/v2"
	"go.jolheiser.com/beaver"
)

var Update = &cli.Command{
	Name:        "update",
	Usage:       "Update a template",
	Description: "Update a template in the registry from the original source",
	Action:      runUpdate,
}

func runUpdate(ctx *cli.Context) error {
	if ctx.NArg() < 1 {
		return errors.New("<name>")
	}

	reg, err := registry.Open(flags.Registry)
	if err != nil {
		return err
	}

	tmpl, err := reg.GetTemplate(ctx.Args().First())
	if err != nil {
		return err
	}

	if err := reg.RemoveTemplate(tmpl.Name); err != nil {
		return err
	}

	if tmpl.Path != "" {
		_, err = reg.SaveTemplate(tmpl.Name, tmpl.Path)
	} else {
		_, err = reg.DownloadTemplate(tmpl.Name, tmpl.Repository, tmpl.Branch)
	}
	if err != nil {
		return err
	}

	beaver.Infof("Successfully updated %s", tmpl.Name)
	return nil
}