2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2017-03-05 12:23:00 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package output
|
|
|
|
|
|
|
|
import (
|
2017-04-05 10:18:53 -04:00
|
|
|
"encoding/json"
|
2017-03-08 07:45:33 -05:00
|
|
|
"fmt"
|
2017-04-03 11:00:23 -04:00
|
|
|
"sort"
|
2017-03-08 07:45:33 -05:00
|
|
|
"strings"
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
"reflect"
|
|
|
|
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/media"
|
2017-03-05 12:23:00 -05:00
|
|
|
)
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
// Format represents an output representation, usually to a file on disk.
|
|
|
|
type Format struct {
|
|
|
|
// The Name is used as an identifier. Internal output formats (i.e. HTML and RSS)
|
|
|
|
// can be overridden by providing a new definition for those types.
|
2017-07-31 10:38:02 -04:00
|
|
|
Name string `json:"name"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
2017-07-31 10:38:02 -04:00
|
|
|
MediaType media.Type `json:"mediaType"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// Must be set to a value when there are two or more conflicting mediatype for the same resource.
|
2017-07-31 10:38:02 -04:00
|
|
|
Path string `json:"path"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// The base output file name used when not using "ugly URLs", defaults to "index".
|
2017-07-31 10:38:02 -04:00
|
|
|
BaseName string `json:"baseName"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// The value to use for rel links
|
|
|
|
//
|
|
|
|
// See https://www.w3schools.com/tags/att_link_rel.asp
|
|
|
|
//
|
|
|
|
// AMP has a special requirement in this department, see:
|
|
|
|
// https://www.ampproject.org/docs/guides/deploy/discovery
|
|
|
|
// I.e.:
|
|
|
|
// <link rel="amphtml" href="https://www.example.com/url/to/amp/document.html">
|
2017-07-31 10:38:02 -04:00
|
|
|
Rel string `json:"rel"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// The protocol to use, i.e. "webcal://". Defaults to the protocol of the baseURL.
|
2017-07-31 10:38:02 -04:00
|
|
|
Protocol string `json:"protocol"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// IsPlainText decides whether to use text/template or html/template
|
|
|
|
// as template parser.
|
2017-07-31 10:38:02 -04:00
|
|
|
IsPlainText bool `json:"isPlainText"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// IsHTML returns whether this format is int the HTML family. This includes
|
|
|
|
// HTML, AMP etc. This is used to decide when to create alias redirects etc.
|
2017-07-31 10:38:02 -04:00
|
|
|
IsHTML bool `json:"isHTML"`
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// Enable to ignore the global uglyURLs setting.
|
2017-07-31 10:38:02 -04:00
|
|
|
NoUgly bool `json:"noUgly"`
|
2017-04-08 05:15:28 -04:00
|
|
|
|
|
|
|
// Enable if it doesn't make sense to include this format in an alternative
|
|
|
|
// format listing, CSS being one good example.
|
|
|
|
// Note that we use the term "alternative" and not "alternate" here, as it
|
|
|
|
// does not necessarily replace the other format, it is an alternative representation.
|
2017-07-31 10:38:02 -04:00
|
|
|
NotAlternative bool `json:"notAlternative"`
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
// Setting this will make this output format control the value of
|
|
|
|
// .Permalink and .RelPermalink for a rendered Page.
|
|
|
|
// If not set, these values will point to the main (first) output format
|
|
|
|
// configured. That is probably the behaviour you want in most situations,
|
|
|
|
// as you probably don't want to link back to the RSS version of a page, as an
|
|
|
|
// example. AMP would, however, be a good example of an output format where this
|
|
|
|
// behaviour is wanted.
|
2019-03-28 15:59:09 -04:00
|
|
|
Permalinkable bool `json:"permalinkable"`
|
2019-05-02 03:54:26 -04:00
|
|
|
|
|
|
|
// Setting this to a non-zero value will be used as the first sort criteria.
|
|
|
|
Weight int `json:"weight"`
|
2017-04-03 11:00:23 -04:00
|
|
|
}
|
|
|
|
|
2018-09-06 18:00:19 -04:00
|
|
|
// An ordered list of built-in output formats.
|
2017-03-05 12:23:00 -05:00
|
|
|
var (
|
2017-03-25 14:36:50 -04:00
|
|
|
AMPFormat = Format{
|
2019-01-02 06:33:26 -05:00
|
|
|
Name: "AMP",
|
|
|
|
MediaType: media.HTMLType,
|
|
|
|
BaseName: "index",
|
|
|
|
Path: "amp",
|
|
|
|
Rel: "amphtml",
|
|
|
|
IsHTML: true,
|
|
|
|
Permalinkable: true,
|
2018-09-06 18:00:19 -04:00
|
|
|
// See https://www.ampproject.org/learn/overview/
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2017-03-25 14:36:50 -04:00
|
|
|
CalendarFormat = Format{
|
2017-03-23 12:31:05 -04:00
|
|
|
Name: "Calendar",
|
|
|
|
MediaType: media.CalendarType,
|
|
|
|
IsPlainText: true,
|
|
|
|
Protocol: "webcal://",
|
|
|
|
BaseName: "index",
|
|
|
|
Rel: "alternate",
|
|
|
|
}
|
|
|
|
|
2017-03-25 14:36:50 -04:00
|
|
|
CSSFormat = Format{
|
2017-04-08 05:15:28 -04:00
|
|
|
Name: "CSS",
|
|
|
|
MediaType: media.CSSType,
|
|
|
|
BaseName: "styles",
|
|
|
|
IsPlainText: true,
|
|
|
|
Rel: "stylesheet",
|
|
|
|
NotAlternative: true,
|
2017-04-01 09:12:31 -04:00
|
|
|
}
|
|
|
|
CSVFormat = Format{
|
|
|
|
Name: "CSV",
|
|
|
|
MediaType: media.CSVType,
|
|
|
|
BaseName: "index",
|
|
|
|
IsPlainText: true,
|
|
|
|
Rel: "alternate",
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2017-03-25 14:36:50 -04:00
|
|
|
HTMLFormat = Format{
|
2019-01-02 06:33:26 -05:00
|
|
|
Name: "HTML",
|
|
|
|
MediaType: media.HTMLType,
|
|
|
|
BaseName: "index",
|
|
|
|
Rel: "canonical",
|
|
|
|
IsHTML: true,
|
|
|
|
Permalinkable: true,
|
2019-05-02 03:54:26 -04:00
|
|
|
|
|
|
|
// Weight will be used as first sort criteria. HTML will, by default,
|
|
|
|
// be rendered first, but set it to 10 so it's easy to put one above it.
|
|
|
|
Weight: 10,
|
2017-03-05 12:23:00 -05:00
|
|
|
}
|
|
|
|
|
2017-03-25 14:36:50 -04:00
|
|
|
JSONFormat = Format{
|
2017-03-08 07:45:33 -05:00
|
|
|
Name: "JSON",
|
2017-03-09 13:19:29 -05:00
|
|
|
MediaType: media.JSONType,
|
2017-03-08 07:45:33 -05:00
|
|
|
BaseName: "index",
|
|
|
|
IsPlainText: true,
|
2017-03-22 04:54:56 -04:00
|
|
|
Rel: "alternate",
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2018-01-25 04:36:53 -05:00
|
|
|
RobotsTxtFormat = Format{
|
|
|
|
Name: "ROBOTS",
|
|
|
|
MediaType: media.TextType,
|
|
|
|
BaseName: "robots",
|
|
|
|
IsPlainText: true,
|
|
|
|
Rel: "alternate",
|
|
|
|
}
|
|
|
|
|
2017-03-25 14:36:50 -04:00
|
|
|
RSSFormat = Format{
|
2017-03-05 12:23:00 -05:00
|
|
|
Name: "RSS",
|
|
|
|
MediaType: media.RSSType,
|
2017-03-07 08:20:39 -05:00
|
|
|
BaseName: "index",
|
2017-03-09 13:19:29 -05:00
|
|
|
NoUgly: true,
|
2017-03-22 04:54:56 -04:00
|
|
|
Rel: "alternate",
|
2017-03-05 12:23:00 -05:00
|
|
|
}
|
2018-03-10 05:45:29 -05:00
|
|
|
|
|
|
|
SitemapFormat = Format{
|
|
|
|
Name: "Sitemap",
|
|
|
|
MediaType: media.XMLType,
|
|
|
|
BaseName: "sitemap",
|
|
|
|
NoUgly: true,
|
|
|
|
Rel: "sitemap",
|
|
|
|
}
|
2017-03-05 12:23:00 -05:00
|
|
|
)
|
|
|
|
|
2018-09-06 18:00:19 -04:00
|
|
|
// DefaultFormats contains the default output formats supported by Hugo.
|
2017-04-03 11:00:23 -04:00
|
|
|
var DefaultFormats = Formats{
|
|
|
|
AMPFormat,
|
|
|
|
CalendarFormat,
|
|
|
|
CSSFormat,
|
|
|
|
CSVFormat,
|
|
|
|
HTMLFormat,
|
|
|
|
JSONFormat,
|
2018-03-10 05:45:29 -05:00
|
|
|
RobotsTxtFormat,
|
2017-04-03 11:00:23 -04:00
|
|
|
RSSFormat,
|
2018-03-10 05:45:29 -05:00
|
|
|
SitemapFormat,
|
2017-04-03 11:00:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
sort.Sort(DefaultFormats)
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2018-09-06 18:00:19 -04:00
|
|
|
// Formats is a slice of Format.
|
2017-03-16 03:32:14 -04:00
|
|
|
type Formats []Format
|
2017-03-06 07:40:06 -05:00
|
|
|
|
2019-05-02 03:54:26 -04:00
|
|
|
func (formats Formats) Len() int { return len(formats) }
|
|
|
|
func (formats Formats) Swap(i, j int) { formats[i], formats[j] = formats[j], formats[i] }
|
|
|
|
func (formats Formats) Less(i, j int) bool {
|
|
|
|
fi, fj := formats[i], formats[j]
|
|
|
|
if fi.Weight == fj.Weight {
|
|
|
|
return fi.Name < fj.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
if fj.Weight == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return fi.Weight > 0 && fi.Weight < fj.Weight
|
|
|
|
|
|
|
|
}
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
// GetBySuffix gets a output format given as suffix, e.g. "html".
|
|
|
|
// It will return false if no format could be found, or if the suffix given
|
|
|
|
// is ambiguous.
|
|
|
|
// The lookup is case insensitive.
|
|
|
|
func (formats Formats) GetBySuffix(suffix string) (f Format, found bool) {
|
2017-03-24 11:54:37 -04:00
|
|
|
for _, ff := range formats {
|
2018-07-10 05:55:22 -04:00
|
|
|
if strings.EqualFold(suffix, ff.MediaType.Suffix()) {
|
2017-04-03 11:00:23 -04:00
|
|
|
if found {
|
|
|
|
// ambiguous
|
|
|
|
found = false
|
|
|
|
return
|
|
|
|
}
|
2017-03-24 11:54:37 -04:00
|
|
|
f = ff
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
// GetByName gets a format by its identifier name.
|
|
|
|
func (formats Formats) GetByName(name string) (f Format, found bool) {
|
2017-03-27 14:43:49 -04:00
|
|
|
for _, ff := range formats {
|
2017-04-03 11:00:23 -04:00
|
|
|
if strings.EqualFold(name, ff.Name) {
|
2017-03-27 14:43:49 -04:00
|
|
|
f = ff
|
|
|
|
found = true
|
2017-04-03 11:00:23 -04:00
|
|
|
return
|
2017-03-27 14:43:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
// GetByNames gets a list of formats given a list of identifiers.
|
|
|
|
func (formats Formats) GetByNames(names ...string) (Formats, error) {
|
|
|
|
var types []Format
|
|
|
|
|
|
|
|
for _, name := range names {
|
|
|
|
tpe, ok := formats.GetByName(name)
|
|
|
|
if !ok {
|
|
|
|
return types, fmt.Errorf("OutputFormat with key %q not found", name)
|
|
|
|
}
|
|
|
|
types = append(types, tpe)
|
|
|
|
}
|
|
|
|
return types, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromFilename gets a Format given a filename.
|
2017-03-27 14:43:49 -04:00
|
|
|
func (formats Formats) FromFilename(filename string) (f Format, found bool) {
|
|
|
|
// mytemplate.amp.html
|
|
|
|
// mytemplate.html
|
|
|
|
// mytemplate
|
|
|
|
var ext, outFormat string
|
|
|
|
|
|
|
|
parts := strings.Split(filename, ".")
|
|
|
|
if len(parts) > 2 {
|
|
|
|
outFormat = parts[1]
|
|
|
|
ext = parts[2]
|
|
|
|
} else if len(parts) > 1 {
|
|
|
|
ext = parts[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
if outFormat != "" {
|
|
|
|
return formats.GetByName(outFormat)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ext != "" {
|
2017-06-20 11:20:08 -04:00
|
|
|
f, found = formats.GetBySuffix(ext)
|
|
|
|
if !found && len(parts) == 2 {
|
|
|
|
// For extensionless output formats (e.g. Netlify's _redirects)
|
|
|
|
// we must fall back to using the extension as format lookup.
|
|
|
|
f, found = formats.GetByName(ext)
|
|
|
|
}
|
2017-03-27 14:43:49 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-03 16:39:37 -04:00
|
|
|
// DecodeFormats takes a list of output format configurations and merges those,
|
2017-04-06 09:28:56 -04:00
|
|
|
// in the order given, with the Hugo defaults as the last resort.
|
2017-04-03 16:39:37 -04:00
|
|
|
func DecodeFormats(mediaTypes media.Types, maps ...map[string]interface{}) (Formats, error) {
|
2017-04-03 11:00:23 -04:00
|
|
|
f := make(Formats, len(DefaultFormats))
|
|
|
|
copy(f, DefaultFormats)
|
2017-03-22 04:54:56 -04:00
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
for _, m := range maps {
|
|
|
|
for k, v := range m {
|
|
|
|
found := false
|
|
|
|
for i, vv := range f {
|
|
|
|
if strings.EqualFold(k, vv.Name) {
|
|
|
|
// Merge it with the existing
|
|
|
|
if err := decode(mediaTypes, v, &f[i]); err != nil {
|
|
|
|
return f, err
|
|
|
|
}
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
var newOutFormat Format
|
|
|
|
newOutFormat.Name = k
|
|
|
|
if err := decode(mediaTypes, v, &newOutFormat); err != nil {
|
|
|
|
return f, err
|
|
|
|
}
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-04-07 04:43:48 -04:00
|
|
|
// We need values for these
|
|
|
|
if newOutFormat.BaseName == "" {
|
|
|
|
newOutFormat.BaseName = "index"
|
|
|
|
}
|
|
|
|
if newOutFormat.Rel == "" {
|
|
|
|
newOutFormat.Rel = "alternate"
|
|
|
|
}
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
f = append(f, newOutFormat)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
sort.Sort(f)
|
2017-03-24 06:25:25 -04:00
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
return f, nil
|
2017-03-05 12:23:00 -05:00
|
|
|
}
|
2017-03-08 07:45:33 -05:00
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
func decode(mediaTypes media.Types, input, output interface{}) error {
|
|
|
|
config := &mapstructure.DecoderConfig{
|
|
|
|
Metadata: nil,
|
|
|
|
Result: output,
|
|
|
|
WeaklyTypedInput: true,
|
|
|
|
DecodeHook: func(a reflect.Type, b reflect.Type, c interface{}) (interface{}, error) {
|
|
|
|
if a.Kind() == reflect.Map {
|
|
|
|
dataVal := reflect.Indirect(reflect.ValueOf(c))
|
|
|
|
for _, key := range dataVal.MapKeys() {
|
|
|
|
keyStr, ok := key.Interface().(string)
|
|
|
|
if !ok {
|
|
|
|
// Not a string key
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if strings.EqualFold(keyStr, "mediaType") {
|
|
|
|
// If mediaType is a string, look it up and replace it
|
|
|
|
// in the map.
|
|
|
|
vv := dataVal.MapIndex(key)
|
|
|
|
if mediaTypeStr, ok := vv.Interface().(string); ok {
|
|
|
|
mediaType, found := mediaTypes.GetByType(mediaTypeStr)
|
|
|
|
if !found {
|
|
|
|
return c, fmt.Errorf("media type %q not found", mediaTypeStr)
|
|
|
|
}
|
|
|
|
dataVal.SetMapIndex(key, reflect.ValueOf(mediaType))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return c, nil
|
|
|
|
},
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
decoder, err := mapstructure.NewDecoder(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
return decoder.Decode(input)
|
2017-03-08 07:45:33 -05:00
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2018-09-06 21:40:37 -04:00
|
|
|
// BaseFilename returns the base filename of f including an extension (ie.
|
|
|
|
// "index.xml").
|
|
|
|
func (f Format) BaseFilename() string {
|
|
|
|
return f.BaseName + f.MediaType.FullSuffix()
|
2017-04-05 10:18:53 -04:00
|
|
|
}
|
|
|
|
|
2018-09-06 21:40:37 -04:00
|
|
|
// MarshalJSON returns the JSON encoding of f.
|
|
|
|
func (f Format) MarshalJSON() ([]byte, error) {
|
2017-04-05 10:18:53 -04:00
|
|
|
type Alias Format
|
|
|
|
return json.Marshal(&struct {
|
|
|
|
MediaType string
|
|
|
|
Alias
|
|
|
|
}{
|
2018-09-06 21:40:37 -04:00
|
|
|
MediaType: f.MediaType.String(),
|
|
|
|
Alias: (Alias)(f),
|
2017-04-05 10:18:53 -04:00
|
|
|
})
|
2017-03-09 13:19:29 -05:00
|
|
|
}
|