2015-02-16 13:26:54 -05:00
|
|
|
// Copyright © 2013-2015 Steve Francia <spf@spf13.com>.
|
2014-02-27 18:32:09 -05:00
|
|
|
//
|
|
|
|
// Licensed under the Simple Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://opensource.org/licenses/Simple-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package helpers
|
|
|
|
|
|
|
|
import (
|
2014-08-22 07:59:59 -04:00
|
|
|
"fmt"
|
2014-02-27 18:32:09 -05:00
|
|
|
"net/url"
|
2014-12-07 13:48:00 -05:00
|
|
|
"path"
|
2014-08-22 07:59:59 -04:00
|
|
|
"strings"
|
2015-01-28 02:18:09 -05:00
|
|
|
|
|
|
|
"github.com/PuerkitoBio/purell"
|
|
|
|
"github.com/spf13/viper"
|
2014-02-27 18:32:09 -05:00
|
|
|
)
|
|
|
|
|
2015-01-27 05:44:41 -05:00
|
|
|
type PathBridge struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Base(in string) string {
|
|
|
|
return path.Base(in)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Clean(in string) string {
|
|
|
|
return path.Clean(in)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Dir(in string) string {
|
|
|
|
return path.Dir(in)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Ext(in string) string {
|
|
|
|
return path.Ext(in)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Join(elem ...string) string {
|
|
|
|
return path.Join(elem...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (PathBridge) Separator() string {
|
|
|
|
return "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
var pathBridge PathBridge
|
|
|
|
|
2015-03-11 13:34:57 -04:00
|
|
|
func sanitizeURLWithFlags(in string, f purell.NormalizationFlags) string {
|
2015-02-28 12:45:02 -05:00
|
|
|
s, err := purell.NormalizeURLString(in, f)
|
2014-04-07 22:02:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return in
|
|
|
|
}
|
2015-02-16 13:26:54 -05:00
|
|
|
|
|
|
|
// Temporary workaround for the bug fix and resulting
|
|
|
|
// behavioral change in purell.NormalizeURLString():
|
|
|
|
// a leading '/' was inadvertently to relative links,
|
|
|
|
// but no longer, see #878.
|
|
|
|
//
|
|
|
|
// I think the real solution is to allow Hugo to
|
|
|
|
// make relative URL with relative path,
|
|
|
|
// e.g. "../../post/hello-again/", as wished by users
|
|
|
|
// in issues #157, #622, etc., without forcing
|
|
|
|
// relative URLs to begin with '/'.
|
|
|
|
// Once the fixes are in, let's remove this kludge
|
2015-03-18 01:16:54 -04:00
|
|
|
// and restore SanitizeURL() to the way it was.
|
2015-02-16 13:26:54 -05:00
|
|
|
// -- @anthonyfok, 2015-02-16
|
|
|
|
//
|
|
|
|
// Begin temporary kludge
|
|
|
|
u, err := url.Parse(s)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-05-05 10:02:52 -04:00
|
|
|
if len(u.Path) > 0 && !strings.HasPrefix(u.Path, "/") {
|
2015-02-16 13:26:54 -05:00
|
|
|
u.Path = "/" + u.Path
|
|
|
|
}
|
|
|
|
return u.String()
|
|
|
|
// End temporary kludge
|
|
|
|
|
|
|
|
//return s
|
2015-02-28 12:45:02 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-03-18 01:16:54 -04:00
|
|
|
// SanitizeURL sanitizes the input URL string.
|
2015-03-11 13:34:57 -04:00
|
|
|
func SanitizeURL(in string) string {
|
|
|
|
return sanitizeURLWithFlags(in, purell.FlagsSafe|purell.FlagRemoveTrailingSlash|purell.FlagRemoveDotSegments|purell.FlagRemoveDuplicateSlashes|purell.FlagRemoveUnnecessaryHostDots|purell.FlagRemoveEmptyPortSeparator)
|
2015-02-28 12:45:02 -05:00
|
|
|
}
|
|
|
|
|
2015-03-18 01:16:54 -04:00
|
|
|
// SanitizeURLKeepTrailingSlash is the same as SanitizeURL, but will keep any trailing slash.
|
2015-03-11 13:34:57 -04:00
|
|
|
func SanitizeURLKeepTrailingSlash(in string) string {
|
|
|
|
return sanitizeURLWithFlags(in, purell.FlagsSafe|purell.FlagRemoveDotSegments|purell.FlagRemoveDuplicateSlashes|purell.FlagRemoveUnnecessaryHostDots|purell.FlagRemoveEmptyPortSeparator)
|
2014-04-07 22:02:08 -04:00
|
|
|
}
|
|
|
|
|
2014-02-27 18:32:09 -05:00
|
|
|
// Similar to MakePath, but with Unicode handling
|
|
|
|
// Example:
|
|
|
|
// uri: Vim (text editor)
|
|
|
|
// urlize: vim-text-editor
|
2015-03-11 13:34:57 -04:00
|
|
|
func URLize(uri string) string {
|
2014-09-03 15:05:44 -04:00
|
|
|
sanitized := MakePathToLower(uri)
|
2014-02-27 18:32:09 -05:00
|
|
|
|
|
|
|
// escape unicode letters
|
|
|
|
parsedUri, err := url.Parse(sanitized)
|
|
|
|
if err != nil {
|
|
|
|
// if net/url can not parse URL it's meaning Sanitize works incorrect
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
x := parsedUri.String()
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
|
2014-12-11 15:57:25 -05:00
|
|
|
// Combines base URL with content path to create full URL paths.
|
2014-02-27 18:32:09 -05:00
|
|
|
// Example
|
|
|
|
// base: http://spf13.com/
|
|
|
|
// path: post/how-i-blog
|
|
|
|
// result: http://spf13.com/post/how-i-blog
|
|
|
|
func MakePermalink(host, plink string) *url.URL {
|
|
|
|
|
|
|
|
base, err := url.Parse(host)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2014-08-22 07:59:59 -04:00
|
|
|
p, err := url.Parse(plink)
|
2014-02-27 18:32:09 -05:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-08-22 07:59:59 -04:00
|
|
|
|
|
|
|
if p.Host != "" {
|
|
|
|
panic(fmt.Errorf("Can't make permalink from absolute link %q", plink))
|
|
|
|
}
|
|
|
|
|
2014-12-07 13:48:00 -05:00
|
|
|
base.Path = path.Join(base.Path, p.Path)
|
2014-08-22 07:59:59 -04:00
|
|
|
|
|
|
|
// path.Join will strip off the last /, so put it back if it was there.
|
2015-05-11 06:28:44 -04:00
|
|
|
hadTrailingSlash := (plink == "" && strings.HasSuffix(host, "/")) || strings.HasSuffix(p.Path, "/")
|
|
|
|
if hadTrailingSlash && !strings.HasSuffix(base.Path, "/") {
|
2014-08-22 07:59:59 -04:00
|
|
|
base.Path = base.Path + "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
return base
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
|
|
|
|
2015-05-11 06:28:44 -04:00
|
|
|
// AbsURL creates a absolute URL from the relative path given and the BaseURL set in config.
|
|
|
|
func AbsURL(path string) string {
|
|
|
|
if strings.HasPrefix(path, "http") || strings.HasPrefix(path, "//") {
|
|
|
|
return path
|
|
|
|
}
|
2015-05-11 07:59:06 -04:00
|
|
|
return MakePermalink(viper.GetString("BaseURL"), path).String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// RelURL creates a URL relative to the BaseURL root.
|
|
|
|
// Note: The result URL will not include the context root if canonifyURLs is enabled.
|
|
|
|
func RelURL(path string) string {
|
|
|
|
baseURL := viper.GetString("BaseURL")
|
|
|
|
canonifyURLs := viper.GetBool("canonifyURLs")
|
|
|
|
if (!strings.HasPrefix(path, baseURL) && strings.HasPrefix(path, "http")) || strings.HasPrefix(path, "//") {
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
|
|
|
|
u := path
|
|
|
|
|
|
|
|
if strings.HasPrefix(path, baseURL) {
|
|
|
|
u = strings.TrimPrefix(u, baseURL)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !canonifyURLs {
|
|
|
|
u = AddContextRoot(baseURL, u)
|
|
|
|
}
|
|
|
|
if path == "" && !strings.HasSuffix(u, "/") && strings.HasSuffix(baseURL, "/") {
|
|
|
|
u += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasPrefix(u, "/") {
|
|
|
|
u = "/" + u
|
|
|
|
}
|
|
|
|
|
|
|
|
return u
|
2015-05-11 06:28:44 -04:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:28:28 -05:00
|
|
|
// AddContextRoot adds the context root to an URL if it's not already set.
|
|
|
|
// For relative URL entries on sites with a base url with a context root set (i.e. http://example.com/mysite),
|
2015-03-18 01:16:54 -04:00
|
|
|
// relative URLs must not include the context root if canonifyURLs is enabled. But if it's disabled, it must be set.
|
2015-03-11 13:34:57 -04:00
|
|
|
func AddContextRoot(baseURL, relativePath string) string {
|
2014-12-12 14:28:28 -05:00
|
|
|
|
2015-03-11 13:34:57 -04:00
|
|
|
url, err := url.Parse(baseURL)
|
2014-12-12 14:28:28 -05:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
newPath := path.Join(url.Path, relativePath)
|
|
|
|
|
2015-01-28 02:18:09 -05:00
|
|
|
// path strips traling slash, ignore root path.
|
|
|
|
if newPath != "/" && strings.HasSuffix(relativePath, "/") {
|
2014-12-12 14:28:28 -05:00
|
|
|
newPath += "/"
|
|
|
|
}
|
|
|
|
return newPath
|
|
|
|
}
|
|
|
|
|
2015-03-11 13:34:57 -04:00
|
|
|
func URLizeAndPrep(in string) string {
|
|
|
|
return URLPrep(viper.GetBool("UglyURLs"), URLize(in))
|
2014-12-27 08:11:19 -05:00
|
|
|
}
|
|
|
|
|
2015-03-11 13:34:57 -04:00
|
|
|
func URLPrep(ugly bool, in string) string {
|
2014-02-27 18:32:09 -05:00
|
|
|
if ugly {
|
2015-03-11 13:34:57 -04:00
|
|
|
x := Uglify(SanitizeURL(in))
|
2014-08-25 12:11:19 -04:00
|
|
|
return x
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
2015-03-11 13:34:57 -04:00
|
|
|
x := PrettifyURL(SanitizeURL(in))
|
2015-03-06 18:02:06 -05:00
|
|
|
if path.Ext(x) == ".xml" {
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
url, err := purell.NormalizeURLString(x, purell.FlagAddTrailingSlash)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("ERROR returned by NormalizeURLString. Returning in = %q\n", in)
|
|
|
|
return in
|
|
|
|
}
|
|
|
|
return url
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
|
|
|
|
2015-03-18 01:16:54 -04:00
|
|
|
// PrettifyURL takes a URL string and returns a semantic, clean URL.
|
2015-03-11 13:34:57 -04:00
|
|
|
func PrettifyURL(in string) string {
|
|
|
|
x := PrettifyURLPath(in)
|
2014-02-27 18:32:09 -05:00
|
|
|
|
2014-12-07 13:48:00 -05:00
|
|
|
if path.Base(x) == "index.html" {
|
|
|
|
return path.Dir(x)
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if in == "" {
|
|
|
|
return "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
|
2015-03-18 01:16:54 -04:00
|
|
|
// PrettifyURLPath takes a URL path to a content and converts it
|
2014-12-26 10:07:03 -05:00
|
|
|
// to enable pretty URLs.
|
|
|
|
// /section/name.html becomes /section/name/index.html
|
|
|
|
// /section/name/ becomes /section/name/index.html
|
|
|
|
// /section/name/index.html becomes /section/name/index.html
|
2015-03-11 13:34:57 -04:00
|
|
|
func PrettifyURLPath(in string) string {
|
2015-01-27 05:44:41 -05:00
|
|
|
return PrettiyPath(in, pathBridge)
|
2014-12-07 13:48:00 -05:00
|
|
|
}
|
|
|
|
|
2015-03-18 01:16:54 -04:00
|
|
|
// Uglify does the opposite of PrettifyURLPath().
|
2014-12-26 10:07:03 -05:00
|
|
|
// /section/name/index.html becomes /section/name.html
|
|
|
|
// /section/name/ becomes /section/name.html
|
|
|
|
// /section/name.html becomes /section/name.html
|
2014-02-27 18:32:09 -05:00
|
|
|
func Uglify(in string) string {
|
2014-12-07 13:48:00 -05:00
|
|
|
if path.Ext(in) == "" {
|
2014-02-27 18:32:09 -05:00
|
|
|
if len(in) < 2 {
|
|
|
|
return "/"
|
|
|
|
}
|
|
|
|
// /section/name/ -> /section/name.html
|
2014-12-07 13:48:00 -05:00
|
|
|
return path.Clean(in) + ".html"
|
2015-03-06 18:02:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
name, ext := FileAndExt(in, pathBridge)
|
|
|
|
if name == "index" {
|
|
|
|
// /section/name/index.html -> /section/name.html
|
|
|
|
d := path.Dir(in)
|
|
|
|
if len(d) > 1 {
|
|
|
|
return d + ext
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
2015-03-06 18:02:06 -05:00
|
|
|
return in
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|
2015-03-06 18:02:06 -05:00
|
|
|
// /section/name.html -> /section/name.html
|
|
|
|
return path.Clean(in)
|
2014-02-27 18:32:09 -05:00
|
|
|
}
|