1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 11:34:46 +01:00
gojekyll/utils/path.go

54 lines
1.3 KiB
Go
Raw Normal View History

2017-07-09 22:17:20 +02:00
package utils
import (
"path"
2017-07-02 03:12:22 +02:00
"path/filepath"
"strings"
2017-07-03 16:39:55 +02:00
"time"
)
2017-07-03 16:39:55 +02:00
// FilenameDate returns the date for a filename that uses Jekyll post convention.
// It also returns a bool indicating whether a date was found.
func FilenameDate(s string) (time.Time, bool) {
layout := "2006-01-02-"
t, err := time.Parse(layout, filepath.Base(s + layout)[:len(layout)])
return t, err == nil
}
2017-07-03 17:48:06 +02:00
// MustAbs is like filepath.Abs, but panics instead of returning an error.
func MustAbs(path string) string {
abs, err := filepath.Abs(path)
if err != nil {
panic(err)
}
return abs
}
2017-07-02 03:12:22 +02:00
// MustRel is like filepath.Rel, but panics if the path cannot be relativized.
func MustRel(basepath, targpath string) string {
2017-07-03 17:48:06 +02:00
rel, err := filepath.Rel(basepath, targpath)
2017-07-02 03:12:22 +02:00
if err != nil {
panic(err)
}
2017-07-03 17:48:06 +02:00
return rel
2017-07-02 03:12:22 +02:00
}
// TrimExt returns a path without its extension, if any
func TrimExt(name string) string {
return name[:len(name)-len(path.Ext(name))]
}
// URLPathClean removes internal // etc. Unlike path.Clean, it
// leaves the final "/" intact.
2017-06-29 01:00:01 +02:00
func URLPathClean(url string) string {
finalSlash := false
if strings.HasSuffix(url, "/") && len(url) > 1 {
finalSlash = true
}
2017-06-29 01:00:01 +02:00
cleaned := path.Clean(url)
if finalSlash && !strings.HasSuffix(cleaned, "/") {
cleaned += "/"
}
return cleaned
}