Home

tmpl @main - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tmpl / cmd / list.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
51
52
53
package cmd

import (
	"encoding/json"
	"fmt"
	"os"
	"text/tabwriter"

	"go.jolheiser.com/tmpl/registry"

	"github.com/urfave/cli/v2"
)

var List = &cli.Command{
	Name:        "list",
	Usage:       "List templates in the registry",
	Description: "List all usable templates currently downloaded in the registry",
	Flags: []cli.Flag{
		&cli.BoolFlag{
			Name:  "json",
			Usage: "JSON format",
		},
	},
	Action: runList,
}

func runList(ctx *cli.Context) error {
	reg, err := registry.Open(registryFlag)
	if err != nil {
		return err
	}

	if ctx.Bool("json") {
		return json.NewEncoder(os.Stdout).Encode(reg.Templates)
	}

	wr := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
	if _, err := fmt.Fprintf(wr, "NAME\tURL\tLOCAL\tLAST UPDATED\n"); err != nil {
		return err
	}
	for _, t := range reg.Templates {
		u := fmt.Sprintf("%s @%s", t.Repository, t.Branch)
		var local bool
		if t.Path != "" {
			u = t.Path
			local = true
		}
		if _, err := fmt.Fprintf(wr, "%s\t%s\t%t\t%s\n", t.Name, u, local, t.LastUpdate.Format("01/02/2006")); err != nil {
			return err
		}
	}
	return wr.Flush()
}