commands: Make convert command non-global
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 9 Apr 2018 16:49:13 +0000 (18:49 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 07:48:56 +0000 (09:48 +0200)
See #4598

commands/convert.go
commands/hugo.go

index f63f8522f461ec65ed1514e4d2b74bc77738f76f..cc07fe08744f457e4b735b329dfbf66c24d7eba5 100644 (file)
@@ -28,56 +28,67 @@ import (
        "github.com/spf13/cobra"
 )
 
+var (
+       _ cmder = (*convertCmd)(nil)
+)
+
 var outputDir string
 var unsafe bool
 
-var convertCmd = &cobra.Command{
-       Use:   "convert",
-       Short: "Convert your content to different formats",
-       Long: `Convert your content (e.g. front matter) to different formats.
+type convertCmd struct {
+       cmd *cobra.Command
+}
+
+func newConvertCmd() *convertCmd {
+       cmd := &cobra.Command{
+               Use:   "convert",
+               Short: "Convert your content to different formats",
+               Long: `Convert your content (e.g. front matter) to different formats.
 
 See convert's subcommands toJSON, toTOML and toYAML for more information.`,
-       RunE: nil,
-}
+               RunE: nil,
+       }
 
-var toJSONCmd = &cobra.Command{
-       Use:   "toJSON",
-       Short: "Convert front matter to JSON",
-       Long: `toJSON converts all front matter in the content directory
+       cmd.AddCommand(
+               &cobra.Command{
+                       Use:   "toJSON",
+                       Short: "Convert front matter to JSON",
+                       Long: `toJSON converts all front matter in the content directory
 to use JSON for the front matter.`,
-       RunE: func(cmd *cobra.Command, args []string) error {
-               return convertContents(rune([]byte(parser.JSONLead)[0]))
-       },
-}
-
-var toTOMLCmd = &cobra.Command{
-       Use:   "toTOML",
-       Short: "Convert front matter to TOML",
-       Long: `toTOML converts all front matter in the content directory
+                       RunE: func(cmd *cobra.Command, args []string) error {
+                               return convertContents(rune([]byte(parser.JSONLead)[0]))
+                       },
+               },
+               &cobra.Command{
+                       Use:   "toTOML",
+                       Short: "Convert front matter to TOML",
+                       Long: `toTOML converts all front matter in the content directory
 to use TOML for the front matter.`,
-       RunE: func(cmd *cobra.Command, args []string) error {
-               return convertContents(rune([]byte(parser.TOMLLead)[0]))
-       },
-}
-
-var toYAMLCmd = &cobra.Command{
-       Use:   "toYAML",
-       Short: "Convert front matter to YAML",
-       Long: `toYAML converts all front matter in the content directory
+                       RunE: func(cmd *cobra.Command, args []string) error {
+                               return convertContents(rune([]byte(parser.TOMLLead)[0]))
+                       },
+               },
+               &cobra.Command{
+                       Use:   "toYAML",
+                       Short: "Convert front matter to YAML",
+                       Long: `toYAML converts all front matter in the content directory
 to use YAML for the front matter.`,
-       RunE: func(cmd *cobra.Command, args []string) error {
-               return convertContents(rune([]byte(parser.YAMLLead)[0]))
-       },
+                       RunE: func(cmd *cobra.Command, args []string) error {
+                               return convertContents(rune([]byte(parser.YAMLLead)[0]))
+                       },
+               },
+       )
+
+       cmd.PersistentFlags().StringVarP(&outputDir, "output", "o", "", "filesystem path to write files to")
+       cmd.PersistentFlags().StringVarP(&source, "source", "s", "", "filesystem path to read files relative from")
+       cmd.PersistentFlags().BoolVar(&unsafe, "unsafe", false, "enable less safe operations, please backup first")
+       cmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
+
+       return &convertCmd{cmd: cmd}
 }
 
-func init() {
-       convertCmd.AddCommand(toJSONCmd)
-       convertCmd.AddCommand(toTOMLCmd)
-       convertCmd.AddCommand(toYAMLCmd)
-       convertCmd.PersistentFlags().StringVarP(&outputDir, "output", "o", "", "filesystem path to write files to")
-       convertCmd.PersistentFlags().StringVarP(&source, "source", "s", "", "filesystem path to read files relative from")
-       convertCmd.PersistentFlags().BoolVar(&unsafe, "unsafe", false, "enable less safe operations, please backup first")
-       convertCmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
+func (c *convertCmd) getCommand() *cobra.Command {
+       return c.cmd
 }
 
 func convertContents(mark rune) error {
index 5db5239ea8b6c716956c8149aac14322c4b23ec7..f4fbe45da1950f3b568d750b552a5a9b927df771 100644 (file)
@@ -199,7 +199,7 @@ func AddCommands() {
        HugoCmd.AddCommand(configCmd)
        HugoCmd.AddCommand(newCheckCmd().getCommand())
        HugoCmd.AddCommand(newBenchmarkCmd().getCommand())
-       HugoCmd.AddCommand(convertCmd)
+       HugoCmd.AddCommand(newConvertCmd().getCommand())
        HugoCmd.AddCommand(newCmd)
        HugoCmd.AddCommand(listCmd)
        HugoCmd.AddCommand(importCmd)