diff options
author | Robin Jarry <robin@jarry.cc> | 2023-02-21 16:18:54 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-03-02 23:56:13 +0100 |
commit | b63c93563c622e70cda7006c1816dc6b59e75844 (patch) | |
tree | 821bd7636cf676640e7b391d8ce015bb33f2843e /config/viewer.go | |
parent | d9a8edd8e9269aa1189d55c8d13caa05084435f5 (diff) | |
download | aerc-b63c93563c622e70cda7006c1816dc6b59e75844.tar.gz |
config: use reflection to map ini keys to struct fields
The default ini.Section.MapTo() function only handles basic types.
Implement a more complete mapping solution that allows:
* parsing templates, regexps, email addresses
* defining a custom parsing method via the `parse:"MethodName"` tag
* defining default values via the `default:"value"` tag
* parsing rune values with the `type:"rune"` tag
The field name must be specified in the `ini:"field-name"` tag as it was
before. It is no longer optional.
The `delim:"<separator>"` tag remains but can only be used to parse
string arrays.
It is now possible to override default values with "zero" values. For
example:
[ui]
dirlist-delay = 0
Will override the default "200ms" value. Also:
[statusline]
status-columns =
Will override the default "left<*,center>=,right>*" value.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'config/viewer.go')
-rw-r--r-- | config/viewer.go | 49 |
1 files changed, 12 insertions, 37 deletions
diff --git a/config/viewer.go b/config/viewer.go index c359f43b..091fb4b6 100644 --- a/config/viewer.go +++ b/config/viewer.go @@ -1,56 +1,31 @@ package config import ( - "strings" - "git.sr.ht/~rjarry/aerc/log" "github.com/go-ini/ini" ) type ViewerConfig struct { - Pager string - Alternatives []string + Pager string `ini:"pager" default:"less -R"` + Alternatives []string `ini:"alternatives" default:"text/plain,text/html" delim:","` ShowHeaders bool `ini:"show-headers"` AlwaysShowMime bool `ini:"always-show-mime"` - ParseHttpLinks bool `ini:"parse-http-links"` - HeaderLayout [][]string `ini:"-"` - KeyPassthrough bool `ini:"-"` -} - -func defaultViewerConfig() *ViewerConfig { - return &ViewerConfig{ - Pager: "less -R", - Alternatives: []string{"text/plain", "text/html"}, - ShowHeaders: false, - HeaderLayout: [][]string{ - {"From", "To"}, - {"Cc", "Bcc"}, - {"Date"}, - {"Subject"}, - }, - ParseHttpLinks: true, - } + ParseHttpLinks bool `ini:"parse-http-links" default:"true"` + HeaderLayout [][]string `ini:"header-layout" parse:"ParseLayout" default:"From|To,Cc|Bcc,Date,Subject"` + KeyPassthrough bool } -var Viewer = defaultViewerConfig() +var Viewer = new(ViewerConfig) func parseViewer(file *ini.File) error { - viewer, err := file.GetSection("viewer") - if err != nil { - goto out - } - if err := viewer.MapTo(&Viewer); err != nil { + if err := MapToStruct(file.Section("viewer"), Viewer, true); err != nil { return err } - for key, val := range viewer.KeysHash() { - switch key { - case "alternatives": - Viewer.Alternatives = strings.Split(val, ",") - case "header-layout": - Viewer.HeaderLayout = parseLayout(val) - } - } -out: log.Debugf("aerc.conf: [viewer] %#v", Viewer) return nil } + +func (v *ViewerConfig) ParseLayout(sec *ini.Section, key *ini.Key) ([][]string, error) { + layout := parseLayout(key.String()) + return layout, nil +} |