Updating Convert to handle dates properly for yaml and json
authorspf13 <steve.francia@gmail.com>
Thu, 29 May 2014 22:40:16 +0000 (18:40 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 29 May 2014 22:45:19 +0000 (18:45 -0400)
Fix bug with YAML & JSON with handling dates with 'new' and 'convert'

commands/convert.go
commands/hugo.go
commands/new.go
create/content.go

index f093d0e1a4aa89b285432b68d78b8e03e7be28a2..9d79a53adf9a2ce827f228a98bef75a81e334e2e 100644 (file)
@@ -16,7 +16,9 @@ package commands
 import (
        "fmt"
        "path"
+       "time"
 
+       "github.com/spf13/cast"
        "github.com/spf13/cobra"
        "github.com/spf13/hugo/hugolib"
        "github.com/spf13/hugo/parser"
@@ -114,6 +116,18 @@ func convertContents(mark rune) (err error) {
                        return err
                }
 
+               // better handling of dates in formats that don't have support for them
+               if mark == parser.FormatToLeadRune("json") || mark == parser.FormatToLeadRune("yaml") {
+                       newmetadata := cast.ToStringMap(metadata)
+                       for k, v := range newmetadata {
+                               switch vv := v.(type) {
+                               case time.Time:
+                                       newmetadata[k] = vv.Format(time.RFC3339)
+                               }
+                       }
+                       metadata = newmetadata
+               }
+
                page.Dir = file.Dir
                page.SetSourceContent(psr.Content())
                page.SetSourceMetaData(metadata, mark)
index 9e5d1864512712d6374e6bc5f97ae70676657fb4..d3e3bea1e81c9adcdf374d73f3c464e3132a875d 100644 (file)
@@ -99,7 +99,7 @@ func InitializeConfig() {
        viper.RegisterAlias("taxonomies", "indexes")
 
        viper.SetDefault("Watch", false)
-       viper.SetDefault("MetadataFormat", "toml")
+       viper.SetDefault("MetaDataFormat", "toml")
        viper.SetDefault("DisableRSS", false)
        viper.SetDefault("DisableSitemap", false)
        viper.SetDefault("ContentDir", "content")
index 75d83836b3161dc2df80076e26843b81e7c3bacd..3acb47ff7ed70fce79b2027511808b19b60a2068 100644 (file)
@@ -23,6 +23,7 @@ import (
        "github.com/spf13/hugo/helpers"
        "github.com/spf13/hugo/parser"
        jww "github.com/spf13/jwalterweatherman"
+       "github.com/spf13/viper"
 )
 
 var siteType string
@@ -33,6 +34,7 @@ var contentFrontMatter string
 
 func init() {
        newSiteCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "config & frontmatter format")
+       newCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "frontmatter format")
        newCmd.Flags().StringVarP(&contentType, "kind", "k", "", "Content type to create")
        newCmd.AddCommand(newSiteCmd)
        newCmd.AddCommand(newThemeCmd)
@@ -73,6 +75,10 @@ as you see fit.
 func NewContent(cmd *cobra.Command, args []string) {
        InitializeConfig()
 
+       if cmd.Flags().Lookup("format").Changed {
+               viper.Set("MetaDataFormat", configFormat)
+       }
+
        if len(args) < 1 {
                cmd.Usage()
                jww.FATAL.Fatalln("path needs to be provided")
index 1f198b5c619c6f4b38e61d9f452267717c776bfd..01a1c9aac32995f42ac3e64cdbde2b5b225a8f1d 100644 (file)
@@ -90,6 +90,10 @@ func NewContent(kind, name string) (err error) {
                return err
        }
 
+       if x := viper.GetString("MetaDataFormat"); x == "json" || x == "yaml" {
+               newmetadata["date"] = time.Now().Format(time.RFC3339)
+       }
+
        page.Dir = viper.GetString("sourceDir")
        page.SetSourceMetaData(newmetadata, parser.FormatToLeadRune(viper.GetString("MetaDataFormat")))