aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/config.go
blob: cbde37a23858fa74d6f77a1b8319f54ffc9daad8 (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
package main

import (
	"log"

	"github.com/BurntSushi/toml"
)

type Config struct {
	Provider map[string]Provider
	Account  map[string]Account
	Desire   map[string]Desire
	Hook     map[string]Hook
}

type Provider struct {
	Directory string
}

type Account struct {
	Mail     string
	Key      string
	Provider string
}

type Desire struct {
	Altnames  []string
	Key       string
	Cert      string
	Webroot   string
	Account   string
	Gracetime string
	Hook      string
}

type Hook struct {
	CMD string
}

func ReadConfig(fname string) Config {
	var c Config
	_, err := toml.DecodeFile(fname, &c)
	if err != nil {
		log.Fatal(err)
	}
	return c
}