Home

Awesome

godoc for greencoda/confiq Go 1.22 Build Status Go Coverage Go Report card

<p align="center"><img src=".github/splash_image.png" width="500"></p>

confiq

confiq is a Go package for populating structs or arrays from structured data formats such JSON, TOML, YAML or Env, by using struct tags to map the loaded values to fields, using a selector path syntax which can traverse maps by keys and arrays by their indices.

The data can be loaded either from files, strings, byte arrays, readers and in case of environment variable formats from the actual environment.

Install

go get -u github.com/greencoda/confiq

Example

Provide the configuration data in a supported format:

config.json

{
    "serverHost": "http://localhost",
    "port": 8000,
    "settings": {
        "readOnlyMode": true,
        "maxConnections": 10,
        "disallowedUsernames": ["badUser1", "badUser2"]
    },
    "apiKeys": [
        "testKey1",
        "testKey2"
    ]
}

Create a new configSet using confiq.New and load the data with the appropriate Load method, depending on how you'd like to provide it. In this example we're loading it from the file system:

configSet := confiq.New()

if err := configSet.Load(
    confiqjson.Load().FromFile("./config.json"),
); err != nil {
    log.Fatal(err)
}

Define the config struct and provide the mappings in its struct tags for each field.

You may define certain fields to be required, or to have a default value if it isn't (these are mutually exclusive), or mark certain fields as strict which would cause the entire decoding process to fail if the value can not be set from the provided config data.

type Config struct {
	ServerHost          *url.URL `cfg:"serverHost,required"`
	ServerPort          string   `cfg:"port"`
	AllowedUsernames    []string `cfg:"settings.allowedUsernames,default=root;admin;developer"`
	DisallowedUsernames []string `cfg:"settings.disallowedUsernames"`
	ReadOnlyMode        bool     `cfg:"settings.readOnlyMode"`
	MaxConnections      int      `cfg:"settings.maxConnections"`
	ClientID            string   `cfg:"settings.clientId,default=defaultClient"`
	APIKey              string   `cfg:"apiKeys[1]"`
}

var config Config

Then decode the data to this struct from the loaded config data using Decode:

if err := configSet.Decode(&config); err != nil {
   // ...
}

You may also use confiq.AsStrict() option to have all fields act as if they were strict:

if err := configSet.Decode(&config, confiq.AsStrict()); err != nil {
   // ...
}

The result will be an instance of the struct loaded with data from the specified addresses of the config file:

(main.Config) {
 ServerHost: (*url.URL)(0xc0000e2090)(http://localhost),
 ServerPort: (string) (len=4) "8000",
 AllowedUsernames: ([]string) (len=3 cap=3) {
  (string) (len=4) "root",
  (string) (len=5) "admin",
  (string) (len=9) "developer"
 },
 DisallowedUsernames: ([]string) (len=2 cap=2) {
  (string) (len=8) "badUser1",
  (string) (len=8) "badUser2"
 },
 ReadOnlyMode: (bool) true,
 MaxConnections: (int) 10,
 ClientID: (string) (len=13) "defaultClient",
 APIKey: (string) (len=8) "testKey2"
}

Supported types:

confiq supports recursively decoding values into structs with exported fields, maps and slices.

Structs

Maps

Slices

Primitives

Other common types

Custom types

Pointers

Defining decoders for custom structs

For fields with custom struct types, you may implement the Decoder interface by specifying a Decode method to your type:

type customType struct {
	Value string
}

func (t *customType) Decode(value any) error {
	if stringValue, ok := value.(string); !ok {
		return errors.New("value is not a string")
	} else {
		t.Value = stringValue

		return nil
	}
}