2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache 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://www.apache.org/licenses/LICENSE-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.
|
|
|
|
|
2013-09-12 19:17:53 -04:00
|
|
|
package target
|
|
|
|
|
|
|
|
import (
|
2013-09-13 17:46:34 -04:00
|
|
|
"bytes"
|
2015-09-13 08:36:08 -04:00
|
|
|
"fmt"
|
2013-09-13 17:46:34 -04:00
|
|
|
"html/template"
|
2014-11-06 11:06:29 -05:00
|
|
|
"path/filepath"
|
2015-09-13 08:36:08 -04:00
|
|
|
"runtime"
|
2013-09-12 19:17:53 -04:00
|
|
|
"strings"
|
2014-05-01 13:13:11 -04:00
|
|
|
|
|
|
|
"github.com/spf13/hugo/helpers"
|
2014-11-01 11:57:29 -04:00
|
|
|
"github.com/spf13/hugo/hugofs"
|
2015-09-13 08:36:08 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2013-09-12 19:17:53 -04:00
|
|
|
)
|
|
|
|
|
2016-03-22 19:44:51 -04:00
|
|
|
const alias = "<!DOCTYPE html><html><head><link rel=\"canonical\" href=\"{{ .Permalink }}\"/><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" /><meta http-equiv=\"refresh\" content=\"0;url={{ .Permalink }}\" /></head></html>"
|
|
|
|
const aliasXHtml = "<!DOCTYPE html><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><link rel=\"canonical\" href=\"{{ .Permalink }}\"/><meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" /><meta http-equiv=\"refresh\" content=\"0;url={{ .Permalink }}\" /></head></html>"
|
2013-09-13 00:18:13 -04:00
|
|
|
|
2016-03-22 19:44:51 -04:00
|
|
|
var defaultAliasTemplates *template.Template
|
2013-09-13 00:18:13 -04:00
|
|
|
|
|
|
|
func init() {
|
2016-03-22 19:44:51 -04:00
|
|
|
defaultAliasTemplates = template.New("")
|
|
|
|
template.Must(defaultAliasTemplates.New("alias").Parse(alias))
|
|
|
|
template.Must(defaultAliasTemplates.New("alias-xhtml").Parse(aliasXHtml))
|
2013-09-13 00:18:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type AliasPublisher interface {
|
|
|
|
Translator
|
2015-10-16 23:45:49 -04:00
|
|
|
Publish(string, string) error
|
2013-09-13 00:18:13 -04:00
|
|
|
}
|
|
|
|
|
2013-09-12 19:17:53 -04:00
|
|
|
type HTMLRedirectAlias struct {
|
|
|
|
PublishDir string
|
2013-09-13 17:46:34 -04:00
|
|
|
Templates *template.Template
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error) {
|
2015-09-13 08:36:08 -04:00
|
|
|
originalAlias := alias
|
2013-09-13 17:46:34 -04:00
|
|
|
if len(alias) <= 0 {
|
2015-09-13 08:36:08 -04:00
|
|
|
return "", fmt.Errorf("Alias \"\" is an empty string")
|
|
|
|
}
|
|
|
|
|
|
|
|
alias = filepath.Clean(alias)
|
|
|
|
components := strings.Split(alias, helpers.FilePathSeparator)
|
|
|
|
|
|
|
|
if alias == helpers.FilePathSeparator {
|
|
|
|
return "", fmt.Errorf("Alias \"%s\" resolves to website root directory", originalAlias)
|
2013-09-13 17:46:34 -04:00
|
|
|
}
|
|
|
|
|
2015-09-13 08:36:08 -04:00
|
|
|
// Validate against directory traversal
|
|
|
|
if components[0] == ".." {
|
|
|
|
return "", fmt.Errorf("Alias \"%s\" traverses outside the website root directory", originalAlias)
|
|
|
|
}
|
|
|
|
|
2015-09-14 14:18:54 -04:00
|
|
|
// Handle Windows file and directory naming restrictions
|
|
|
|
// See "Naming Files, Paths, and Namespaces" on MSDN
|
|
|
|
// https://msdn.microsoft.com/en-us/library/aa365247%28v=VS.85%29.aspx?f=255&MSPPError=-2147217396
|
2015-09-13 08:36:08 -04:00
|
|
|
msgs := []string{}
|
|
|
|
reservedNames := []string{"CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"}
|
|
|
|
|
|
|
|
if strings.ContainsAny(alias, ":*?\"<>|") {
|
2015-09-14 14:18:54 -04:00
|
|
|
msgs = append(msgs, fmt.Sprintf("Alias \"%s\" contains invalid characters on Windows: : * ? \" < > |", originalAlias))
|
2015-09-13 08:36:08 -04:00
|
|
|
}
|
2015-09-14 14:18:54 -04:00
|
|
|
for _, ch := range alias {
|
|
|
|
if ch < ' ' {
|
|
|
|
msgs = append(msgs, fmt.Sprintf("Alias \"%s\" contains ASCII control code (0x00 to 0x1F), invalid on Windows: : * ? \" < > |", originalAlias))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, comp := range components {
|
|
|
|
if strings.HasSuffix(comp, " ") || strings.HasSuffix(comp, ".") {
|
|
|
|
msgs = append(msgs, fmt.Sprintf("Alias \"%s\" contains component with a trailing space or period, problematic on Windows", originalAlias))
|
2015-09-13 08:36:08 -04:00
|
|
|
}
|
|
|
|
for _, r := range reservedNames {
|
2015-09-14 14:18:54 -04:00
|
|
|
if comp == r {
|
2015-09-13 08:36:08 -04:00
|
|
|
msgs = append(msgs, fmt.Sprintf("Alias \"%s\" contains component with reserved name \"%s\" on Windows", originalAlias, r))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(msgs) > 0 {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
for _, m := range msgs {
|
|
|
|
jww.ERROR.Println(m)
|
|
|
|
}
|
|
|
|
return "", fmt.Errorf("Cannot create \"%s\": Windows filename restriction", originalAlias)
|
2016-03-22 19:44:51 -04:00
|
|
|
}
|
|
|
|
for _, m := range msgs {
|
|
|
|
jww.WARN.Println(m)
|
2015-09-13 08:36:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the final touch
|
|
|
|
if strings.HasPrefix(alias, helpers.FilePathSeparator) {
|
|
|
|
alias = alias[1:]
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(alias, helpers.FilePathSeparator) {
|
2013-09-12 19:17:53 -04:00
|
|
|
alias = alias + "index.html"
|
2013-09-13 17:46:34 -04:00
|
|
|
} else if !strings.HasSuffix(alias, ".html") {
|
2015-09-13 08:36:08 -04:00
|
|
|
alias = alias + helpers.FilePathSeparator + "index.html"
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
2015-09-13 08:36:08 -04:00
|
|
|
if originalAlias != alias {
|
|
|
|
jww.INFO.Printf("Alias \"%s\" translated to \"%s\"\n", originalAlias, alias)
|
|
|
|
}
|
|
|
|
|
|
|
|
return filepath.Join(h.PublishDir, alias), nil
|
2013-09-12 19:17:53 -04:00
|
|
|
}
|
2013-09-13 00:18:13 -04:00
|
|
|
|
|
|
|
type AliasNode struct {
|
2015-10-16 23:45:49 -04:00
|
|
|
Permalink string
|
2013-09-13 00:18:13 -04:00
|
|
|
}
|
|
|
|
|
2015-10-16 23:45:49 -04:00
|
|
|
func (h *HTMLRedirectAlias) Publish(path string, permalink string) (err error) {
|
2013-09-13 00:18:13 -04:00
|
|
|
if path, err = h.Translate(path); err != nil {
|
2015-09-13 08:36:08 -04:00
|
|
|
jww.ERROR.Printf("%s, skipping.", err)
|
|
|
|
return nil
|
2013-09-13 00:18:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
t := "alias"
|
|
|
|
if strings.HasSuffix(path, ".xhtml") {
|
|
|
|
t = "alias-xhtml"
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:44:51 -04:00
|
|
|
template := defaultAliasTemplates
|
2013-09-13 00:18:13 -04:00
|
|
|
if h.Templates != nil {
|
|
|
|
template = h.Templates
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
err = template.ExecuteTemplate(buffer, t, &AliasNode{permalink})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-01 11:57:29 -04:00
|
|
|
return helpers.WriteToDisk(path, buffer, hugofs.DestinationFS)
|
2013-09-13 00:18:13 -04:00
|
|
|
}
|