]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - config.go
nsscash: add "ca" option for files
[nsscash/nsscash.git] / config.go
1 // Configuration file parsing and validation
2
3 // Copyright (C) 2019  Simon Ruderich
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Affero General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU Affero General Public License for more details.
14 //
15 // You should have received a copy of the GNU Affero General Public License
16 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18 package main
19
20 import (
21         "fmt"
22
23         "github.com/BurntSushi/toml"
24 )
25
26 type Config struct {
27         StatePath string
28         Files     []File `toml:"file"`
29 }
30
31 type File struct {
32         Type FileType
33         Url  string
34         Path string
35         CA   string
36
37         body []byte // internally used by handleFiles()
38 }
39
40 //go:generate stringer -type=FileType
41 type FileType int
42
43 const (
44         FileTypePlain FileType = iota
45         FileTypePasswd
46         FileTypeGroup
47 )
48
49 func (t *FileType) UnmarshalText(text []byte) error {
50         switch string(text) {
51         case "plain":
52                 *t = FileTypePlain
53         case "passwd":
54                 *t = FileTypePasswd
55         case "group":
56                 *t = FileTypeGroup
57         default:
58                 return fmt.Errorf("invalid file type %q", text)
59         }
60         return nil
61 }
62
63 func LoadConfig(path string) (*Config, error) {
64         var cfg Config
65
66         md, err := toml.DecodeFile(path, &cfg)
67         if err != nil {
68                 return nil, err
69         }
70         undecoded := md.Undecoded()
71         if len(undecoded) != 0 {
72                 return nil, fmt.Errorf("invalid fields used: %q", undecoded)
73         }
74
75         if cfg.StatePath == "" {
76                 return nil, fmt.Errorf("statepath must not be empty")
77         }
78
79         for i, f := range cfg.Files {
80                 if f.Url == "" {
81                         return nil, fmt.Errorf(
82                                 "file[%d].url must not be empty", i)
83                 }
84                 if f.Path == "" {
85                         return nil, fmt.Errorf(
86                                 "file[%d].path must not be empty", i)
87                 }
88         }
89
90         return &cfg, nil
91 }