tmpl/cmd/init.go

58 lines
1.5 KiB
Go

package cmd
import (
"errors"
"os"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
)
var Init = &cli.Command{
Name: "init",
Usage: "Initialize a template",
Description: "Initializes a template structure for creating a new tmpl template",
Action: runInit,
}
func runInit(_ *cli.Context) error {
if _, err := os.Lstat("tmpl.yaml"); !os.IsNotExist(err) {
if err != nil {
return err
}
return errors.New("tmpl.yaml already detected, aborting initialization")
}
if fi, err := os.Lstat("template"); !os.IsNotExist(err) {
if err != nil {
return err
}
if !fi.IsDir() {
return errors.New("template file found instead of directory, aborting initialization")
}
return errors.New("template directory already detected, aborting initialization")
}
fi, err := os.Create("tmpl.yaml")
if err != nil {
return err
}
if _, err := fi.WriteString(comments); err != nil {
return err
}
if err := os.Mkdir("template", os.ModePerm); err != nil {
return err
}
log.Info().Msg("Template initialized!")
return fi.Close()
}
var comments = `# tmpl.yaml
# Write any template args here to prompt the user for, giving any defaults/options as applicable
prompts:
- id: name # The unique ID for the prompt
label: Project Name # The prompt message/label
help: The name to use in the project # Optional help message for the prompt
default: tmpl # Prompt default
`