summaryrefslogtreecommitdiff
path: root/internal/configuration/types.go
blob: 0a7c3d106c47f01a0e8118737f3d7f72bfbc8c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package configuration

import (
	"github.com/knadh/koanf/v2"
	"github.com/spf13/pflag"

	"github.com/authelia/authelia/v4/internal/configuration/schema"
)

// Source is an abstract representation of a configuration configuration.Source implementation.
type Source interface {
	Name() (name string)
	Merge(ko *koanf.Koanf, val *schema.StructValidator) (err error)
	Load(val *schema.StructValidator) (err error)
}

// FileSource is a file configuration.Source.
type FileSource struct {
	koanf     *koanf.Koanf
	provider  *FilteredFile
	providers map[string]*FilteredFile
	path      string
	filters   []BytesFilter
}

// BytesSource is a raw bytes configuration.Source.
type BytesSource struct {
	koanf   *koanf.Koanf
	data    []byte
	filters []BytesFilter
}

// EnvironmentSource is a configuration.Source which loads values from the environment.
type EnvironmentSource struct {
	koanf     *koanf.Koanf
	prefix    string
	delimiter string
}

// SecretsSource is a configuration.Source which loads environment variables that have a value pointing to a file.
type SecretsSource struct {
	koanf     *koanf.Koanf
	prefix    string
	delimiter string
}

// CommandLineSource is a configuration.Source which loads configuration from the command line flags.
type CommandLineSource struct {
	koanf    *koanf.Koanf
	flags    *pflag.FlagSet
	callback func(flag *pflag.Flag) (string, any)
}

// MapSource is a configuration.Source which loads configuration from the command line flags.
type MapSource struct {
	m     map[string]any
	koanf *koanf.Koanf
}

// File represents a file path and data content as bytes.
type File struct {
	Path string
	Data []byte
}