tpl/path: Add path.Join
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 15 Apr 2018 19:06:57 +0000 (21:06 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 15 Apr 2018 20:19:12 +0000 (22:19 +0200)
tpl/path/init.go
tpl/path/path.go

index ffe71e2ef2d75eba13ab7f4f0c25dd1553b6c9b7..ebfb59702382ac9732683af2138159f39b9467d7 100644 (file)
 package path
 
 import (
+       "fmt"
+       "path/filepath"
+
        "github.com/gohugoio/hugo/deps"
+       "github.com/gohugoio/hugo/helpers"
        "github.com/gohugoio/hugo/tpl/internal"
 )
 
@@ -33,6 +37,15 @@ func init() {
                        nil,
                        [][2]string{
                                {`{{ "/my/path/filename.txt" | path.Split }}`, `/my/path/|filename.txt`},
+                               {fmt.Sprintf(`{{ %q | path.Split }}`, filepath.FromSlash("/my/path/filename.txt")), `/my/path/|filename.txt`},
+                       },
+               )
+
+               ns.AddMethodMapping(ctx.Join,
+                       nil,
+                       [][2]string{
+                               {fmt.Sprintf(`{{ slice %q "filename.txt" | path.Join  }}`, "my"+helpers.FilePathSeparator+"path"), `my/path/filename.txt`},
+                               {`{{  path.Join "my" "path" "filename.txt" }}`, `my/path/filename.txt`},
                        },
                )
 
index aa63c0ce9058545abc80fddabd048dc512c40ae4..d8b00eb39ec8e721d8c01bf7f22c51f1a7fb135a 100644 (file)
@@ -16,6 +16,7 @@ package path
 import (
        "fmt"
        _path "path"
+       "path/filepath"
 
        "github.com/gohugoio/hugo/deps"
        "github.com/spf13/cast"
@@ -48,13 +49,45 @@ func (df DirFile) String() string {
 // separating it into a directory and file name component.
 // If there is no slash in path, Split returns an empty dir and
 // file set to path.
+// The input path is passed into filepath.ToSlash converting any Windows slashes
+// to forward slashes.
 // The returned values have the property that path = dir+file.
 func (ns *Namespace) Split(path interface{}) (DirFile, error) {
        spath, err := cast.ToStringE(path)
        if err != nil {
                return DirFile{}, err
        }
+       spath = filepath.ToSlash(spath)
        dir, file := _path.Split(spath)
 
        return DirFile{Dir: dir, File: file}, nil
 }
+
+// Join joins any number of path elements into a single path, adding a
+// separating slash if necessary. All the input
+// path elements are passed into filepath.ToSlash converting any Windows slashes
+// to forward slashes.
+// The result is Cleaned; in particular,
+// all empty strings are ignored.
+func (ns *Namespace) Join(elements ...interface{}) (string, error) {
+       var pathElements []string
+       for _, elem := range elements {
+               switch v := elem.(type) {
+               case []interface{}:
+                       for _, e := range v {
+                               elemStr, err := cast.ToStringE(e)
+                               if err != nil {
+                                       return "", err
+                               }
+                               pathElements = append(pathElements, filepath.ToSlash(elemStr))
+                       }
+               default:
+                       elemStr, err := cast.ToStringE(elem)
+                       if err != nil {
+                               return "", err
+                       }
+                       pathElements = append(pathElements, filepath.ToSlash(elemStr))
+               }
+       }
+       return _path.Join(pathElements...), nil
+}