mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	The main motivation behind this is simplicity and correctnes, but the new small config library is also faster: ``` BenchmarkDefaultConfigProvider/Viper-16 252418 4546 ns/op 2720 B/op 30 allocs/op BenchmarkDefaultConfigProvider/Custom-16 450756 2651 ns/op 1008 B/op 6 allocs/op ``` Fixes #8633 Fixes #8618 Fixes #8630 Updates #8591 Closes #6680 Closes #5192
		
			
				
	
	
		
			57 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.0 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{})
 | 
						|
	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")
 | 
						|
}
 |