mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
4a9d408fe0
Fixes #8679
57 lines
2 KiB
Go
57 lines
2 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 config
|
|
|
|
import (
|
|
"github.com/gohugoio/hugo/common/maps"
|
|
"github.com/gohugoio/hugo/common/types"
|
|
)
|
|
|
|
// Provider provides the configuration settings for Hugo.
|
|
type Provider interface {
|
|
GetString(key string) string
|
|
GetInt(key string) int
|
|
GetBool(key string) bool
|
|
GetParams(key string) maps.Params
|
|
GetStringMap(key string) map[string]interface{}
|
|
GetStringMapString(key string) map[string]string
|
|
GetStringSlice(key string) []string
|
|
Get(key string) interface{}
|
|
Set(key string, value interface{})
|
|
Merge(key string, value interface{})
|
|
SetDefaults(params maps.Params)
|
|
SetDefaultMergeStrategy()
|
|
WalkParams(walkFn func(params ...KeyParams) bool)
|
|
IsSet(key string) bool
|
|
}
|
|
|
|
// GetStringSlicePreserveString returns a string slice from the given config and key.
|
|
// It differs from the GetStringSlice method in that if the config value is a string,
|
|
// we do not attempt to split it into fields.
|
|
func GetStringSlicePreserveString(cfg Provider, key string) []string {
|
|
sd := cfg.Get(key)
|
|
return types.ToStringSlicePreserveString(sd)
|
|
}
|
|
|
|
// SetBaseTestDefaults provides some common config defaults used in tests.
|
|
func SetBaseTestDefaults(cfg Provider) {
|
|
cfg.Set("resourceDir", "resources")
|
|
cfg.Set("contentDir", "content")
|
|
cfg.Set("dataDir", "data")
|
|
cfg.Set("i18nDir", "i18n")
|
|
cfg.Set("layoutDir", "layouts")
|
|
cfg.Set("assetDir", "assets")
|
|
cfg.Set("archetypeDir", "archetypes")
|
|
cfg.Set("publishDir", "public")
|
|
}
|