hugo/transform/absurl.go

40 lines
1,022 B
Go
Raw Normal View History

2013-10-01 19:59:29 +00:00
package transform
import (
2013-11-09 06:33:00 +00:00
"bytes"
2013-10-01 19:59:29 +00:00
"net/url"
2013-11-09 06:33:00 +00:00
"strings"
2013-10-01 19:59:29 +00:00
)
func AbsURL(absURL string) (trs []link, err error) {
var baseURL *url.URL
2013-10-01 19:59:29 +00:00
if baseURL, err = url.Parse(absURL); err != nil {
2013-10-01 19:59:29 +00:00
return
}
2013-11-09 06:33:00 +00:00
base := strings.TrimRight(baseURL.String(), "/")
var (
2013-11-09 06:33:00 +00:00
srcdq = []byte(" src=\"" + base + "/")
hrefdq = []byte(" href=\"" + base + "/")
srcsq = []byte(" src='" + base + "/")
hrefsq = []byte(" href='" + base + "/")
)
trs = append(trs, func(content []byte) []byte {
content = guardReplace(content, []byte(" src=\"//"), []byte(" src=\"/"), srcdq)
content = guardReplace(content, []byte(" src='//"), []byte(" src='/"), srcsq)
content = guardReplace(content, []byte(" href=\"//"), []byte(" href=\"/"), hrefdq)
content = guardReplace(content, []byte(" href='//"), []byte(" href='/"), hrefsq)
return content
})
return
2013-10-01 19:59:29 +00:00
}
func guardReplace(content, guard, match, replace []byte) []byte {
2013-11-24 21:48:57 +00:00
if !bytes.Contains(content, guard) {
content = bytes.Replace(content, match, replace, -1)
}
return content
}