| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package config
-
- import (
- "bytes"
- "encoding/json"
- "fmt"
-
- "github.com/9seconds/mtg/v2/mtglib"
- )
-
- type Optional struct {
- Enabled TypeBool `json:"enabled"`
- }
-
- type ListConfig struct {
- Optional
-
- DownloadConcurrency TypeConcurrency `json:"downloadConcurrency"`
- URLs []TypeBlocklistURI `json:"urls"`
- UpdateEach TypeDuration `json:"updateEach"`
- }
-
- type Config struct {
- Debug TypeBool `json:"debug"`
- AllowFallbackOnUnknownDC TypeBool `json:"allowFallbackOnUnknownDc"`
- Secret mtglib.Secret `json:"secret"`
- BindTo TypeHostPort `json:"bindTo"`
- PreferIP TypePreferIP `json:"preferIp"`
- DomainFrontingPort TypePort `json:"domainFrontingPort"`
- TolerateTimeSkewness TypeDuration `json:"tolerateTimeSkewness"`
- Concurrency TypeConcurrency `json:"concurrency"`
- Defense struct {
- AntiReplay struct {
- Optional
-
- MaxSize TypeBytes `json:"maxSize"`
- ErrorRate TypeErrorRate `json:"errorRate"`
- } `json:"antiReplay"`
- Blocklist ListConfig `json:"blocklist"`
- Allowlist ListConfig `json:"allowlist"`
- } `json:"defense"`
- Network struct {
- Timeout struct {
- TCP TypeDuration `json:"tcp"`
- HTTP TypeDuration `json:"http"`
- Idle TypeDuration `json:"idle"`
- } `json:"timeout"`
- DOHIP TypeIP `json:"dohIp"`
- Proxies []TypeProxyURL `json:"proxies"`
- } `json:"network"`
- Stats struct {
- StatsD struct {
- Optional
-
- Address TypeHostPort `json:"address"`
- MetricPrefix TypeMetricPrefix `json:"metricPrefix"`
- TagFormat TypeStatsdTagFormat `json:"tagFormat"`
- } `json:"statsd"`
- Prometheus struct {
- Optional
-
- BindTo TypeHostPort `json:"bindTo"`
- HTTPPath TypeHTTPPath `json:"httpPath"`
- MetricPrefix TypeMetricPrefix `json:"metricPrefix"`
- } `json:"prometheus"`
- } `json:"stats"`
- DCOverrides []struct {
- DC TypeDC `json:"dc"`
- IPs []TypeHostPort `json:"ips"`
- } `json:"dcOverrides"`
- }
-
- func (c *Config) Validate() error {
- if !c.Secret.Valid() {
- return fmt.Errorf("invalid secret %s", c.Secret.String())
- }
-
- if c.BindTo.Get("") == "" {
- return fmt.Errorf("incorrect bind-to parameter %s", c.BindTo.String())
- }
-
- return nil
- }
-
- func (c *Config) String() string {
- buf := &bytes.Buffer{}
- encoder := json.NewEncoder(buf)
-
- encoder.SetEscapeHTML(false)
-
- if err := encoder.Encode(c); err != nil {
- panic(err)
- }
-
- return buf.String()
- }
|