Welcome to mirror list, hosted at ThFree Co, Russian Federation.

absurl.go « transform - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a0cd7239b463727d449bea2346485c947f3c988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package transform

import (
	"bytes"
	"net/url"
	"strings"
)

func AbsURL(absURL string) (trs []link, err error) {
	var baseURL *url.URL

	if baseURL, err = url.Parse(absURL); err != nil {
		return
	}

	base := strings.TrimRight(baseURL.String(), "/")

	var (
		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
}

func AbsURLInXML(absURL string) (trs []link, err error) {
	var baseURL *url.URL

	if baseURL, err = url.Parse(absURL); err != nil {
		return
	}

	base := strings.TrimRight(baseURL.String(), "/")

	var (
		srcedq  = []byte(" src="" + base + "/")
		hrefedq = []byte(" href="" + base + "/")
		srcesq  = []byte(" src='" + base + "/")
		hrefesq = []byte(" href='" + base + "/")
	)
	trs = append(trs, func(content []byte) []byte {
		content = guardReplace(content, []byte(" src="//"), []byte(" src="/"), srcedq)
		content = guardReplace(content, []byte(" src='//"), []byte(" src='/"), srcesq)
		content = guardReplace(content, []byte(" href="//"), []byte(" href="/"), hrefedq)
		content = guardReplace(content, []byte(" href='//"), []byte(" href='/"), hrefesq)
		return content
	})
	return
}

func guardReplace(content, guard, match, replace []byte) []byte {
	if !bytes.Contains(content, guard) {
		content = bytes.Replace(content, match, replace, -1)
	}
	return content
}