mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 07:18:54 +00:00
70db201ed4
This allows @import statements to be resolved in a set of user provided resources (e.g. from resources.FromString or css.ChromaStyles) before the assets filesystem. The option also applies to css.PostCSS via the shared import inlining, and css.Sass requires the dartsass transpiler. The import context is part of the transformation cache key. Fixes #15103 Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
236 lines
6.1 KiB
Go
236 lines
6.1 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 resources
|
|
|
|
import (
|
|
"fmt"
|
|
"path"
|
|
"sync"
|
|
|
|
"github.com/bep/helpers/maphelpers"
|
|
"github.com/gohugoio/hugo/config"
|
|
"github.com/gohugoio/hugo/config/allconfig"
|
|
"github.com/gohugoio/hugo/internal/warpc"
|
|
"github.com/gohugoio/hugo/output"
|
|
"github.com/gohugoio/hugo/resources/internal"
|
|
"github.com/gohugoio/hugo/resources/jsconfig"
|
|
"github.com/gohugoio/hugo/resources/page/pagemeta"
|
|
|
|
"github.com/gohugoio/hugo/common/herrors"
|
|
"github.com/gohugoio/hugo/common/hexec"
|
|
"github.com/gohugoio/hugo/common/hsync"
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
"github.com/gohugoio/hugo/common/paths"
|
|
"github.com/gohugoio/hugo/common/types"
|
|
|
|
"github.com/gohugoio/hugo/identity"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
"github.com/gohugoio/hugo/resources/postpub"
|
|
|
|
"github.com/gohugoio/hugo/cache/dynacache"
|
|
"github.com/gohugoio/hugo/cache/filecache"
|
|
"github.com/gohugoio/hugo/media"
|
|
"github.com/gohugoio/hugo/resources/images"
|
|
"github.com/gohugoio/hugo/resources/page"
|
|
"github.com/gohugoio/hugo/resources/resource"
|
|
)
|
|
|
|
func NewSpec(
|
|
s *helpers.PathSpec,
|
|
common *SpecCommon, // may be nil
|
|
wasmDispatchers *warpc.Dispatchers,
|
|
fileCaches filecache.Caches,
|
|
memCache *dynacache.Cache,
|
|
incr identity.Incrementer,
|
|
logger loggers.Logger,
|
|
errorHandler herrors.ErrorSender,
|
|
execHelper *hexec.Exec,
|
|
buildClosers types.CloseAdder,
|
|
rebuilder Rebuilder,
|
|
) (*Spec, error) {
|
|
conf := s.Cfg.GetConfig().(*allconfig.Config)
|
|
imgConfig := conf.Imaging
|
|
|
|
imagesDebugl := logger.DebugCommand("images")
|
|
imagesWarnl := logger.WarnCommand("images")
|
|
|
|
imaging, err := images.NewImageProcessor(imagesDebugl, imagesWarnl, wasmDispatchers, imgConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if incr == nil {
|
|
incr = &identity.IncrementByOne{}
|
|
}
|
|
|
|
if logger == nil {
|
|
logger = loggers.NewDefault()
|
|
}
|
|
|
|
permalinks, err := page.NewPermalinkExpander(s.URLize, conf.Permalinks)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if common == nil {
|
|
common = &SpecCommon{
|
|
incr: incr,
|
|
FileCaches: fileCaches,
|
|
PostBuildAssets: &PostBuildAssets{
|
|
PostProcessResources: maphelpers.NewConcurrentMap[string, postpub.PostPublishedResource](),
|
|
JSConfigBuilder: jsconfig.NewBuilder(),
|
|
},
|
|
}
|
|
}
|
|
|
|
rs := &Spec{
|
|
PathSpec: s,
|
|
Logger: logger,
|
|
ErrorSender: errorHandler,
|
|
BuildClosers: buildClosers,
|
|
Rebuilder: rebuilder,
|
|
Imaging: imaging,
|
|
ImageCache: newImageCache(
|
|
fileCaches.ImageCache(),
|
|
memCache,
|
|
s,
|
|
),
|
|
ExecHelper: execHelper,
|
|
|
|
Permalinks: permalinks,
|
|
|
|
SpecCommon: common,
|
|
}
|
|
|
|
rs.ResourceCache = newResourceCache(rs, memCache)
|
|
|
|
return rs, nil
|
|
}
|
|
|
|
type Rebuilder interface {
|
|
identity.SignalRebuilder
|
|
identity.IsRebuildProvider
|
|
}
|
|
|
|
type Spec struct {
|
|
*helpers.PathSpec
|
|
|
|
Logger loggers.Logger
|
|
ErrorSender herrors.ErrorSender
|
|
BuildClosers types.CloseAdder
|
|
Rebuilder Rebuilder
|
|
|
|
Permalinks page.PermalinkExpander
|
|
|
|
ImageCache *ImageCache
|
|
|
|
// Holds default filter settings etc.
|
|
Imaging *images.ImageProcessor
|
|
|
|
ExecHelper *hexec.Exec
|
|
|
|
*SpecCommon
|
|
}
|
|
|
|
// The parts of Spec that's common for all sites.
|
|
type SpecCommon struct {
|
|
incr identity.Incrementer
|
|
ResourceCache *ResourceCache
|
|
FileCaches filecache.Caches
|
|
|
|
// Assets used after the build is done.
|
|
// This is shared between all sites.
|
|
*PostBuildAssets
|
|
}
|
|
|
|
type PostBuildAssets struct {
|
|
PostProcessResources *maphelpers.ConcurrentMap[string, postpub.PostPublishedResource]
|
|
JSConfigBuilder *jsconfig.Builder
|
|
}
|
|
|
|
func (r *Spec) NewResourceWrapperFromResourceConfig(rc *pagemeta.ResourceConfig) (resource.Resource, error) {
|
|
content := rc.Content
|
|
switch r := content.Value.(type) {
|
|
case resource.Resource:
|
|
return cloneWithMetadataFromResourceConfigIfNeeded(rc, r), nil
|
|
default:
|
|
return nil, fmt.Errorf("failed to create resource for path %q, expected a resource.Resource, got %T", rc.PathInfo.Path(), content.Value)
|
|
}
|
|
}
|
|
|
|
// NewResource creates a new Resource from the given ResourceSourceDescriptor.
|
|
func (r *Spec) NewResource(rd ResourceSourceDescriptor) (resource.Resource, error) {
|
|
if err := rd.init(r); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
dir, name := path.Split(rd.TargetPath)
|
|
dir = paths.ToSlashPreserveLeading(dir)
|
|
if dir == "/" {
|
|
dir = ""
|
|
}
|
|
rp := internal.ResourcePaths{
|
|
File: name,
|
|
Dir: dir,
|
|
BaseDirTarget: rd.BasePathTargetPath,
|
|
BaseDirLink: rd.BasePathRelPermalink,
|
|
TargetBasePaths: rd.TargetBasePaths,
|
|
}
|
|
|
|
isImage := rd.MediaType.MainType == "image"
|
|
var imgFormat images.Format
|
|
var imgOpsSupport images.ImageResourceType
|
|
if isImage {
|
|
imgFormat, imgOpsSupport = images.ImageFormatFromMediaSubType(rd.MediaType.SubType)
|
|
}
|
|
|
|
gr := &genericResource{
|
|
Staler: &AtomicStaler{},
|
|
h: &resourceHash{},
|
|
publishInit: &hsync.OnceMore{},
|
|
keyInit: &sync.Once{},
|
|
includeHashInKey: isImage || rd.IncludeHashInKey,
|
|
paths: rp,
|
|
spec: r,
|
|
sd: rd,
|
|
params: rd.Params,
|
|
name: rd.NameOriginal,
|
|
title: rd.Title,
|
|
}
|
|
|
|
if imgOpsSupport >= images.ImageResourceTypeMetaOnly {
|
|
ir := newImageResource(images.NewImage(imgFormat, r.Imaging, nil, gr), gr)
|
|
return newResourceAdapter(gr.spec, rd.LazyPublish, ir), nil
|
|
}
|
|
|
|
return newResourceAdapter(gr.spec, rd.LazyPublish, gr), nil
|
|
}
|
|
|
|
func (r *Spec) MediaTypes() media.Types {
|
|
return r.Cfg.GetConfigSection("mediaTypes").(media.Types)
|
|
}
|
|
|
|
func (r *Spec) OutputFormats() output.Formats {
|
|
return r.Cfg.GetConfigSection("outputFormats").(output.Formats)
|
|
}
|
|
|
|
func (r *Spec) BuildConfig() config.BuildConfig {
|
|
return r.Cfg.GetConfigSection("build").(config.BuildConfig)
|
|
}
|
|
|
|
func (s *Spec) String() string {
|
|
return "spec"
|
|
}
|