vegvisir/pkg/config/config.go

90 lines
1.5 KiB
Go
Raw Permalink Normal View History

// ___ ____ ___ ___
// \ \ / / | _ | __| \ \ / / || | __ || || _ |
// \ \/ / |___ | |__ \ \/ / || |___ || ||___|
// \ / | _ | _ | \ / || __ | || ||\\
// \/ |___ |___ | \/ || ____| || || \\
//
// Copyright (c) 2021 Piotr Biernat. https://pbiernat.dev. MIT License
// Repo: https://git.pbiernat.dev/golang/vegvisir
package config
import (
"encoding/json"
"io/ioutil"
"os"
)
2021-08-03 00:13:14 +02:00
// Config struct
2021-07-08 22:32:49 +02:00
type Config struct {
Server Server
Cache Cache
Backends map[string]Backend
confPath string
2021-07-08 22:32:49 +02:00
}
2021-08-03 00:13:14 +02:00
// Server struct
2021-07-08 22:32:49 +02:00
type Server struct {
Address string
Port int
}
2021-08-03 00:13:14 +02:00
// Cache struct
type Cache struct {
Type string
Host string
Port int
Username string
Password string
Database string
2021-08-03 00:13:14 +02:00
RouteTTL int
ResponseTTL int
}
2021-08-03 00:13:14 +02:00
// Backend struct
type Backend struct {
2021-08-03 00:13:14 +02:00
PrefixURL string
BackendAddress string
Protocol string
Routes []Route
}
2021-08-03 00:13:14 +02:00
// Route struct
type Route struct {
Pattern string
Target string
}
2021-08-03 00:13:14 +02:00
// DefaultRoute shorthand
var DefaultRoute = Route{
Pattern: "(.*)",
Target: "",
2021-07-08 22:32:49 +02:00
}
2021-08-03 00:13:14 +02:00
// New function
func New(confPath string) *Config {
return &Config{
confPath: confPath,
}
}
2021-08-03 00:13:14 +02:00
// Load function
func (c *Config) Load() error {
if _, err := os.Stat(c.confPath); err != nil {
return err
}
data, err := ioutil.ReadFile(c.confPath)
if err != nil {
return err
}
err = json.Unmarshal(data, &c)
if err != nil {
return err
}
return nil
}