2017-03-07 08:20:39 -05:00
|
|
|
// Copyright 2017-present 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.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2017-03-22 06:34:17 -04:00
|
|
|
"fmt"
|
2017-03-09 13:19:29 -05:00
|
|
|
"path"
|
2017-03-07 08:20:39 -05:00
|
|
|
"strings"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/config"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
|
|
"github.com/gohugoio/hugo/output"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/cast"
|
2017-03-07 08:20:39 -05:00
|
|
|
)
|
|
|
|
|
2017-04-04 03:12:33 -04:00
|
|
|
func createSiteOutputFormats(allFormats output.Formats, cfg config.Provider) (map[string]output.Formats, error) {
|
2017-03-22 06:34:17 -04:00
|
|
|
if !cfg.IsSet("outputs") {
|
2017-05-17 11:04:07 -04:00
|
|
|
return createDefaultOutputFormats(allFormats, cfg)
|
2017-03-22 06:34:17 -04:00
|
|
|
}
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
outFormats := make(map[string]output.Formats)
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
outputs := cfg.GetStringMap("outputs")
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
if outputs == nil || len(outputs) == 0 {
|
|
|
|
return outFormats, nil
|
|
|
|
}
|
2017-03-07 08:20:39 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
for k, v := range outputs {
|
|
|
|
var formats output.Formats
|
|
|
|
vals := cast.ToStringSlice(v)
|
|
|
|
for _, format := range vals {
|
2017-04-04 03:12:33 -04:00
|
|
|
f, found := allFormats.GetByName(format)
|
2017-03-22 06:34:17 -04:00
|
|
|
if !found {
|
|
|
|
return nil, fmt.Errorf("Failed to resolve output format %q from site config", format)
|
|
|
|
}
|
|
|
|
formats = append(formats, f)
|
2017-03-07 08:20:39 -05:00
|
|
|
}
|
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
if len(formats) > 0 {
|
|
|
|
outFormats[k] = formats
|
|
|
|
}
|
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
// Make sure every kind has at least one output format
|
|
|
|
for _, kind := range allKinds {
|
|
|
|
if _, found := outFormats[kind]; !found {
|
2017-03-25 14:36:50 -04:00
|
|
|
outFormats[kind] = output.Formats{output.HTMLFormat}
|
2017-03-22 06:34:17 -04:00
|
|
|
}
|
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
return outFormats, nil
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-05-17 11:04:07 -04:00
|
|
|
func createDefaultOutputFormats(allFormats output.Formats, cfg config.Provider) (map[string]output.Formats, error) {
|
2017-03-22 06:34:17 -04:00
|
|
|
outFormats := make(map[string]output.Formats)
|
2017-05-17 11:04:07 -04:00
|
|
|
rssOut, _ := allFormats.GetByName(output.RSSFormat.Name)
|
|
|
|
htmlOut, _ := allFormats.GetByName(output.HTMLFormat.Name)
|
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
for _, kind := range allKinds {
|
|
|
|
var formats output.Formats
|
|
|
|
// All have HTML
|
2017-05-17 11:04:07 -04:00
|
|
|
formats = append(formats, htmlOut)
|
2017-03-22 06:34:17 -04:00
|
|
|
|
|
|
|
// All but page have RSS
|
|
|
|
if kind != KindPage {
|
2017-04-08 04:45:11 -04:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
rssBase := cfg.GetString("rssURI")
|
2017-04-10 15:26:55 -04:00
|
|
|
if rssBase == "" || rssBase == "index.xml" {
|
2017-05-17 11:04:07 -04:00
|
|
|
rssBase = rssOut.BaseName
|
2017-04-08 04:45:11 -04:00
|
|
|
} else {
|
|
|
|
// Remove in Hugo 0.22.
|
2017-04-10 15:26:55 -04:00
|
|
|
helpers.Deprecated("Site config", "rssURI", "Set baseName in outputFormats.RSS", false)
|
2017-04-08 04:45:11 -04:00
|
|
|
// RSS has now a well defined media type, so strip any suffix provided
|
|
|
|
rssBase = strings.TrimSuffix(rssBase, path.Ext(rssBase))
|
2017-03-22 06:34:17 -04:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:04:07 -04:00
|
|
|
rssOut.BaseName = rssBase
|
|
|
|
formats = append(formats, rssOut)
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
outFormats[kind] = formats
|
|
|
|
}
|
2017-03-09 13:19:29 -05:00
|
|
|
|
2017-03-22 06:34:17 -04:00
|
|
|
return outFormats, nil
|
2017-03-09 13:19:29 -05:00
|
|
|
}
|