mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
ee91c707ee
There are 2 fundamental changes related to alias handling in this PR: 1. the `Page.Aliases`` method returns a ready-to-use list of aliases, not the raw input data. This means that it's prefixed with correct dimension values (e.g. language code) and output format paths, and ready to use in e.g. Netlify's _redirects file. 2. We only render aliases for output formats that is both defined as `IsHTML` and `Permalinkable`. See #14402
1781 lines
43 KiB
Go
1781 lines
43 KiB
Go
// Copyright 2024 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 (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"maps"
|
|
"mime"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"slices"
|
|
"sort"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/bep/logg"
|
|
"github.com/gohugoio/go-radix"
|
|
"github.com/gohugoio/hugo/cache/dynacache"
|
|
"github.com/gohugoio/hugo/common/hmaps"
|
|
"github.com/gohugoio/hugo/common/hstore"
|
|
"github.com/gohugoio/hugo/common/hsync"
|
|
"github.com/gohugoio/hugo/common/htime"
|
|
"github.com/gohugoio/hugo/common/hugio"
|
|
"github.com/gohugoio/hugo/common/hugo"
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
"github.com/gohugoio/hugo/common/para"
|
|
"github.com/gohugoio/hugo/common/types"
|
|
"github.com/gohugoio/hugo/config"
|
|
"github.com/gohugoio/hugo/config/allconfig"
|
|
"github.com/gohugoio/hugo/deps"
|
|
"github.com/gohugoio/hugo/hugolib/doctree"
|
|
"github.com/gohugoio/hugo/hugolib/pagesfromdata"
|
|
"github.com/gohugoio/hugo/hugolib/roles"
|
|
"github.com/gohugoio/hugo/hugolib/sitesmatrix"
|
|
"github.com/gohugoio/hugo/hugolib/versions"
|
|
"github.com/gohugoio/hugo/internal/js/esbuild"
|
|
"github.com/gohugoio/hugo/internal/warpc"
|
|
"github.com/gohugoio/hugo/langs/i18n"
|
|
"github.com/gohugoio/hugo/modules"
|
|
"github.com/gohugoio/hugo/resources"
|
|
|
|
"github.com/gohugoio/hugo/tpl/tplimpl"
|
|
"github.com/gohugoio/hugo/tpl/tplimplinit"
|
|
|
|
// Loads the template funcs namespaces.
|
|
|
|
"golang.org/x/text/unicode/norm"
|
|
|
|
"github.com/gohugoio/hugo/common/paths"
|
|
|
|
"github.com/gohugoio/hugo/identity"
|
|
|
|
"github.com/gohugoio/hugo/markup/converter/hooks"
|
|
|
|
"github.com/gohugoio/hugo/markup/converter"
|
|
|
|
"github.com/gohugoio/hugo/common/text"
|
|
|
|
"github.com/gohugoio/hugo/publisher"
|
|
|
|
"github.com/gohugoio/hugo/langs"
|
|
|
|
"github.com/gohugoio/hugo/resources/kinds"
|
|
"github.com/gohugoio/hugo/resources/page"
|
|
"github.com/gohugoio/hugo/resources/page/pagemeta"
|
|
"github.com/gohugoio/hugo/resources/page/siteidentities"
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
bp "github.com/gohugoio/hugo/bufferpool"
|
|
"github.com/gohugoio/hugo/helpers"
|
|
"github.com/gohugoio/hugo/navigation"
|
|
"github.com/gohugoio/hugo/output"
|
|
"github.com/gohugoio/hugo/tpl"
|
|
)
|
|
|
|
var _ page.Site = (*Site)(nil)
|
|
|
|
type siteState int
|
|
|
|
const (
|
|
siteStateInit siteState = iota
|
|
siteStateReady
|
|
)
|
|
|
|
type Site struct {
|
|
state siteState
|
|
conf *allconfig.Config
|
|
language *langs.Language
|
|
store *hstore.Scratch
|
|
siteWrapped page.Site
|
|
|
|
// The owning container.
|
|
h *HugoSites
|
|
|
|
*deps.Deps
|
|
*siteLanguageVersionRole
|
|
|
|
relatedDocsHandler *page.RelatedDocsHandler
|
|
|
|
publisher publisher.Publisher
|
|
frontmatterHandler pagemeta.FrontMatterHandler
|
|
}
|
|
|
|
func (s Site) cloneForVersionAndRole(version, role int) (*Site, error) {
|
|
s.siteLanguageVersionRole = s.siteLanguageVersionRole.cloneForVersionAndRole(version, role)
|
|
d, err := s.Deps.Clone(&s, s.Conf)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
s.Deps = d
|
|
ss := &s
|
|
ss.siteWrapped = page.WrapSite(ss)
|
|
return ss, nil
|
|
}
|
|
|
|
// For debugging purposes only.
|
|
func (s *Site) resolveDimensionNames() types.Strings3 {
|
|
return s.Conf.ConfiguredDimensions().ResolveNames(s.siteVector)
|
|
}
|
|
|
|
type siteLanguageVersionRole struct {
|
|
siteVector sitesmatrix.Vector
|
|
isDefaultLanguage bool
|
|
|
|
roleInternal roles.RoleInternal
|
|
role roles.Role
|
|
|
|
versionInternal versions.VersionInternal
|
|
version versions.Version
|
|
|
|
pageMap *pageMap
|
|
|
|
// Page navigation.
|
|
*pageFinder
|
|
siteRefLinker siteRefLinker
|
|
|
|
// Shortcut to the home page. Note that this may be nil if
|
|
// home page, for some odd reason, is disabled.
|
|
home *pageState
|
|
|
|
// The last modification date of this site.
|
|
lastmod time.Time
|
|
|
|
// Lazily loaded site dependencies
|
|
init *siteInit
|
|
|
|
// The output formats that we need to render this site in. This slice
|
|
// will be fixed once set.
|
|
// This will be the union of Site.Pages' outputFormats.
|
|
// This slice will be sorted.
|
|
renderFormats output.Formats
|
|
}
|
|
|
|
func (s siteLanguageVersionRole) cloneForVersionAndRole(version, role int) *siteLanguageVersionRole {
|
|
s.siteVector[sitesmatrix.Version] = version
|
|
s.siteVector[sitesmatrix.Role] = role
|
|
s.home = nil
|
|
s.lastmod = time.Time{}
|
|
s.init = &siteInit{}
|
|
return &s
|
|
}
|
|
|
|
func (s siteLanguageVersionRole) Role() roles.Role {
|
|
return s.role
|
|
}
|
|
|
|
func (s siteLanguageVersionRole) Version() versions.Version {
|
|
return s.version
|
|
}
|
|
|
|
func (s siteLanguageVersionRole) isDefault() bool {
|
|
return s.isDefaultLanguage && s.roleInternal.Default && s.versionInternal.Default
|
|
}
|
|
|
|
func (s *Site) Debug() {
|
|
fmt.Println("Debugging site", s.Lang(), "=>")
|
|
// fmt.Println(s.pageMap.testDump())
|
|
}
|
|
|
|
// NewHugoSites creates HugoSites from the given config.
|
|
func NewHugoSites(cfg deps.DepsCfg) (*HugoSites, error) {
|
|
conf := cfg.Configs.GetFirstLanguageConfig()
|
|
rolesSorted := cfg.Configs.Base.Roles.Config.Sorted
|
|
versionsSorted := cfg.Configs.Base.Versions.Config.Sorted
|
|
|
|
var (
|
|
poolSizeKatex = 2
|
|
poolSizeWebP = 1
|
|
)
|
|
if n := config.GetNumWorkerMultiplier(); n > 1 {
|
|
poolSizeKatex = min(n, 8)
|
|
poolSizeWebP = max(2, n/2)
|
|
}
|
|
|
|
var logger loggers.Logger
|
|
if cfg.TestLogger != nil {
|
|
logger = cfg.TestLogger
|
|
} else {
|
|
var logHookLast func(e *logg.Entry) error
|
|
if cfg.Configs.Base.PanicOnWarning {
|
|
logHookLast = loggers.PanicOnWarningHook
|
|
}
|
|
if cfg.StdOut == nil {
|
|
cfg.StdOut = os.Stdout
|
|
}
|
|
if cfg.StdErr == nil {
|
|
cfg.StdErr = os.Stderr
|
|
}
|
|
if cfg.LogLevel == 0 {
|
|
cfg.LogLevel = logg.LevelWarn
|
|
}
|
|
|
|
logOpts := loggers.Options{
|
|
Level: cfg.LogLevel,
|
|
DistinctLevel: logg.LevelWarn, // This will drop duplicate log warning and errors.
|
|
HandlerPost: logHookLast,
|
|
StdOut: cfg.StdOut,
|
|
StdErr: cfg.StdErr,
|
|
StoreErrors: conf.Watching(),
|
|
SuppressStatements: conf.IgnoredLogs(),
|
|
}
|
|
logger = loggers.New(logOpts)
|
|
|
|
}
|
|
|
|
memCache := dynacache.New(dynacache.Options{Watching: conf.Watching(), Log: logger})
|
|
|
|
var h *HugoSites
|
|
onSignalRebuild := func(ids ...identity.Identity) {
|
|
// This channel is buffered, but make sure we do this in a non-blocking way.
|
|
if cfg.ChangesFromBuild != nil {
|
|
go func() {
|
|
cfg.ChangesFromBuild <- ids
|
|
}()
|
|
}
|
|
}
|
|
|
|
compilationCacheDir := filepath.Join(conf.Dirs().CacheDir, "_warpc")
|
|
|
|
firstSiteDeps := &deps.Deps{
|
|
Fs: cfg.Fs,
|
|
Log: logger,
|
|
Conf: conf,
|
|
BuildState: &deps.BuildState{
|
|
OnSignalRebuild: onSignalRebuild,
|
|
},
|
|
Counters: &deps.Counters{},
|
|
MemCache: memCache,
|
|
TranslationProvider: i18n.NewTranslationProvider(),
|
|
WasmDispatchers: warpc.AllDispatchers(
|
|
// Katex options.
|
|
warpc.Options{
|
|
CompilationCacheDir: compilationCacheDir,
|
|
|
|
PoolSize: poolSizeKatex,
|
|
Infof: logger.InfoCommand("katex").Logf,
|
|
Warnf: logger.WarnCommand("katex").Logf,
|
|
},
|
|
// WebP options.
|
|
warpc.Options{
|
|
CompilationCacheDir: compilationCacheDir,
|
|
PoolSize: poolSizeWebP,
|
|
Memory: 384, // 384 MiB (4096 MiB Max)
|
|
Infof: logger.InfoCommand("webp").Logf,
|
|
Warnf: logger.WarnCommand("webp").Logf,
|
|
},
|
|
),
|
|
}
|
|
|
|
if err := firstSiteDeps.Init(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Prevent leaking goroutines in tests.
|
|
if cfg.IsIntegrationTest && cfg.ChangesFromBuild != nil {
|
|
firstSiteDeps.BuildClosers.Add(types.CloserFunc(func() error {
|
|
close(cfg.ChangesFromBuild)
|
|
return nil
|
|
}))
|
|
}
|
|
|
|
batcherClient, err := esbuild.NewBatcherClient(firstSiteDeps)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
firstSiteDeps.JSBatcherClient = batcherClient
|
|
|
|
confm := cfg.Configs
|
|
if err := confm.Validate(logger); err != nil {
|
|
return nil, err
|
|
}
|
|
var sites []*Site
|
|
|
|
ns := &contentNodeShifter{
|
|
conf: conf,
|
|
}
|
|
|
|
treeConfig := doctree.Config[contentNode]{
|
|
Shifter: ns,
|
|
TransformerRaw: &contentNodeTransformerRaw{},
|
|
}
|
|
|
|
dimensionLengths := sitesmatrix.Vector{len(confm.Languages), len(versionsSorted), len(rolesSorted)}
|
|
|
|
pageTrees := &pageTrees{
|
|
treePages: doctree.New(
|
|
treeConfig,
|
|
),
|
|
treeResources: doctree.New(
|
|
treeConfig,
|
|
),
|
|
treeTaxonomyEntries: doctree.NewTreeShiftTree[*weightedContentNode](dimensionLengths),
|
|
treePagesFromTemplateAdapters: doctree.NewTreeShiftTree[*pagesfromdata.PagesFromTemplate](dimensionLengths),
|
|
}
|
|
|
|
pageTrees.createMutableTrees()
|
|
|
|
for i, confp := range confm.ConfigLangs() {
|
|
language := confp.Language().(*langs.Language)
|
|
if language.Disabled {
|
|
panic("cannot create site for disabled language: " + language.Lang)
|
|
}
|
|
k := language.Lang
|
|
conf := confm.LanguageConfigMap[k]
|
|
frontmatterHandler, err := pagemeta.NewFrontmatterHandler(firstSiteDeps.Log, conf.Frontmatter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
langs.SetParams(language, conf.Params)
|
|
|
|
s := &Site{
|
|
conf: conf,
|
|
language: language,
|
|
frontmatterHandler: frontmatterHandler,
|
|
store: hstore.NewScratch(),
|
|
siteLanguageVersionRole: &siteLanguageVersionRole{
|
|
isDefaultLanguage: language.IsDefault(),
|
|
siteVector: sitesmatrix.Vector{i, 0, 0},
|
|
},
|
|
}
|
|
|
|
s.siteWrapped = page.WrapSite(s)
|
|
|
|
if i == 0 {
|
|
firstSiteDeps.Site = s
|
|
s.Deps = firstSiteDeps
|
|
} else {
|
|
d, err := firstSiteDeps.Clone(s, confp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
s.Deps = d
|
|
}
|
|
|
|
// Set up the main publishing chain.
|
|
pub, err := publisher.NewDestinationPublisher(
|
|
firstSiteDeps.ResourceSpec,
|
|
s.conf.OutputFormats.Config,
|
|
s.conf.MediaTypes.Config,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
s.publisher = pub
|
|
s.relatedDocsHandler = page.NewRelatedDocsHandler(s.conf.Related)
|
|
// Site deps end.
|
|
|
|
sites = append(sites, s)
|
|
|
|
}
|
|
|
|
if len(sites) == 0 {
|
|
return nil, errors.New("no sites to build")
|
|
}
|
|
|
|
sitesVersionsRoles := make([][][]*Site, len(sites))
|
|
for i := 0; i < len(sites); i++ {
|
|
sitesVersionsRoles[i] = make([][]*Site, len(versionsSorted))
|
|
for j := range versionsSorted {
|
|
sitesVersionsRoles[i][j] = make([]*Site, len(rolesSorted))
|
|
}
|
|
}
|
|
|
|
siteVersionRoles := map[types.Ints2][]roles.Role{}
|
|
siteRoleVersions := map[types.Ints2][]versions.Version{}
|
|
// i = site, j = version, k = role
|
|
for i, v1 := range sitesVersionsRoles {
|
|
for j, v2 := range v1 {
|
|
for k := range v2 {
|
|
var vrs *Site
|
|
if j == 0 && k == 0 {
|
|
vrs = sites[i]
|
|
} else {
|
|
prototype := sites[i]
|
|
vrs, err = prototype.cloneForVersionAndRole(j, k)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
vrs.roleInternal = rolesSorted[k]
|
|
vrs.role = roles.NewRole(rolesSorted[k])
|
|
vrs.versionInternal = versionsSorted[j]
|
|
vrs.version = versions.NewVersion(versionsSorted[j])
|
|
siteRoleVersions[types.Ints2{i, k}] = append(siteRoleVersions[types.Ints2{i, k}], vrs.version)
|
|
siteVersionRoles[types.Ints2{i, j}] = append(siteVersionRoles[types.Ints2{i, j}], vrs.role)
|
|
vrs.pageMap = newPageMap(vrs, memCache, pageTrees)
|
|
vrs.pageFinder = newPageFinder(vrs.pageMap)
|
|
vrs.siteRefLinker = newSiteRefLinker(vrs)
|
|
vrs.prepareInits()
|
|
v2[k] = vrs
|
|
}
|
|
}
|
|
}
|
|
|
|
h, err = newHugoSites(cfg, firstSiteDeps, pageTrees, sitesVersionsRoles)
|
|
if err == nil && h == nil {
|
|
panic("hugo: newHugoSitesNew returned nil error and nil HugoSites")
|
|
}
|
|
|
|
return h, err
|
|
}
|
|
|
|
func newHugoSites(
|
|
cfg deps.DepsCfg,
|
|
d *deps.Deps,
|
|
pageTrees *pageTrees,
|
|
sitesVersionsRoles [][][]*Site,
|
|
) (*HugoSites, error) {
|
|
first := make([]*Site, len(sitesVersionsRoles))
|
|
for i, v := range sitesVersionsRoles {
|
|
first[i] = v[0][0]
|
|
}
|
|
|
|
sitesVersionsRolesMap := map[sitesmatrix.Vector]*Site{}
|
|
for _, v1 := range sitesVersionsRoles {
|
|
for _, v2 := range v1 {
|
|
for _, s := range v2 {
|
|
sitesVersionsRolesMap[s.siteVector] = s
|
|
}
|
|
}
|
|
}
|
|
|
|
numWorkers := config.GetNumWorkerMultiplier()
|
|
numWorkersSite := min(numWorkers, len(sitesVersionsRolesMap))
|
|
workersSite := para.New(numWorkersSite)
|
|
|
|
var sitesLanguages []*Site
|
|
for _, v := range sitesVersionsRoles {
|
|
sitesLanguages = append(sitesLanguages, v[0][0])
|
|
}
|
|
|
|
h := &HugoSites{
|
|
Sites: first,
|
|
sitesVersionsRoles: sitesVersionsRoles,
|
|
sitesVersionsRolesMap: sitesVersionsRolesMap,
|
|
sitesLanguages: sitesLanguages,
|
|
Deps: first[0].Deps,
|
|
Configs: cfg.Configs,
|
|
workersSite: workersSite,
|
|
numWorkersSites: numWorkers,
|
|
numWorkers: numWorkers,
|
|
pageTrees: pageTrees,
|
|
cachePages: dynacache.GetOrCreatePartition[string,
|
|
page.Pages](d.MemCache, "/pags/all",
|
|
dynacache.OptionsPartition{Weight: 10, ClearWhen: dynacache.ClearOnRebuild},
|
|
),
|
|
cacheContentSource: dynacache.GetOrCreatePartition[uint64, *resources.StaleValue[[]byte]](d.MemCache, "/cont/src", dynacache.OptionsPartition{Weight: 70, ClearWhen: dynacache.ClearOnChange}),
|
|
translationKeyPages: hmaps.NewSliceCache[page.Page](),
|
|
currentSite: first[0],
|
|
skipRebuildForFilenames: make(map[string]bool),
|
|
init: &hugoSitesInit{},
|
|
progressReporter: &progressReporter{},
|
|
}
|
|
|
|
// Assemble dependencies to be used in hugo.Deps.
|
|
var dependencies []*hugo.Dependency
|
|
var depFromMod func(m modules.Module) *hugo.Dependency
|
|
depFromMod = func(m modules.Module) *hugo.Dependency {
|
|
dep := &hugo.Dependency{
|
|
Path: m.Path(),
|
|
Version: m.Version(),
|
|
Time: m.Time(),
|
|
Vendor: m.Vendor(),
|
|
}
|
|
|
|
// These are pointers, but this all came from JSON so there's no recursive navigation,
|
|
// so just create new values.
|
|
if m.Replace() != nil {
|
|
dep.Replace = depFromMod(m.Replace())
|
|
}
|
|
if m.Owner() != nil {
|
|
dep.Owner = depFromMod(m.Owner())
|
|
}
|
|
return dep
|
|
}
|
|
for _, m := range d.Paths.AllModules() {
|
|
dependencies = append(dependencies, depFromMod(m))
|
|
}
|
|
|
|
h.hugoInfo = hugo.NewInfo(h.Configs.GetFirstLanguageConfig(), dependencies)
|
|
|
|
var prototype *deps.Deps
|
|
|
|
var i int
|
|
for _, v := range sitesVersionsRoles {
|
|
for _, r := range v {
|
|
for _, s := range r {
|
|
s.h = h
|
|
// The template store needs to be initialized after the h container is set on s.
|
|
if i == 0 {
|
|
templateStore, err := tplimpl.NewStore(
|
|
tplimpl.StoreOptions{
|
|
Fs: s.BaseFs.Layouts.Fs,
|
|
Log: s.Log,
|
|
Watching: s.Conf.Watching(),
|
|
PathParser: s.Conf.PathParser(),
|
|
Metrics: d.Metrics,
|
|
OutputFormats: s.conf.OutputFormats.Config,
|
|
MediaTypes: s.conf.MediaTypes.Config,
|
|
DefaultOutputFormat: s.conf.DefaultOutputFormat,
|
|
TaxonomySingularPlural: s.conf.Taxonomies,
|
|
RenderHooks: s.conf.Markup.Goldmark.RenderHooks,
|
|
}, tplimpl.SiteOptions{
|
|
Site: s,
|
|
TemplateFuncs: tplimplinit.CreateFuncMap(s.Deps),
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
s.Deps.TemplateStore = templateStore
|
|
} else {
|
|
s.Deps.TemplateStore = prototype.TemplateStore.WithSiteOpts(
|
|
tplimpl.SiteOptions{
|
|
Site: s,
|
|
TemplateFuncs: tplimplinit.CreateFuncMap(s.Deps),
|
|
})
|
|
}
|
|
if err := s.Deps.Compile(prototype); err != nil {
|
|
return nil, err
|
|
}
|
|
if i == 0 {
|
|
prototype = s.Deps
|
|
}
|
|
|
|
i++
|
|
}
|
|
}
|
|
}
|
|
|
|
h.fatalErrorHandler = &fatalErrorHandler{
|
|
h: h,
|
|
donec: make(chan bool),
|
|
}
|
|
|
|
h.init.data = hsync.OnceMoreFunc(func(ctx context.Context) error {
|
|
return h.loadData()
|
|
})
|
|
|
|
h.init.gitInfo = hsync.OnceMoreFunc(func(ctx context.Context) error {
|
|
return h.loadGitInfo()
|
|
})
|
|
|
|
return h, nil
|
|
}
|
|
|
|
// GetSiteDimension returns the value of the specified site dimension (such as language, version, or role)
|
|
// based on the provided dimension name string. If the dimension name is unknown, it panics.
|
|
func (s *Site) Dimension(d string) page.SiteDimension {
|
|
switch d {
|
|
case sitesmatrix.DimensionName(sitesmatrix.Language):
|
|
return s.language
|
|
case sitesmatrix.DimensionName(sitesmatrix.Version):
|
|
return s.version
|
|
case sitesmatrix.DimensionName(sitesmatrix.Role):
|
|
return s.role
|
|
default:
|
|
panic(fmt.Sprintf("unknown dimension %q", d))
|
|
}
|
|
}
|
|
|
|
// Returns the server port.
|
|
func (s *Site) ServerPort() int {
|
|
return s.conf.C.BaseURL.Port()
|
|
}
|
|
|
|
// Returns the configured title for this Site.
|
|
func (s *Site) Title() string {
|
|
return s.conf.Title
|
|
}
|
|
|
|
func (s *Site) Copyright() string {
|
|
return s.conf.Copyright
|
|
}
|
|
|
|
func (s *Site) Lang() string {
|
|
return s.language.Lang
|
|
}
|
|
|
|
func (s *Site) Config() page.SiteConfig {
|
|
return page.SiteConfig{
|
|
Privacy: s.conf.Privacy,
|
|
Services: s.conf.Services,
|
|
}
|
|
}
|
|
|
|
func (s *Site) LanguageCode() string {
|
|
return s.Language().LanguageCode()
|
|
}
|
|
|
|
// Returns all Sites for all languages.
|
|
func (s *Site) Sites() page.Sites {
|
|
sites := make(page.Sites, len(s.h.Sites))
|
|
for i, s := range s.h.Sites {
|
|
sites[i] = s.Site()
|
|
}
|
|
return sites
|
|
}
|
|
|
|
// Returns Site currently rendering.
|
|
func (s *Site) Current() page.Site {
|
|
return s.h.currentSite
|
|
}
|
|
|
|
// MainSections returns the list of main sections.
|
|
func (s *Site) MainSections() []string {
|
|
s.CheckReady()
|
|
return s.conf.C.MainSections
|
|
}
|
|
|
|
// Returns a struct with some information about the build.
|
|
func (s *Site) Hugo() hugo.HugoInfo {
|
|
if s.h == nil {
|
|
panic("site: hugo: h not initialized")
|
|
}
|
|
if s.h.hugoInfo.Environment == "" {
|
|
panic("site: hugo: hugoInfo not initialized")
|
|
}
|
|
return s.h.hugoInfo
|
|
}
|
|
|
|
// Returns the BaseURL for this Site.
|
|
func (s *Site) BaseURL() string {
|
|
return s.conf.C.BaseURL.WithPath
|
|
}
|
|
|
|
// Deprecated: Use .Site.Lastmod instead.
|
|
func (s *Site) LastChange() time.Time {
|
|
s.CheckReady()
|
|
hugo.Deprecate(".Site.LastChange", "Use .Site.Lastmod instead.", "v0.123.0")
|
|
return s.lastmod
|
|
}
|
|
|
|
// Returns the last modification date of the content.
|
|
func (s *Site) Lastmod() time.Time {
|
|
return s.lastmod
|
|
}
|
|
|
|
// Returns the Params configured for this site.
|
|
func (s *Site) Params() hmaps.Params {
|
|
return s.conf.Params
|
|
}
|
|
|
|
// Deprecated: Use taxonomies instead.
|
|
func (s *Site) Author() map[string]any {
|
|
if len(s.conf.Author) != 0 {
|
|
hugo.Deprecate(".Site.Author", "Implement taxonomy 'author' or use .Site.Params.Author instead.", "v0.124.0")
|
|
}
|
|
return s.conf.Author
|
|
}
|
|
|
|
// Deprecated: Use taxonomies instead.
|
|
func (s *Site) Authors() page.AuthorList {
|
|
hugo.Deprecate(".Site.Authors", "Implement taxonomy 'authors' or use .Site.Params.Author instead.", "v0.124.0")
|
|
return page.AuthorList{}
|
|
}
|
|
|
|
// Deprecated: Use .Site.Params instead.
|
|
func (s *Site) Social() map[string]string {
|
|
hugo.Deprecate(".Site.Social", "Implement taxonomy 'social' or use .Site.Params.Social instead.", "v0.124.0")
|
|
return s.conf.Social
|
|
}
|
|
|
|
func (s *Site) Param(key any) (any, error) {
|
|
return resource.Param(s, nil, key)
|
|
}
|
|
|
|
// Returns a map of all the data inside /data.
|
|
func (s *Site) Data() map[string]any {
|
|
return s.h.Data()
|
|
}
|
|
|
|
func (s *Site) BuildDrafts() bool {
|
|
return s.conf.BuildDrafts
|
|
}
|
|
|
|
// Deprecated: Use hugo.IsMultilingual instead.
|
|
func (s *Site) IsMultiLingual() bool {
|
|
hugo.Deprecate(".Site.IsMultiLingual", "Use hugo.IsMultilingual instead.", "v0.124.0")
|
|
return s.h.isMultilingual()
|
|
}
|
|
|
|
func (s *Site) LanguagePrefix() string {
|
|
prefix := s.GetLanguagePrefix()
|
|
if prefix == "" {
|
|
return ""
|
|
}
|
|
return "/" + prefix
|
|
}
|
|
|
|
func (s *Site) Site() page.Site {
|
|
return page.WrapSite(s)
|
|
}
|
|
|
|
func (s *Site) ForEeachIdentityByName(name string, f func(identity.Identity) bool) {
|
|
if id, found := siteidentities.FromString(name); found {
|
|
if f(id) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// Pages returns all pages.
|
|
// This is for the current language only.
|
|
func (s *Site) Pages() page.Pages {
|
|
s.CheckReady()
|
|
return s.pageMap.getPagesInSection(
|
|
pageMapQueryPagesInSection{
|
|
pageMapQueryPagesBelowPath: pageMapQueryPagesBelowPath{
|
|
Path: "",
|
|
KeyPart: "global",
|
|
Include: pagePredicates.ShouldListGlobal.BoolFunc(),
|
|
},
|
|
Recursive: true,
|
|
IncludeSelf: true,
|
|
},
|
|
)
|
|
}
|
|
|
|
// RegularPages returns all the regular pages.
|
|
// This is for the current language only.
|
|
func (s *Site) RegularPages() page.Pages {
|
|
s.CheckReady()
|
|
return s.pageMap.getPagesInSection(
|
|
pageMapQueryPagesInSection{
|
|
pageMapQueryPagesBelowPath: pageMapQueryPagesBelowPath{
|
|
Path: "",
|
|
KeyPart: "global",
|
|
Include: pagePredicates.ShouldListGlobal.And(pagePredicates.KindPage).BoolFunc(),
|
|
},
|
|
Recursive: true,
|
|
},
|
|
)
|
|
}
|
|
|
|
// AllPages returns all pages for all sites.
|
|
func (s *Site) AllPages() page.Pages {
|
|
s.CheckReady()
|
|
return s.h.Pages()
|
|
}
|
|
|
|
// AllRegularPages returns all regular pages for all sites.
|
|
func (s *Site) AllRegularPages() page.Pages {
|
|
s.CheckReady()
|
|
return s.h.RegularPages()
|
|
}
|
|
|
|
func (s *Site) Store() *hstore.Scratch {
|
|
return s.store
|
|
}
|
|
|
|
func (s *Site) CheckReady() {
|
|
if s.state != siteStateReady {
|
|
panic("this method cannot be called before the site is fully initialized")
|
|
}
|
|
}
|
|
|
|
func (s *Site) Taxonomies() page.TaxonomyList {
|
|
s.CheckReady()
|
|
return s.init.taxonomies.Value(context.Background())
|
|
}
|
|
|
|
type (
|
|
taxonomiesConfig map[string]string
|
|
taxonomiesConfigValues struct {
|
|
views []viewName
|
|
viewsByTreeKey map[string]viewName
|
|
}
|
|
)
|
|
|
|
func (t taxonomiesConfig) Values() taxonomiesConfigValues {
|
|
var views []viewName
|
|
for k, v := range t {
|
|
views = append(views, viewName{singular: k, plural: v, pluralTreeKey: cleanTreeKey(v)})
|
|
}
|
|
sort.Slice(views, func(i, j int) bool {
|
|
return views[i].plural < views[j].plural
|
|
})
|
|
|
|
viewsByTreeKey := make(map[string]viewName)
|
|
for _, v := range views {
|
|
viewsByTreeKey[v.pluralTreeKey] = v
|
|
}
|
|
|
|
return taxonomiesConfigValues{
|
|
views: views,
|
|
viewsByTreeKey: viewsByTreeKey,
|
|
}
|
|
}
|
|
|
|
// Lazily loaded site dependencies.
|
|
type siteInit struct {
|
|
prevNext hsync.FuncResetter
|
|
prevNextInSection hsync.FuncResetter
|
|
|
|
menus hsync.ValueResetter[navigation.Menus]
|
|
taxonomies hsync.ValueResetter[page.TaxonomyList]
|
|
}
|
|
|
|
func (init *siteInit) Reset() {
|
|
init.prevNext.Reset()
|
|
init.prevNextInSection.Reset()
|
|
init.menus.Reset()
|
|
init.taxonomies.Reset()
|
|
}
|
|
|
|
func (s *Site) prepareInits() {
|
|
s.init = &siteInit{}
|
|
|
|
s.init.prevNext = hsync.OnceMoreFunc(func(ctx context.Context) error {
|
|
regularPages := s.RegularPages()
|
|
if s.conf.Page.NextPrevSortOrder == "asc" {
|
|
regularPages = regularPages.Reverse()
|
|
}
|
|
for i, p := range regularPages {
|
|
np, ok := p.(nextPrevProvider)
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
pos := np.getNextPrev()
|
|
if pos == nil {
|
|
continue
|
|
}
|
|
|
|
pos.nextPage = nil
|
|
pos.prevPage = nil
|
|
|
|
if i > 0 {
|
|
pos.nextPage = regularPages[i-1]
|
|
}
|
|
|
|
if i < len(regularPages)-1 {
|
|
pos.prevPage = regularPages[i+1]
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
|
|
s.init.prevNextInSection = hsync.OnceMoreFunc(func(ctx context.Context) error {
|
|
setNextPrev := func(pas page.Pages) {
|
|
for i, p := range pas {
|
|
np, ok := p.(nextPrevInSectionProvider)
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
pos := np.getNextPrevInSection()
|
|
if pos == nil {
|
|
continue
|
|
}
|
|
|
|
pos.nextPage = nil
|
|
pos.prevPage = nil
|
|
|
|
if i > 0 {
|
|
pos.nextPage = pas[i-1]
|
|
}
|
|
|
|
if i < len(pas)-1 {
|
|
pos.prevPage = pas[i+1]
|
|
}
|
|
}
|
|
}
|
|
|
|
sections := s.pageMap.getPagesInSection(
|
|
pageMapQueryPagesInSection{
|
|
pageMapQueryPagesBelowPath: pageMapQueryPagesBelowPath{
|
|
Path: "",
|
|
KeyPart: "sectionorhome",
|
|
Include: pagePredicates.KindSection.Or(pagePredicates.KindHome).BoolFunc(),
|
|
},
|
|
IncludeSelf: true,
|
|
Recursive: true,
|
|
},
|
|
)
|
|
|
|
for _, section := range sections {
|
|
ps := section.RegularPages()
|
|
if s.conf.Page.NextPrevInSectionSortOrder == "asc" {
|
|
ps = ps.Reverse()
|
|
}
|
|
setNextPrev(ps)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
s.init.menus = hsync.OnceMoreValue(func(ctx context.Context) navigation.Menus {
|
|
m, err := s.assembleMenus()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return m
|
|
})
|
|
|
|
s.init.taxonomies = hsync.OnceMoreValue(func(ctx context.Context) page.TaxonomyList {
|
|
taxonomies, err := s.pageMap.CreateSiteTaxonomies(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return taxonomies
|
|
})
|
|
}
|
|
|
|
func (s *Site) Menus() navigation.Menus {
|
|
s.CheckReady()
|
|
return s.init.menus.Value(context.Background())
|
|
}
|
|
|
|
func (s *Site) initRenderFormats() {
|
|
formatSet := make(map[string]bool)
|
|
formats := output.Formats{}
|
|
|
|
w := &doctree.NodeShiftTreeWalker[contentNode]{
|
|
Tree: s.pageMap.treePages,
|
|
Handle: func(key string, n contentNode) (radix.WalkFlag, error) {
|
|
if p, ok := n.(*pageState); ok {
|
|
for _, f := range p.m.pageConfig.ConfiguredOutputFormats {
|
|
if !formatSet[f.Name] {
|
|
formats = append(formats, f)
|
|
formatSet[f.Name] = true
|
|
}
|
|
}
|
|
}
|
|
return radix.WalkContinue, nil
|
|
},
|
|
}
|
|
|
|
if err := w.Walk(context.TODO()); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Add the per kind configured output formats
|
|
for _, kind := range kinds.AllKindsInPages {
|
|
if siteFormats, found := s.conf.C.KindOutputFormats[kind]; found {
|
|
for _, f := range siteFormats {
|
|
if !formatSet[f.Name] {
|
|
formats = append(formats, f)
|
|
formatSet[f.Name] = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
sort.Sort(formats)
|
|
s.renderFormats = formats
|
|
}
|
|
|
|
func (s *Site) GetInternalRelatedDocsHandler() *page.RelatedDocsHandler {
|
|
return s.relatedDocsHandler
|
|
}
|
|
|
|
func (s *Site) Language() *langs.Language {
|
|
return s.language
|
|
}
|
|
|
|
func (s *Site) Languages() langs.Languages {
|
|
return s.h.Configs.Languages
|
|
}
|
|
|
|
type siteRefLinker struct {
|
|
s *Site
|
|
|
|
errorLogger logg.LevelLogger
|
|
notFoundURL string
|
|
}
|
|
|
|
func newSiteRefLinker(s *Site) siteRefLinker {
|
|
logger := s.Log.Error()
|
|
|
|
notFoundURL := s.conf.RefLinksNotFoundURL
|
|
errLevel := s.conf.RefLinksErrorLevel
|
|
if strings.EqualFold(errLevel, "warning") {
|
|
logger = s.Log.Warn()
|
|
}
|
|
return siteRefLinker{s: s, errorLogger: logger, notFoundURL: notFoundURL}
|
|
}
|
|
|
|
func (s siteRefLinker) logNotFound(ref, what string, p page.Page, position text.Position) {
|
|
if position.IsValid() {
|
|
s.errorLogger.Logf("[%s] REF_NOT_FOUND: Ref %q: %s: %s", s.s.Lang(), ref, position.String(), what)
|
|
} else if p == nil {
|
|
s.errorLogger.Logf("[%s] REF_NOT_FOUND: Ref %q: %s", s.s.Lang(), ref, what)
|
|
} else {
|
|
s.errorLogger.Logf("[%s] REF_NOT_FOUND: Ref %q from page %q: %s", s.s.Lang(), ref, p.Path(), what)
|
|
}
|
|
}
|
|
|
|
func (s *siteRefLinker) refLink(ref string, source any, relative bool, outputFormat string) (string, error) {
|
|
p, err := unwrapPage(source)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var refURL *url.URL
|
|
|
|
ref = filepath.ToSlash(ref)
|
|
|
|
refURL, err = url.Parse(ref)
|
|
if err != nil {
|
|
return s.notFoundURL, err
|
|
}
|
|
|
|
var target page.Page
|
|
var link string
|
|
|
|
if refURL.Path != "" {
|
|
var err error
|
|
target, err = s.s.getPageRef(p, refURL.Path)
|
|
var pos text.Position
|
|
if err != nil || target == nil {
|
|
if p, ok := source.(text.Positioner); ok {
|
|
pos = p.Position()
|
|
}
|
|
}
|
|
|
|
if err != nil {
|
|
s.logNotFound(refURL.Path, err.Error(), p, pos)
|
|
return s.notFoundURL, nil
|
|
}
|
|
|
|
if target == nil {
|
|
s.logNotFound(refURL.Path, "page not found", p, pos)
|
|
return s.notFoundURL, nil
|
|
}
|
|
|
|
var permalinker Permalinker = target
|
|
|
|
if outputFormat != "" {
|
|
o := target.OutputFormats().Get(outputFormat)
|
|
|
|
if o.IsZero() {
|
|
s.logNotFound(refURL.Path, fmt.Sprintf("output format %q", outputFormat), p, pos)
|
|
return s.notFoundURL, nil
|
|
}
|
|
permalinker = o
|
|
}
|
|
|
|
if relative {
|
|
link = permalinker.RelPermalink()
|
|
} else {
|
|
link = permalinker.Permalink()
|
|
}
|
|
}
|
|
|
|
if refURL.Fragment != "" {
|
|
_ = target
|
|
link = link + "#" + refURL.Fragment
|
|
|
|
if pctx, ok := target.(pageContext); ok {
|
|
if refURL.Path != "" {
|
|
if di, ok := pctx.getContentConverter().(converter.DocumentInfo); ok {
|
|
link = link + di.AnchorSuffix()
|
|
}
|
|
}
|
|
} else if pctx, ok := p.(pageContext); ok {
|
|
if di, ok := pctx.getContentConverter().(converter.DocumentInfo); ok {
|
|
link = link + di.AnchorSuffix()
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return link, nil
|
|
}
|
|
|
|
func (s *Site) watching() bool {
|
|
return s.h != nil && s.h.Configs.Base.Internal.Watch
|
|
}
|
|
|
|
type WhatChanged struct {
|
|
mu sync.Mutex
|
|
|
|
needsPagesAssembly bool
|
|
|
|
ids map[identity.Identity]bool
|
|
}
|
|
|
|
func (w *WhatChanged) init() {
|
|
if w.ids == nil {
|
|
w.ids = make(map[identity.Identity]bool)
|
|
}
|
|
}
|
|
|
|
func (w *WhatChanged) Add(ids ...identity.Identity) {
|
|
w.mu.Lock()
|
|
defer w.mu.Unlock()
|
|
|
|
w.init()
|
|
|
|
for _, id := range ids {
|
|
w.ids[id] = true
|
|
}
|
|
}
|
|
|
|
func (w *WhatChanged) Clear() {
|
|
w.mu.Lock()
|
|
defer w.mu.Unlock()
|
|
w.clear()
|
|
}
|
|
|
|
func (w *WhatChanged) clear() {
|
|
w.ids = nil
|
|
}
|
|
|
|
func (w *WhatChanged) Changes() []identity.Identity {
|
|
if w == nil || w.ids == nil {
|
|
return nil
|
|
}
|
|
return slices.Collect(maps.Keys(w.ids))
|
|
}
|
|
|
|
func (w *WhatChanged) Drain() []identity.Identity {
|
|
w.mu.Lock()
|
|
defer w.mu.Unlock()
|
|
ids := w.Changes()
|
|
w.clear()
|
|
return ids
|
|
}
|
|
|
|
// RegisterMediaTypes will register the Site's media types in the mime
|
|
// package, so it will behave correctly with Hugo's built-in server.
|
|
func (s *Site) RegisterMediaTypes() {
|
|
for _, mt := range s.conf.MediaTypes.Config {
|
|
for _, suffix := range mt.Suffixes() {
|
|
_ = mime.AddExtensionType(mt.Delimiter+suffix, mt.Type)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (h *HugoSites) fileEventsFilter(events []fsnotify.Event) []fsnotify.Event {
|
|
seen := make(map[fsnotify.Event]bool)
|
|
|
|
n := 0
|
|
for _, ev := range events {
|
|
// Avoid processing the same event twice.
|
|
if seen[ev] {
|
|
continue
|
|
}
|
|
seen[ev] = true
|
|
|
|
if h.SourceSpec.IgnoreFile(ev.Name) {
|
|
continue
|
|
}
|
|
|
|
if runtime.GOOS == "darwin" { // When a file system is HFS+, its filepath is in NFD form.
|
|
ev.Name = norm.NFC.String(ev.Name)
|
|
}
|
|
|
|
events[n] = ev
|
|
n++
|
|
}
|
|
events = events[:n]
|
|
|
|
eventOrdinal := func(e fsnotify.Event) int {
|
|
// Pull the structural changes to the top.
|
|
if e.Op.Has(fsnotify.Create) {
|
|
return 1
|
|
}
|
|
if e.Op.Has(fsnotify.Remove) {
|
|
return 2
|
|
}
|
|
if e.Op.Has(fsnotify.Rename) {
|
|
return 3
|
|
}
|
|
if e.Op.Has(fsnotify.Write) {
|
|
return 4
|
|
}
|
|
return 5
|
|
}
|
|
|
|
sort.Slice(events, func(i, j int) bool {
|
|
// First sort by event type.
|
|
if eventOrdinal(events[i]) != eventOrdinal(events[j]) {
|
|
return eventOrdinal(events[i]) < eventOrdinal(events[j])
|
|
}
|
|
// Then sort by name.
|
|
return events[i].Name < events[j].Name
|
|
})
|
|
|
|
return events
|
|
}
|
|
|
|
type fileEventInfo struct {
|
|
fsnotify.Event
|
|
fi os.FileInfo
|
|
added bool
|
|
removed bool
|
|
isChangedDir bool
|
|
}
|
|
|
|
func (h *HugoSites) fileEventsApplyInfo(events []fsnotify.Event) []fileEventInfo {
|
|
var infos []fileEventInfo
|
|
for _, ev := range events {
|
|
removed := false
|
|
added := false
|
|
|
|
if ev.Op&fsnotify.Remove == fsnotify.Remove {
|
|
removed = true
|
|
}
|
|
|
|
fi, statErr := h.Fs.Source.Stat(ev.Name)
|
|
|
|
// Some editors (Vim) sometimes issue only a Rename operation when writing an existing file
|
|
// Sometimes a rename operation means that file has been renamed other times it means
|
|
// it's been updated.
|
|
if ev.Op.Has(fsnotify.Rename) {
|
|
// If the file is still on disk, it's only been updated, if it's not, it's been moved
|
|
if statErr != nil {
|
|
removed = true
|
|
}
|
|
}
|
|
if ev.Op.Has(fsnotify.Create) {
|
|
added = true
|
|
}
|
|
|
|
isChangedDir := statErr == nil && fi.IsDir()
|
|
|
|
infos = append(infos, fileEventInfo{
|
|
Event: ev,
|
|
fi: fi,
|
|
added: added,
|
|
removed: removed,
|
|
isChangedDir: isChangedDir,
|
|
})
|
|
}
|
|
|
|
n := 0
|
|
|
|
for _, ev := range infos {
|
|
// Remove any directories that's also represented by a file.
|
|
keep := true
|
|
if ev.isChangedDir {
|
|
for _, ev2 := range infos {
|
|
if ev2.fi != nil && !ev2.fi.IsDir() && filepath.Dir(ev2.Name) == ev.Name {
|
|
keep = false
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if keep {
|
|
infos[n] = ev
|
|
n++
|
|
}
|
|
}
|
|
infos = infos[:n]
|
|
|
|
return infos
|
|
}
|
|
|
|
func (h *HugoSites) fileEventsTrim(events []fsnotify.Event) []fsnotify.Event {
|
|
seen := make(map[string]bool)
|
|
n := 0
|
|
for _, ev := range events {
|
|
if seen[ev.Name] {
|
|
continue
|
|
}
|
|
seen[ev.Name] = true
|
|
events[n] = ev
|
|
n++
|
|
}
|
|
return events
|
|
}
|
|
|
|
func (h *HugoSites) fileEventsContentPaths(p []pathChange) []pathChange {
|
|
var bundles []pathChange
|
|
var dirs []pathChange
|
|
var regular []pathChange
|
|
|
|
var others []pathChange
|
|
for _, p := range p {
|
|
if p.isDir {
|
|
dirs = append(dirs, p)
|
|
} else {
|
|
others = append(others, p)
|
|
}
|
|
}
|
|
|
|
// Remove all files below dir.
|
|
if len(dirs) > 0 {
|
|
n := 0
|
|
for _, d := range dirs {
|
|
dir := d.p.Path() + "/"
|
|
for _, o := range others {
|
|
if !strings.HasPrefix(o.p.Path(), dir) {
|
|
others[n] = o
|
|
n++
|
|
}
|
|
}
|
|
|
|
}
|
|
others = others[:n]
|
|
}
|
|
|
|
for _, p := range others {
|
|
if p.p.IsBundle() {
|
|
bundles = append(bundles, p)
|
|
} else {
|
|
regular = append(regular, p)
|
|
}
|
|
}
|
|
|
|
// Remove any files below leaf bundles.
|
|
// Remove any files in the same folder as branch bundles.
|
|
var keepers []pathChange
|
|
|
|
for _, o := range regular {
|
|
keep := true
|
|
for _, b := range bundles {
|
|
prefix := b.p.Base() + "/"
|
|
if b.p.IsLeafBundle() && strings.HasPrefix(o.p.Path(), prefix) {
|
|
keep = false
|
|
break
|
|
} else if b.p.IsBranchBundle() && o.p.Dir() == b.p.Dir() {
|
|
keep = false
|
|
break
|
|
}
|
|
}
|
|
|
|
if keep {
|
|
keepers = append(keepers, o)
|
|
}
|
|
}
|
|
|
|
keepers = append(dirs, keepers...)
|
|
keepers = append(bundles, keepers...)
|
|
|
|
return keepers
|
|
}
|
|
|
|
// SitemapAbsURL is a convenience method giving the absolute URL to the sitemap.
|
|
func (s *Site) SitemapAbsURL() string {
|
|
base := ""
|
|
if s.Conf.IsMultilingual() || s.Conf.DefaultContentLanguageInSubdir() {
|
|
base = s.Language().Lang
|
|
}
|
|
p := s.AbsURL(base, false)
|
|
if !strings.HasSuffix(p, "/") {
|
|
p += "/"
|
|
}
|
|
p += s.conf.Sitemap.Filename
|
|
return p
|
|
}
|
|
|
|
func (s *Site) createNodeMenuEntryURL(in string) string {
|
|
if !strings.HasPrefix(in, "/") {
|
|
return in
|
|
}
|
|
// make it match the nodes
|
|
menuEntryURL := in
|
|
menuEntryURL = s.PathSpec.URLize(menuEntryURL)
|
|
if !s.conf.CanonifyURLs {
|
|
menuEntryURL = paths.AddContextRoot(s.PathSpec.Cfg.BaseURL().String(), menuEntryURL)
|
|
}
|
|
return menuEntryURL
|
|
}
|
|
|
|
func (s *Site) assembleMenus() (navigation.Menus, error) {
|
|
menus := make(navigation.Menus)
|
|
|
|
type twoD struct {
|
|
MenuName, EntryName string
|
|
}
|
|
flat := map[twoD]*navigation.MenuEntry{}
|
|
children := map[twoD]navigation.Menu{}
|
|
|
|
// add menu entries from config to flat hash
|
|
for name, menu := range s.conf.Menus.Config {
|
|
for _, me := range menu {
|
|
if types.IsNil(me.Page) && me.PageRef != "" {
|
|
// Try to resolve the page.
|
|
me.Page, _ = s.getPage(nil, me.PageRef)
|
|
}
|
|
|
|
// If page is still nill, we must make sure that we have a URL that considers baseURL etc.
|
|
if types.IsNil(me.Page) {
|
|
me.ConfiguredURL = s.createNodeMenuEntryURL(me.MenuConfig.URL)
|
|
} else {
|
|
navigation.SetPageValues(me, me.Page)
|
|
}
|
|
|
|
flat[twoD{name, me.KeyName()}] = me
|
|
}
|
|
}
|
|
|
|
sectionPagesMenu := s.conf.SectionPagesMenu
|
|
|
|
if sectionPagesMenu != "" {
|
|
if err := s.pageMap.forEachPage(pagePredicates.ShouldListGlobal, func(p *pageState) (bool, error) {
|
|
if p.Kind() != kinds.KindSection || !p.m.shouldBeCheckedForMenuDefinitions() {
|
|
return false, nil
|
|
}
|
|
|
|
// The section pages menus are attached to the top level section.
|
|
id := p.Section()
|
|
if id == "" {
|
|
id = "/"
|
|
}
|
|
|
|
if _, ok := flat[twoD{sectionPagesMenu, id}]; ok {
|
|
return false, nil
|
|
}
|
|
me := navigation.MenuEntry{
|
|
MenuConfig: navigation.MenuConfig{
|
|
Identifier: id,
|
|
Name: p.LinkTitle(),
|
|
Weight: p.Weight(),
|
|
},
|
|
Page: p,
|
|
}
|
|
|
|
navigation.SetPageValues(&me, p)
|
|
flat[twoD{sectionPagesMenu, me.KeyName()}] = &me
|
|
return false, nil
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Add menu entries provided by pages
|
|
if err := s.pageMap.forEachPage(pagePredicates.ShouldListGlobal, func(p *pageState) (bool, error) {
|
|
for name, me := range p.pageMenus.menus() {
|
|
if _, ok := flat[twoD{name, me.KeyName()}]; ok {
|
|
err := p.wrapError(fmt.Errorf("duplicate menu entry with identifier %q in menu %q", me.KeyName(), name))
|
|
s.Log.Warnln(err)
|
|
continue
|
|
}
|
|
flat[twoD{name, me.KeyName()}] = me
|
|
}
|
|
return false, nil
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Create Children Menus First
|
|
for _, e := range flat {
|
|
if e.Parent != "" {
|
|
children[twoD{e.Menu, e.Parent}] = children[twoD{e.Menu, e.Parent}].Add(e)
|
|
}
|
|
}
|
|
|
|
// Placing Children in Parents (in flat)
|
|
for p, childmenu := range children {
|
|
_, ok := flat[twoD{p.MenuName, p.EntryName}]
|
|
if !ok {
|
|
// if parent does not exist, create one without a URL
|
|
flat[twoD{p.MenuName, p.EntryName}] = &navigation.MenuEntry{
|
|
MenuConfig: navigation.MenuConfig{
|
|
Name: p.EntryName,
|
|
},
|
|
}
|
|
}
|
|
flat[twoD{p.MenuName, p.EntryName}].Children = childmenu
|
|
}
|
|
|
|
// Assembling Top Level of Tree
|
|
for menu, e := range flat {
|
|
if e.Parent == "" {
|
|
_, ok := menus[menu.MenuName]
|
|
if !ok {
|
|
menus[menu.MenuName] = navigation.Menu{}
|
|
}
|
|
menus[menu.MenuName] = menus[menu.MenuName].Add(e)
|
|
}
|
|
}
|
|
|
|
return menus, nil
|
|
}
|
|
|
|
// get any language code to prefix the target file path with.
|
|
func (s *Site) getLanguageTargetPathLang(alwaysInSubDir bool) string {
|
|
if s.h.Conf.IsMultihost() {
|
|
return s.Language().Lang
|
|
}
|
|
|
|
return s.getLanguagePermalinkLang(alwaysInSubDir)
|
|
}
|
|
|
|
// get any language code to prefix the relative permalink with.
|
|
func (s *Site) getLanguagePermalinkLang(alwaysInSubDir bool) string {
|
|
if s.h.Conf.IsMultihost() {
|
|
return ""
|
|
}
|
|
|
|
if s.h.Conf.IsMultilingual() && alwaysInSubDir {
|
|
return s.Language().Lang
|
|
}
|
|
|
|
return s.GetLanguagePrefix()
|
|
}
|
|
|
|
func (s *Site) getPrefixRole() string {
|
|
role := s.roleInternal
|
|
if role.Default {
|
|
if s.conf.DefaultContentRoleInSubdir {
|
|
return role.Name
|
|
}
|
|
return ""
|
|
}
|
|
return role.Name
|
|
}
|
|
|
|
func (s *Site) getPrefixVersion() string {
|
|
version := s.versionInternal
|
|
if version.Default {
|
|
if s.conf.DefaultContentVersionInSubdir {
|
|
return version.Name
|
|
}
|
|
return ""
|
|
}
|
|
return version.Name
|
|
}
|
|
|
|
// Prepare site for a new full build.
|
|
func (s *Site) resetBuildState(sourceChanged bool) {
|
|
s.relatedDocsHandler = s.relatedDocsHandler.Clone()
|
|
s.init.Reset()
|
|
s.pageMap.Reset()
|
|
}
|
|
|
|
func (s *Site) errorCollator(results <-chan error, errs chan<- error) {
|
|
var errors []error
|
|
defer func() {
|
|
errs <- s.h.filterAndJoinErrors(errors)
|
|
close(errs)
|
|
}()
|
|
const maxErrors = 10
|
|
for e := range results {
|
|
errors = append(errors, e)
|
|
if len(errors) >= maxErrors {
|
|
s.h.Stop()
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetPage looks up a page of a given type for the given ref.
|
|
// In Hugo <= 0.44 you had to add Page Kind (section, home) etc. as the first
|
|
// argument and then either a unix styled path (with or without a leading slash))
|
|
// or path elements separated.
|
|
// When we now remove the Kind from this API, we need to make the transition as painless
|
|
// as possible for existing sites. Most sites will use {{ .Site.GetPage "section" "my/section" }},
|
|
// i.e. 2 arguments, so we test for that.
|
|
func (s *Site) GetPage(ref ...string) (page.Page, error) {
|
|
s.CheckReady()
|
|
p, err := s.getPageForRefs(ref...)
|
|
|
|
if p == nil {
|
|
// The nil struct has meaning in some situations, mostly to avoid breaking
|
|
// existing sites doing $nilpage.IsDescendant($p), which will always return
|
|
// false.
|
|
p = page.NilPage
|
|
}
|
|
|
|
return p, err
|
|
}
|
|
|
|
func (s *Site) absURLPath(targetPath string) string {
|
|
var path string
|
|
if s.conf.RelativeURLs {
|
|
path = helpers.GetDottedRelativePath(targetPath)
|
|
} else {
|
|
url := s.PathSpec.Cfg.BaseURL().String()
|
|
if !strings.HasSuffix(url, "/") {
|
|
url += "/"
|
|
}
|
|
path = url
|
|
}
|
|
|
|
return path
|
|
}
|
|
|
|
const (
|
|
pageDependencyScopeDefault int = iota
|
|
pageDependencyScopeGlobal
|
|
)
|
|
|
|
func (s *Site) renderAndWritePage(statCounter *uint64, targetPath string, p *pageState, d any, templ *tplimpl.TemplInfo) error {
|
|
s.h.onPageRender()
|
|
renderBuffer := bp.GetBuffer()
|
|
defer bp.PutBuffer(renderBuffer)
|
|
|
|
of := p.outputFormat()
|
|
p.incrRenderState()
|
|
|
|
ctx := s.TemplateStore.PrepareTopLevelRenderCtx(context.Background(), p)
|
|
ctx = tpl.Context.DependencyManagerScopedProvider.Set(ctx, p)
|
|
|
|
if err := s.renderForTemplate(ctx, p.Kind(), of.Name, d, renderBuffer, templ); err != nil {
|
|
return err
|
|
}
|
|
|
|
if renderBuffer.Len() == 0 {
|
|
return nil
|
|
}
|
|
|
|
isHTML := of.IsHTML
|
|
isRSS := of.Name == "rss"
|
|
|
|
pd := publisher.Descriptor{
|
|
Src: renderBuffer,
|
|
TargetPath: targetPath,
|
|
StatCounter: statCounter,
|
|
OutputFormat: p.outputFormat(),
|
|
}
|
|
|
|
if isRSS {
|
|
// Always canonify URLs in RSS
|
|
pd.AbsURLPath = s.absURLPath(targetPath)
|
|
} else if isHTML {
|
|
if s.conf.RelativeURLs || s.conf.CanonifyURLs {
|
|
pd.AbsURLPath = s.absURLPath(targetPath)
|
|
}
|
|
|
|
if s.watching() && s.conf.Internal.Running && !s.conf.DisableLiveReload {
|
|
pd.LiveReloadBaseURL = s.Conf.BaseURLLiveReload().URL()
|
|
}
|
|
|
|
// For performance reasons we only inject the Hugo generator tag on the home page.
|
|
if p.IsHome() {
|
|
pd.AddHugoGeneratorTag = !s.conf.DisableHugoGeneratorInject
|
|
}
|
|
|
|
}
|
|
|
|
return s.publisher.Publish(pd)
|
|
}
|
|
|
|
var infoOnMissingLayout = map[string]bool{
|
|
// The 404 layout is very much optional in Hugo, but we do look for it.
|
|
"404": true,
|
|
}
|
|
|
|
// hookRendererTemplate is the canonical implementation of all hooks.ITEMRenderer,
|
|
// where ITEM is the thing being hooked.
|
|
type hookRendererTemplate struct {
|
|
templateHandler *tplimpl.TemplateStore
|
|
templ *tplimpl.TemplInfo
|
|
resolvePosition func(ctx any) text.Position
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderLink(cctx context.Context, w io.Writer, ctx hooks.LinkContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderHeading(cctx context.Context, w io.Writer, ctx hooks.HeadingContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderCodeblock(cctx context.Context, w hugio.FlexiWriter, ctx hooks.CodeblockContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderPassthrough(cctx context.Context, w io.Writer, ctx hooks.PassthroughContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderBlockquote(cctx context.Context, w hugio.FlexiWriter, ctx hooks.BlockquoteContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) RenderTable(cctx context.Context, w hugio.FlexiWriter, ctx hooks.TableContext) error {
|
|
return hr.templateHandler.ExecuteWithContext(cctx, hr.templ, w, ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) ResolvePosition(ctx any) text.Position {
|
|
return hr.resolvePosition(ctx)
|
|
}
|
|
|
|
func (hr hookRendererTemplate) IsDefaultCodeBlockRenderer() bool {
|
|
return false
|
|
}
|
|
|
|
func (s *Site) renderForTemplate(ctx context.Context, name, outputFormat string, d any, w io.Writer, templ *tplimpl.TemplInfo) (err error) {
|
|
if templ == nil {
|
|
s.logMissingLayout(name, "", "", outputFormat)
|
|
return nil
|
|
}
|
|
|
|
if ctx == nil {
|
|
panic("nil context")
|
|
}
|
|
|
|
if err = s.GetTemplateStore().ExecuteWithContext(ctx, templ, w, d); err != nil {
|
|
filename := name
|
|
if p, ok := d.(*pageState); ok {
|
|
filename = p.String()
|
|
}
|
|
return fmt.Errorf("render of %q failed: %w", filename, err)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (s *Site) shouldBuild(p page.Page) bool {
|
|
if !s.conf.IsKindEnabled(p.Kind()) {
|
|
return false
|
|
}
|
|
return shouldBuild(s.Conf.BuildFuture(), s.Conf.BuildExpired(),
|
|
s.Conf.BuildDrafts(), p.Draft(), p.PublishDate(), p.ExpiryDate())
|
|
}
|
|
|
|
func shouldBuild(buildFuture bool, buildExpired bool, buildDrafts bool, Draft bool,
|
|
publishDate time.Time, expiryDate time.Time,
|
|
) bool {
|
|
if !(buildDrafts || !Draft) {
|
|
return false
|
|
}
|
|
hnow := htime.Now()
|
|
if !buildFuture && !publishDate.IsZero() && publishDate.After(hnow) {
|
|
return false
|
|
}
|
|
if !buildExpired && !expiryDate.IsZero() && expiryDate.Before(hnow) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (s *Site) render(ctx *siteRenderContext) (err error) {
|
|
if err := page.Clear(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = s.renderPages(ctx); err != nil {
|
|
return
|
|
}
|
|
|
|
if !ctx.shouldRenderStandalonePage("") {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func (s *Site) String() string {
|
|
if s == nil {
|
|
return "Site (nil)"
|
|
}
|
|
|
|
return fmt.Sprintf("Site %v: %s", s.siteVector, s.resolveDimensionNames())
|
|
}
|