2019-01-02 06:33:26 -05:00
// Copyright 2019 The Hugo Authors. All rights reserved.
2015-12-10 17:19:38 -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.
2019-01-02 06:33:26 -05:00
package config
2014-05-06 06:50:23 -04:00
2014-05-06 11:02:56 -04:00
import (
2022-05-02 10:07:52 -04:00
"fmt"
2023-05-21 08:25:16 -04:00
"regexp"
2020-03-08 11:33:15 -04:00
"sort"
2020-03-03 02:32:02 -05:00
"strings"
2023-06-16 02:17:42 -04:00
"github.com/bep/logg"
2023-05-21 08:25:16 -04:00
"github.com/gobwas/glob"
"github.com/gohugoio/hugo/common/loggers"
2020-03-08 11:33:15 -04:00
"github.com/gohugoio/hugo/common/types"
2020-03-03 02:32:02 -05:00
"github.com/gohugoio/hugo/common/herrors"
"github.com/mitchellh/mapstructure"
2014-05-06 11:02:56 -04:00
"github.com/spf13/cast"
)
2014-05-06 06:50:23 -04:00
2023-01-04 12:24:36 -05:00
type BaseConfig struct {
WorkingDir string
CacheDir string
ThemesDir string
PublishDir string
}
type CommonDirs struct {
// The directory where Hugo will look for themes.
ThemesDir string
// Where to put the generated files.
PublishDir string
// The directory to put the generated resources files. This directory should in most situations be considered temporary
// and not be committed to version control. But there may be cached content in here that you want to keep,
// e.g. resources/_gen/images for performance reasons or CSS built from SASS when your CI server doesn't have the full setup.
ResourceDir string
// The project root directory.
WorkingDir string
// The root directory for all cache files.
CacheDir string
// The content source directory.
// Deprecated: Use module mounts.
ContentDir string
// Deprecated: Use module mounts.
// The data source directory.
DataDir string
// Deprecated: Use module mounts.
// The layout source directory.
LayoutDir string
// Deprecated: Use module mounts.
// The i18n source directory.
I18nDir string
// Deprecated: Use module mounts.
// The archetypes source directory.
ArcheTypeDir string
// Deprecated: Use module mounts.
// The assets source directory.
AssetDir string
}
type LoadConfigResult struct {
Cfg Provider
ConfigFiles [ ] string
BaseConfig BaseConfig
}
2023-05-21 08:25:16 -04:00
var defaultBuild = BuildConfig {
2020-03-03 02:32:02 -05:00
UseResourceCacheWhen : "fallback" ,
2023-07-01 04:37:38 -04:00
WriteStats : WriteStats { } ,
2023-05-21 08:25:16 -04:00
CacheBusters : [ ] CacheBuster {
{
Source : ` assets/.*\.(js|ts|jsx|tsx) ` ,
Target : ` (js|scripts|javascript) ` ,
} ,
{
Source : ` assets/.*\.(css|sass|scss)$ ` ,
Target : cssTargetCachebusterRe ,
} ,
{
Source : ` (postcss|tailwind)\.config\.js ` ,
Target : cssTargetCachebusterRe ,
} ,
2023-05-22 13:11:12 -04:00
// This is deliberately coarse grained; it will cache bust resources with "json" in the cache key when js files changes, which is good.
2023-05-21 08:25:16 -04:00
{
Source : ` assets/.*\.(.*)$ ` ,
Target : ` $1 ` ,
} ,
} ,
2020-03-03 02:32:02 -05:00
}
2023-01-04 12:24:36 -05:00
// BuildConfig holds some build related configuration.
type BuildConfig struct {
2020-03-03 02:32:02 -05:00
UseResourceCacheWhen string // never, fallback, always. Default is fallback
2020-03-03 06:25:03 -05:00
// When enabled, will collect and write a hugo_stats.json with some build
// related aggregated data (e.g. CSS class names).
2023-07-01 04:37:38 -04:00
// Note that this was a bool <= v0.115.0.
WriteStats WriteStats
2020-10-05 07:34:14 -04:00
2023-05-22 13:11:12 -04:00
// Can be used to toggle off writing of the IntelliSense /assets/jsconfig.js
2020-10-05 07:34:14 -04:00
// file.
NoJSConfigInAssets bool
2023-05-21 08:25:16 -04:00
// Can used to control how the resource cache gets evicted on rebuilds.
CacheBusters [ ] CacheBuster
}
2023-07-01 04:37:38 -04:00
// WriteStats configures what to write to the hugo_stats.json file.
type WriteStats struct {
Tags bool
Classes bool
IDs bool
}
func ( w WriteStats ) Enabled ( ) bool {
return w . Tags || w . Classes || w . IDs
}
2023-05-21 08:25:16 -04:00
func ( b BuildConfig ) clone ( ) BuildConfig {
b . CacheBusters = append ( [ ] CacheBuster { } , b . CacheBusters ... )
return b
2020-03-03 02:32:02 -05:00
}
2023-01-04 12:24:36 -05:00
func ( b BuildConfig ) UseResourceCache ( err error ) bool {
2020-03-03 02:32:02 -05:00
if b . UseResourceCacheWhen == "never" {
return false
}
if b . UseResourceCacheWhen == "fallback" {
return err == herrors . ErrFeatureNotAvailable
}
return true
}
2023-05-21 08:25:16 -04:00
// MatchCacheBuster returns the cache buster for the given path p, nil if none.
func ( s BuildConfig ) MatchCacheBuster ( logger loggers . Logger , p string ) ( func ( string ) bool , error ) {
var matchers [ ] func ( string ) bool
for _ , cb := range s . CacheBusters {
if matcher := cb . compiledSource ( p ) ; matcher != nil {
matchers = append ( matchers , matcher )
}
}
if len ( matchers ) > 0 {
return ( func ( cacheKey string ) bool {
for _ , m := range matchers {
if m ( cacheKey ) {
return true
}
}
return false
} ) , nil
}
return nil , nil
}
func ( b * BuildConfig ) CompileConfig ( logger loggers . Logger ) error {
for i , cb := range b . CacheBusters {
if err := cb . CompileConfig ( logger ) ; err != nil {
return fmt . Errorf ( "failed to compile cache buster %q: %w" , cb . Source , err )
}
b . CacheBusters [ i ] = cb
}
return nil
}
2023-01-04 12:24:36 -05:00
func DecodeBuildConfig ( cfg Provider ) BuildConfig {
2020-03-03 02:32:02 -05:00
m := cfg . GetStringMap ( "build" )
2023-07-01 04:37:38 -04:00
2023-05-21 08:25:16 -04:00
b := defaultBuild . clone ( )
2020-03-03 02:32:02 -05:00
if m == nil {
return b
}
2023-07-01 04:37:38 -04:00
// writeStats was a bool <= v0.115.0.
if writeStats , ok := m [ "writestats" ] ; ok {
if bb , ok := writeStats . ( bool ) ; ok {
m [ "writestats" ] = WriteStats {
Tags : bb ,
Classes : bb ,
IDs : bb ,
}
}
}
2020-03-03 02:32:02 -05:00
err := mapstructure . WeakDecode ( m , & b )
if err != nil {
2023-07-01 04:37:38 -04:00
return b
2020-03-03 02:32:02 -05:00
}
b . UseResourceCacheWhen = strings . ToLower ( b . UseResourceCacheWhen )
when := b . UseResourceCacheWhen
if when != "never" && when != "always" && when != "fallback" {
b . UseResourceCacheWhen = "fallback"
}
return b
}
2023-01-04 12:24:36 -05:00
// SitemapConfig configures the sitemap to be generated.
type SitemapConfig struct {
// The page change frequency.
2014-05-06 06:50:23 -04:00
ChangeFreq string
2023-01-04 12:24:36 -05:00
// The priority of the page.
Priority float64
// The sitemap filename.
Filename string
}
2014-05-06 11:02:56 -04:00
2023-01-04 12:24:36 -05:00
func DecodeSitemap ( prototype SitemapConfig , input map [ string ] any ) ( SitemapConfig , error ) {
err := mapstructure . WeakDecode ( input , & prototype )
return prototype , err
2014-05-06 06:50:23 -04:00
}
2020-03-08 11:33:15 -04:00
// Config for the dev server.
type Server struct {
2020-05-27 07:50:13 -04:00
Headers [ ] Headers
Redirects [ ] Redirect
2020-03-08 11:33:15 -04:00
2020-05-27 07:50:13 -04:00
compiledHeaders [ ] glob . Glob
compiledRedirects [ ] glob . Glob
2020-03-08 11:33:15 -04:00
}
2023-05-21 08:25:16 -04:00
func ( s * Server ) CompileConfig ( logger loggers . Logger ) error {
2023-01-04 12:24:36 -05:00
if s . compiledHeaders != nil {
return nil
}
for _ , h := range s . Headers {
s . compiledHeaders = append ( s . compiledHeaders , glob . MustCompile ( h . For ) )
}
for _ , r := range s . Redirects {
s . compiledRedirects = append ( s . compiledRedirects , glob . MustCompile ( r . From ) )
}
2023-05-21 08:25:16 -04:00
2023-01-04 12:24:36 -05:00
return nil
2020-05-27 07:50:13 -04:00
}
2020-03-08 11:33:15 -04:00
2020-05-27 07:50:13 -04:00
func ( s * Server ) MatchHeaders ( pattern string ) [ ] types . KeyValueStr {
if s . compiledHeaders == nil {
2020-03-08 11:33:15 -04:00
return nil
}
var matches [ ] types . KeyValueStr
2020-05-27 07:50:13 -04:00
for i , g := range s . compiledHeaders {
2020-03-08 11:33:15 -04:00
if g . Match ( pattern ) {
h := s . Headers [ i ]
for k , v := range h . Values {
matches = append ( matches , types . KeyValueStr { Key : k , Value : cast . ToString ( v ) } )
}
}
}
sort . Slice ( matches , func ( i , j int ) bool {
return matches [ i ] . Key < matches [ j ] . Key
} )
return matches
}
2020-05-27 07:50:13 -04:00
func ( s * Server ) MatchRedirect ( pattern string ) Redirect {
if s . compiledRedirects == nil {
return Redirect { }
}
pattern = strings . TrimSuffix ( pattern , "index.html" )
for i , g := range s . compiledRedirects {
redir := s . Redirects [ i ]
// No redirect to self.
if redir . To == pattern {
return Redirect { }
}
if g . Match ( pattern ) {
return redir
}
}
return Redirect { }
}
2020-03-08 11:33:15 -04:00
type Headers struct {
For string
2022-03-17 17:03:27 -04:00
Values map [ string ] any
2020-03-08 11:33:15 -04:00
}
2020-05-27 07:50:13 -04:00
type Redirect struct {
2022-09-13 05:33:42 -04:00
From string
To string
// HTTP status code to use for the redirect.
// A status code of 200 will trigger a URL rewrite.
2020-05-27 07:50:13 -04:00
Status int
2022-09-13 05:33:42 -04:00
// Forcode redirect, even if original request path exists.
Force bool
2020-05-27 07:50:13 -04:00
}
2023-05-21 08:25:16 -04:00
// CacheBuster configures cache busting for assets.
type CacheBuster struct {
// Trigger for files matching this regexp.
Source string
// Cache bust targets matching this regexp.
// This regexp can contain group matches (e.g. $1) from the source regexp.
Target string
compiledSource func ( string ) func ( string ) bool
}
func ( c * CacheBuster ) CompileConfig ( logger loggers . Logger ) error {
if c . compiledSource != nil {
return nil
}
2023-06-16 02:17:42 -04:00
2023-05-21 08:25:16 -04:00
source := c . Source
target := c . Target
sourceRe , err := regexp . Compile ( source )
if err != nil {
return fmt . Errorf ( "failed to compile cache buster source %q: %w" , c . Source , err )
}
var compileErr error
2023-06-16 02:17:42 -04:00
debugl := logger . Logger ( ) . WithLevel ( logg . LevelDebug ) . WithField ( loggers . FieldNameCmd , "cachebuster" )
2023-05-21 08:25:16 -04:00
c . compiledSource = func ( s string ) func ( string ) bool {
m := sourceRe . FindStringSubmatch ( s )
matchString := "no match"
match := m != nil
if match {
matchString = "match!"
}
2023-06-16 02:17:42 -04:00
debugl . Logf ( "Matching %q with source %q: %s" , s , source , matchString )
2023-05-21 08:25:16 -04:00
if ! match {
return nil
}
groups := m [ 1 : ]
// Replace $1, $2 etc. in target.
for i , g := range groups {
target = strings . ReplaceAll ( target , fmt . Sprintf ( "$%d" , i + 1 ) , g )
}
targetRe , err := regexp . Compile ( target )
if err != nil {
compileErr = fmt . Errorf ( "failed to compile cache buster target %q: %w" , target , err )
return nil
}
return func ( s string ) bool {
match = targetRe . MatchString ( s )
matchString := "no match"
if match {
matchString = "match!"
}
2023-06-16 02:17:42 -04:00
logger . Debugf ( "Matching %q with target %q: %s" , s , target , matchString )
2023-05-21 08:25:16 -04:00
return match
}
}
return compileErr
}
2020-05-27 07:50:13 -04:00
func ( r Redirect ) IsZero ( ) bool {
return r . From == ""
}
2023-05-21 08:25:16 -04:00
const (
// Keep this a little coarse grained, some false positives are OK.
cssTargetCachebusterRe = ` (css|styles|scss|sass) `
)
2023-01-04 12:24:36 -05:00
func DecodeServer ( cfg Provider ) ( Server , error ) {
2020-03-08 11:33:15 -04:00
s := & Server { }
2023-01-04 12:24:36 -05:00
_ = mapstructure . WeakDecode ( cfg . GetStringMap ( "server" ) , s )
2020-05-27 07:50:13 -04:00
for i , redir := range s . Redirects {
2022-09-13 05:33:42 -04:00
// Get it in line with the Hugo server for OK responses.
// We currently treat the 404 as a special case, they are always "ugly", so keep them as is.
if redir . Status != 404 {
redir . To = strings . TrimSuffix ( redir . To , "index.html" )
if ! strings . HasPrefix ( redir . To , "https" ) && ! strings . HasSuffix ( redir . To , "/" ) {
// There are some tricky infinite loop situations when dealing
// when the target does not have a trailing slash.
// This can certainly be handled better, but not time for that now.
2023-01-04 12:24:36 -05:00
return Server { } , fmt . Errorf ( "unsupported redirect to value %q in server config; currently this must be either a remote destination or a local folder, e.g. \"/blog/\" or \"/blog/index.html\"" , redir . To )
2022-09-13 05:33:42 -04:00
}
2020-05-27 07:50:13 -04:00
}
s . Redirects [ i ] = redir
}
2022-09-13 05:33:42 -04:00
if len ( s . Redirects ) == 0 {
// Set up a default redirect for 404s.
s . Redirects = [ ] Redirect {
{
From : "**" ,
To : "/404.html" ,
Status : 404 ,
} ,
}
}
2023-01-04 12:24:36 -05:00
return * s , nil
2020-03-08 11:33:15 -04:00
}