mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
7285e74090
There are some breaking changes in this commit, see #11455. Closes #11455 Closes #11549 This fixes a set of bugs (see issue list) and it is also paying some technical debt accumulated over the years. We now build with Staticcheck enabled in the CI build. The performance should be about the same as before for regular sized Hugo sites, but it should perform and scale much better to larger data sets, as objects that uses lots of memory (e.g. rendered Markdown, big JSON files read into maps with transform.Unmarshal etc.) will now get automatically garbage collected if needed. Performance on partial rebuilds when running the server in fast render mode should be the same, but the change detection should be much more accurate. A list of the notable new features: * A new dependency tracker that covers (almost) all of Hugo's API and is used to do fine grained partial rebuilds when running the server. * A new and simpler tree document store which allows fast lookups and prefix-walking in all dimensions (e.g. language) concurrently. * You can now configure an upper memory limit allowing for much larger data sets and/or running on lower specced PCs. We have lifted the "no resources in sub folders" restriction for branch bundles (e.g. sections). Memory Limit * Hugos will, by default, set aside a quarter of the total system memory, but you can set this via the OS environment variable HUGO_MEMORYLIMIT (in gigabytes). This is backed by a partitioned LRU cache used throughout Hugo. A cache that gets dynamically resized in low memory situations, allowing Go's Garbage Collector to free the memory. New Dependency Tracker: Hugo has had a rule based coarse grained approach to server rebuilds that has worked mostly pretty well, but there have been some surprises (e.g. stale content). This is now revamped with a new dependency tracker that can quickly calculate the delta given a changed resource (e.g. a content file, template, JS file etc.). This handles transitive relations, e.g. $page -> js.Build -> JS import, or $page1.Content -> render hook -> site.GetPage -> $page2.Title, or $page1.Content -> shortcode -> partial -> site.RegularPages -> $page2.Content -> shortcode ..., and should also handle changes to aggregated values (e.g. site.Lastmod) effectively. This covers all of Hugo's API with 2 known exceptions (a list that may not be fully exhaustive): Changes to files loaded with template func os.ReadFile may not be handled correctly. We recommend loading resources with resources.Get Changes to Hugo objects (e.g. Page) passed in the template context to lang.Translate may not be detected correctly. We recommend having simple i18n templates without too much data context passed in other than simple types such as strings and numbers. Note that the cachebuster configuration (when A changes then rebuild B) works well with the above, but we recommend that you revise that configuration, as it in most situations should not be needed. One example where it is still needed is with TailwindCSS and using changes to hugo_stats.json to trigger new CSS rebuilds. Document Store: Previously, a little simplified, we split the document store (where we store pages and resources) in a tree per language. This worked pretty well, but the structure made some operations harder than they needed to be. We have now restructured it into one Radix tree for all languages. Internally the language is considered to be a dimension of that tree, and the tree can be viewed in all dimensions concurrently. This makes some operations re. language simpler (e.g. finding translations is just a slice range), but the idea is that it should also be relatively inexpensive to add more dimensions if needed (e.g. role). Fixes #10169 Fixes #10364 Fixes #10482 Fixes #10630 Fixes #10656 Fixes #10694 Fixes #10918 Fixes #11262 Fixes #11439 Fixes #11453 Fixes #11457 Fixes #11466 Fixes #11540 Fixes #11551 Fixes #11556 Fixes #11654 Fixes #11661 Fixes #11663 Fixes #11664 Fixes #11669 Fixes #11671 Fixes #11807 Fixes #11808 Fixes #11809 Fixes #11815 Fixes #11840 Fixes #11853 Fixes #11860 Fixes #11883 Fixes #11904 Fixes #7388 Fixes #7425 Fixes #7436 Fixes #7544 Fixes #7882 Fixes #7960 Fixes #8255 Fixes #8307 Fixes #8863 Fixes #8927 Fixes #9192 Fixes #9324
422 lines
11 KiB
Go
422 lines
11 KiB
Go
// Copyright 2019 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 pagemeta
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/gohugoio/hugo/common/htime"
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
"github.com/gohugoio/hugo/common/paths"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
|
|
"github.com/gohugoio/hugo/config"
|
|
"github.com/spf13/cast"
|
|
)
|
|
|
|
// FrontMatterHandler maps front matter into Page fields and .Params.
|
|
// Note that we currently have only extracted the date logic.
|
|
type FrontMatterHandler struct {
|
|
fmConfig FrontmatterConfig
|
|
|
|
dateHandler frontMatterFieldHandler
|
|
lastModHandler frontMatterFieldHandler
|
|
publishDateHandler frontMatterFieldHandler
|
|
expiryDateHandler frontMatterFieldHandler
|
|
|
|
// A map of all date keys configured, including any custom.
|
|
allDateKeys map[string]bool
|
|
|
|
logger loggers.Logger
|
|
}
|
|
|
|
// FrontMatterDescriptor describes how to handle front matter for a given Page.
|
|
// It has pointers to values in the receiving page which gets updated.
|
|
type FrontMatterDescriptor struct {
|
|
// This is the Page's params.
|
|
Params map[string]any
|
|
|
|
// This is the Page's base filename (BaseFilename), e.g. page.md., or
|
|
// if page is a leaf bundle, the bundle folder name (ContentBaseName).
|
|
BaseFilename string
|
|
|
|
// The content file's mod time.
|
|
ModTime time.Time
|
|
|
|
// May be set from the author date in Git.
|
|
GitAuthorDate time.Time
|
|
|
|
// The below are pointers to values on Page and will be modified.
|
|
|
|
// This is the Page's dates.
|
|
Dates *resource.Dates
|
|
|
|
// This is the Page's Slug etc.
|
|
PageURLs *URLPath
|
|
|
|
// The Location to use to parse dates without time zone info.
|
|
Location *time.Location
|
|
}
|
|
|
|
var dateFieldAliases = map[string][]string{
|
|
fmDate: {},
|
|
fmLastmod: {"modified"},
|
|
fmPubDate: {"pubdate", "published"},
|
|
fmExpiryDate: {"unpublishdate"},
|
|
}
|
|
|
|
// HandleDates updates all the dates given the current configuration and the
|
|
// supplied front matter params. Note that this requires all lower-case keys
|
|
// in the params map.
|
|
func (f FrontMatterHandler) HandleDates(d *FrontMatterDescriptor) error {
|
|
if d.Dates == nil {
|
|
panic("missing dates")
|
|
}
|
|
|
|
if f.dateHandler == nil {
|
|
panic("missing date handler")
|
|
}
|
|
|
|
if _, err := f.dateHandler(d); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := f.lastModHandler(d); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := f.publishDateHandler(d); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := f.expiryDateHandler(d); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// IsDateKey returns whether the given front matter key is considered a date by the current
|
|
// configuration.
|
|
func (f FrontMatterHandler) IsDateKey(key string) bool {
|
|
return f.allDateKeys[key]
|
|
}
|
|
|
|
// A Zero date is a signal that the name can not be parsed.
|
|
// This follows the format as outlined in Jekyll, https://jekyllrb.com/docs/posts/:
|
|
// "Where YEAR is a four-digit number, MONTH and DAY are both two-digit numbers"
|
|
func dateAndSlugFromBaseFilename(location *time.Location, name string) (time.Time, string) {
|
|
withoutExt, _ := paths.FileAndExt(name)
|
|
|
|
if len(withoutExt) < 10 {
|
|
// This can not be a date.
|
|
return time.Time{}, ""
|
|
}
|
|
|
|
d, err := htime.ToTimeInDefaultLocationE(withoutExt[:10], location)
|
|
if err != nil {
|
|
return time.Time{}, ""
|
|
}
|
|
|
|
// Be a little lenient with the format here.
|
|
slug := strings.Trim(withoutExt[10:], " -_")
|
|
|
|
return d, slug
|
|
}
|
|
|
|
type frontMatterFieldHandler func(d *FrontMatterDescriptor) (bool, error)
|
|
|
|
func (f FrontMatterHandler) newChainedFrontMatterFieldHandler(handlers ...frontMatterFieldHandler) frontMatterFieldHandler {
|
|
return func(d *FrontMatterDescriptor) (bool, error) {
|
|
for _, h := range handlers {
|
|
// First successful handler wins.
|
|
success, err := h(d)
|
|
if err != nil {
|
|
f.logger.Errorln(err)
|
|
} else if success {
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
type FrontmatterConfig struct {
|
|
// Controls how the Date is set from front matter.
|
|
Date []string
|
|
// Controls how the Lastmod is set from front matter.
|
|
Lastmod []string
|
|
// Controls how the PublishDate is set from front matter.
|
|
PublishDate []string
|
|
// Controls how the ExpiryDate is set from front matter.
|
|
ExpiryDate []string
|
|
}
|
|
|
|
const (
|
|
// These are all the date handler identifiers
|
|
// All identifiers not starting with a ":" maps to a front matter parameter.
|
|
fmDate = "date"
|
|
fmPubDate = "publishdate"
|
|
fmLastmod = "lastmod"
|
|
fmExpiryDate = "expirydate"
|
|
|
|
// Gets date from filename, e.g 218-02-22-mypage.md
|
|
fmFilename = ":filename"
|
|
|
|
// Gets date from file OS mod time.
|
|
fmModTime = ":filemodtime"
|
|
|
|
// Gets date from Git
|
|
fmGitAuthorDate = ":git"
|
|
)
|
|
|
|
// This is the config you get when doing nothing.
|
|
func newDefaultFrontmatterConfig() FrontmatterConfig {
|
|
return FrontmatterConfig{
|
|
Date: []string{fmDate, fmPubDate, fmLastmod},
|
|
Lastmod: []string{fmGitAuthorDate, fmLastmod, fmDate, fmPubDate},
|
|
PublishDate: []string{fmPubDate, fmDate},
|
|
ExpiryDate: []string{fmExpiryDate},
|
|
}
|
|
}
|
|
|
|
func DecodeFrontMatterConfig(cfg config.Provider) (FrontmatterConfig, error) {
|
|
c := newDefaultFrontmatterConfig()
|
|
defaultConfig := c
|
|
|
|
if cfg.IsSet("frontmatter") {
|
|
fm := cfg.GetStringMap("frontmatter")
|
|
for k, v := range fm {
|
|
loki := strings.ToLower(k)
|
|
switch loki {
|
|
case fmDate:
|
|
c.Date = toLowerSlice(v)
|
|
case fmPubDate:
|
|
c.PublishDate = toLowerSlice(v)
|
|
case fmLastmod:
|
|
c.Lastmod = toLowerSlice(v)
|
|
case fmExpiryDate:
|
|
c.ExpiryDate = toLowerSlice(v)
|
|
}
|
|
}
|
|
}
|
|
|
|
expander := func(c, d []string) []string {
|
|
out := expandDefaultValues(c, d)
|
|
out = addDateFieldAliases(out)
|
|
return out
|
|
}
|
|
|
|
c.Date = expander(c.Date, defaultConfig.Date)
|
|
c.PublishDate = expander(c.PublishDate, defaultConfig.PublishDate)
|
|
c.Lastmod = expander(c.Lastmod, defaultConfig.Lastmod)
|
|
c.ExpiryDate = expander(c.ExpiryDate, defaultConfig.ExpiryDate)
|
|
|
|
return c, nil
|
|
}
|
|
|
|
func addDateFieldAliases(values []string) []string {
|
|
var complete []string
|
|
|
|
for _, v := range values {
|
|
complete = append(complete, v)
|
|
if aliases, found := dateFieldAliases[v]; found {
|
|
complete = append(complete, aliases...)
|
|
}
|
|
}
|
|
return helpers.UniqueStringsReuse(complete)
|
|
}
|
|
|
|
func expandDefaultValues(values []string, defaults []string) []string {
|
|
var out []string
|
|
for _, v := range values {
|
|
if v == ":default" {
|
|
out = append(out, defaults...)
|
|
} else {
|
|
out = append(out, v)
|
|
}
|
|
}
|
|
return out
|
|
}
|
|
|
|
func toLowerSlice(in any) []string {
|
|
out := cast.ToStringSlice(in)
|
|
for i := 0; i < len(out); i++ {
|
|
out[i] = strings.ToLower(out[i])
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
// NewFrontmatterHandler creates a new FrontMatterHandler with the given logger and configuration.
|
|
// If no logger is provided, one will be created.
|
|
func NewFrontmatterHandler(logger loggers.Logger, frontMatterConfig FrontmatterConfig) (FrontMatterHandler, error) {
|
|
if logger == nil {
|
|
logger = loggers.NewDefault()
|
|
}
|
|
|
|
allDateKeys := make(map[string]bool)
|
|
addKeys := func(vals []string) {
|
|
for _, k := range vals {
|
|
if !strings.HasPrefix(k, ":") {
|
|
allDateKeys[k] = true
|
|
}
|
|
}
|
|
}
|
|
|
|
addKeys(frontMatterConfig.Date)
|
|
addKeys(frontMatterConfig.ExpiryDate)
|
|
addKeys(frontMatterConfig.Lastmod)
|
|
addKeys(frontMatterConfig.PublishDate)
|
|
|
|
f := FrontMatterHandler{logger: logger, fmConfig: frontMatterConfig, allDateKeys: allDateKeys}
|
|
|
|
if err := f.createHandlers(); err != nil {
|
|
return f, err
|
|
}
|
|
|
|
return f, nil
|
|
}
|
|
|
|
func (f *FrontMatterHandler) createHandlers() error {
|
|
var err error
|
|
|
|
if f.dateHandler, err = f.createDateHandler(f.fmConfig.Date,
|
|
func(d *FrontMatterDescriptor, t time.Time) {
|
|
d.Dates.FDate = t
|
|
setParamIfNotSet(fmDate, t, d)
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if f.lastModHandler, err = f.createDateHandler(f.fmConfig.Lastmod,
|
|
func(d *FrontMatterDescriptor, t time.Time) {
|
|
setParamIfNotSet(fmLastmod, t, d)
|
|
d.Dates.FLastmod = t
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if f.publishDateHandler, err = f.createDateHandler(f.fmConfig.PublishDate,
|
|
func(d *FrontMatterDescriptor, t time.Time) {
|
|
setParamIfNotSet(fmPubDate, t, d)
|
|
d.Dates.FPublishDate = t
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if f.expiryDateHandler, err = f.createDateHandler(f.fmConfig.ExpiryDate,
|
|
func(d *FrontMatterDescriptor, t time.Time) {
|
|
setParamIfNotSet(fmExpiryDate, t, d)
|
|
d.Dates.FExpiryDate = t
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func setParamIfNotSet(key string, value any, d *FrontMatterDescriptor) {
|
|
if _, found := d.Params[key]; found {
|
|
return
|
|
}
|
|
d.Params[key] = value
|
|
}
|
|
|
|
func (f FrontMatterHandler) createDateHandler(identifiers []string, setter func(d *FrontMatterDescriptor, t time.Time)) (frontMatterFieldHandler, error) {
|
|
var h *frontmatterFieldHandlers
|
|
var handlers []frontMatterFieldHandler
|
|
|
|
for _, identifier := range identifiers {
|
|
switch identifier {
|
|
case fmFilename:
|
|
handlers = append(handlers, h.newDateFilenameHandler(setter))
|
|
case fmModTime:
|
|
handlers = append(handlers, h.newDateModTimeHandler(setter))
|
|
case fmGitAuthorDate:
|
|
handlers = append(handlers, h.newDateGitAuthorDateHandler(setter))
|
|
default:
|
|
handlers = append(handlers, h.newDateFieldHandler(identifier, setter))
|
|
}
|
|
}
|
|
|
|
return f.newChainedFrontMatterFieldHandler(handlers...), nil
|
|
}
|
|
|
|
type frontmatterFieldHandlers int
|
|
|
|
func (f *frontmatterFieldHandlers) newDateFieldHandler(key string, setter func(d *FrontMatterDescriptor, t time.Time)) frontMatterFieldHandler {
|
|
return func(d *FrontMatterDescriptor) (bool, error) {
|
|
v, found := d.Params[key]
|
|
|
|
if !found {
|
|
return false, nil
|
|
}
|
|
|
|
date, err := htime.ToTimeInDefaultLocationE(v, d.Location)
|
|
if err != nil {
|
|
return false, nil
|
|
}
|
|
|
|
// We map several date keys to one, so, for example,
|
|
// "expirydate", "unpublishdate" will all set .ExpiryDate (first found).
|
|
setter(d, date)
|
|
|
|
// This is the params key as set in front matter.
|
|
d.Params[key] = date
|
|
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
func (f *frontmatterFieldHandlers) newDateFilenameHandler(setter func(d *FrontMatterDescriptor, t time.Time)) frontMatterFieldHandler {
|
|
return func(d *FrontMatterDescriptor) (bool, error) {
|
|
date, slug := dateAndSlugFromBaseFilename(d.Location, d.BaseFilename)
|
|
if date.IsZero() {
|
|
return false, nil
|
|
}
|
|
|
|
setter(d, date)
|
|
|
|
if _, found := d.Params["slug"]; !found {
|
|
// Use slug from filename
|
|
d.PageURLs.Slug = slug
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
func (f *frontmatterFieldHandlers) newDateModTimeHandler(setter func(d *FrontMatterDescriptor, t time.Time)) frontMatterFieldHandler {
|
|
return func(d *FrontMatterDescriptor) (bool, error) {
|
|
if d.ModTime.IsZero() {
|
|
return false, nil
|
|
}
|
|
setter(d, d.ModTime)
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
func (f *frontmatterFieldHandlers) newDateGitAuthorDateHandler(setter func(d *FrontMatterDescriptor, t time.Time)) frontMatterFieldHandler {
|
|
return func(d *FrontMatterDescriptor) (bool, error) {
|
|
if d.GitAuthorDate.IsZero() {
|
|
return false, nil
|
|
}
|
|
setter(d, d.GitAuthorDate)
|
|
return true, nil
|
|
}
|
|
}
|