]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - config.go
nss: Makefile: don't link against asan
[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
36         body []byte // internally used by handleFiles()
37 }
38
39 //go:generate stringer -type=FileType
40 type FileType int
41
42 const (
43         FileTypePlain FileType = iota
44         FileTypePasswd
45         FileTypeGroup
46 )
47
48 func (t *FileType) UnmarshalText(text []byte) error {
49         switch string(text) {
50         case "plain":
51                 *t = FileTypePlain
52         case "passwd":
53                 *t = FileTypePasswd
54         case "group":
55                 *t = FileTypeGroup
56         default:
57                 return fmt.Errorf("invalid file type %q", text)
58         }
59         return nil
60 }
61
62 func LoadConfig(path string) (*Config, error) {
63         var cfg Config
64
65         md, err := toml.DecodeFile(path, &cfg)
66         if err != nil {
67                 return nil, err
68         }
69         undecoded := md.Undecoded()
70         if len(undecoded) != 0 {
71                 return nil, fmt.Errorf("invalid fields used: %q", undecoded)
72         }
73
74         if cfg.StatePath == "" {
75                 return nil, fmt.Errorf("statepath must not be empty")
76         }
77
78         for i, f := range cfg.Files {
79                 if f.Url == "" {
80                         return nil, fmt.Errorf(
81                                 "file[%d].url must not be empty", i)
82                 }
83                 if f.Path == "" {
84                         return nil, fmt.Errorf(
85                                 "file[%d].path must not be empty", i)
86                 }
87         }
88
89         return &cfg, nil
90 }