]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blob - config.go
First working version
[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 )
46
47 func (t *FileType) UnmarshalText(text []byte) error {
48         switch string(text) {
49         case "plain":
50                 *t = FileTypePlain
51         case "passwd":
52                 *t = FileTypePasswd
53         default:
54                 return fmt.Errorf("invalid file type %q", text)
55         }
56         return nil
57 }
58
59 func LoadConfig(path string) (*Config, error) {
60         var cfg Config
61
62         md, err := toml.DecodeFile(path, &cfg)
63         if err != nil {
64                 return nil, err
65         }
66         undecoded := md.Undecoded()
67         if len(undecoded) != 0 {
68                 return nil, fmt.Errorf("invalid fields used: %q", undecoded)
69         }
70
71         if cfg.StatePath == "" {
72                 return nil, fmt.Errorf("statepath must not be empty")
73         }
74
75         for i, f := range cfg.Files {
76                 if f.Url == "" {
77                         return nil, fmt.Errorf(
78                                 "file[%d].url must not be empty", i)
79                 }
80                 if f.Path == "" {
81                         return nil, fmt.Errorf(
82                                 "file[%d].path must not be empty", i)
83                 }
84         }
85
86         return &cfg, nil
87 }