refactor handling of amber to AddTemplateFile as the TODO note stated. Used switch...
authorJoel Scoble <joel.scoble@outlook.com>
Tue, 9 Sep 2014 21:57:14 +0000 (16:57 -0500)
committerspf13 <steve.francia@gmail.com>
Thu, 11 Sep 2014 21:09:16 +0000 (17:09 -0400)
hugolib/template.go

index c9f62a99e112afeed55b4f47c4c3725713e63149..d805aeef7487c4b5d967fd09bf7809798f4056b7 100644 (file)
@@ -359,11 +359,30 @@ func (t *GoHtmlTemplate) AddTemplate(name, tpl string) error {
 }
 
 func (t *GoHtmlTemplate) AddTemplateFile(name, path string) error {
-       b, err := ioutil.ReadFile(path)
-       if err != nil {
-               return err
+       // get the suffix and switch on that
+       ext := filepath.Ext(path)
+       switch ext {
+       case ".amber":
+               compiler := amber.New()
+               // Parse the input file
+               if err := compiler.ParseFile(path); err != nil {
+                       return nil
+               }
+
+               if _, err := compiler.CompileWithTemplate(t.New(name)); err != nil {
+                       return err
+               }
+       default:
+               b, err := ioutil.ReadFile(path)
+               if err != nil {
+                       return err
+               }
+
+               return t.AddTemplate(name, string(b))
        }
-       return t.AddTemplate(name, string(b))
+
+       return nil
+
 }
 
 func (t *GoHtmlTemplate) generateTemplateNameFrom(base, path string) string {
@@ -391,21 +410,8 @@ func (t *GoHtmlTemplate) loadTemplates(absPath string, prefix string) {
                                tplName = strings.Trim(prefix, "/") + "/" + tplName
                        }
 
-                       // TODO move this into the AddTemplateFile function
-                       if strings.HasSuffix(path, ".amber") {
-                               compiler := amber.New()
-                               // Parse the input file
-                               if err := compiler.ParseFile(path); err != nil {
-                                       return nil
-                               }
+                       t.AddTemplateFile(tplName, path)
 
-                               if _, err := compiler.CompileWithTemplate(t.New(tplName)); err != nil {
-                                       return err
-                               }
-
-                       } else {
-                               t.AddTemplateFile(tplName, path)
-                       }
                }
                return nil
        }