2023-06-10 16:21:38 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io/fs"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
customize struct {
|
2023-06-26 21:01:06 +00:00
|
|
|
AppIcon string `json:"appIcon,omitempty" yaml:"appIcon"`
|
|
|
|
AppTitle string `json:"appTitle,omitempty" yaml:"appTitle"`
|
|
|
|
DisableAppTitle bool `json:"disableAppTitle,omitempty" yaml:"disableAppTitle"`
|
|
|
|
DisableExpiryOverride bool `json:"disableExpiryOverride,omitempty" yaml:"disableExpiryOverride"`
|
|
|
|
DisablePoweredBy bool `json:"disablePoweredBy,omitempty" yaml:"disablePoweredBy"`
|
|
|
|
DisableQRSupport bool `json:"disableQRSupport,omitempty" yaml:"disableQRSupport"`
|
|
|
|
DisableThemeSwitcher bool `json:"disableThemeSwitcher,omitempty" yaml:"disableThemeSwitcher"`
|
|
|
|
ExpiryChoices []int64 `json:"expiryChoices,omitempty" yaml:"expiryChoices"`
|
|
|
|
OverlayFSPath string `json:"-" yaml:"overlayFSPath"`
|
2023-07-05 20:52:09 +00:00
|
|
|
UseFormalLanguage bool `json:"-" yaml:"useFormalLanguage"`
|
2023-06-10 16:21:38 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func loadCustomize(filename string) (customize, error) {
|
|
|
|
if filename == "" {
|
|
|
|
// None given, take a shortcut
|
|
|
|
return customize{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var cust customize
|
|
|
|
|
|
|
|
cf, err := os.Open(filename)
|
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
|
|
logrus.Warn("customize file given but not found")
|
|
|
|
return cust, nil
|
|
|
|
}
|
|
|
|
return cust, errors.Wrap(err, "opening customize file")
|
|
|
|
}
|
|
|
|
defer cf.Close()
|
|
|
|
|
|
|
|
return cust, errors.Wrap(
|
|
|
|
yaml.NewDecoder(cf).Decode(&cust),
|
|
|
|
"decoding customize file",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c customize) ToJSON() (string, error) {
|
|
|
|
j, err := json.Marshal(c)
|
|
|
|
return string(j), errors.Wrap(err, "marshalling JSON")
|
|
|
|
}
|