2021-12-19 04:02:36 +01:00
|
|
|
package server
|
2021-10-24 03:29:45 +02:00
|
|
|
|
2021-10-24 04:49:50 +02:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Defines default config settings
|
2021-10-24 03:29:45 +02:00
|
|
|
const (
|
2021-12-14 04:30:28 +01:00
|
|
|
DefaultListenHTTP = ":80"
|
|
|
|
DefaultCacheDuration = 12 * time.Hour
|
|
|
|
DefaultKeepaliveInterval = 30 * time.Second
|
|
|
|
DefaultManagerInterval = time.Minute
|
|
|
|
DefaultAtSenderInterval = 10 * time.Second
|
|
|
|
DefaultMinDelay = 10 * time.Second
|
|
|
|
DefaultMaxDelay = 3 * 24 * time.Hour
|
2021-12-31 16:12:53 +01:00
|
|
|
DefaultMessageLimit = 4096
|
2021-12-14 04:30:28 +01:00
|
|
|
DefaultFirebaseKeepaliveInterval = time.Hour
|
2021-10-24 04:49:50 +02:00
|
|
|
)
|
|
|
|
|
2021-11-01 21:39:40 +01:00
|
|
|
// Defines all the limits
|
|
|
|
// - global topic limit: max number of topics overall
|
2021-12-18 20:43:27 +01:00
|
|
|
// - per visitor request limit: max number of PUT/GET/.. requests (here: 60 requests bucket, replenished at a rate of one per 10 seconds)
|
2021-12-24 00:03:04 +01:00
|
|
|
// - per visitor email limit: max number of emails (here: 16 email bucket, replenished at a rate of one per hour)
|
2021-12-18 20:43:27 +01:00
|
|
|
// - per visitor subscription limit: max number of subscriptions (active HTTP connections) per per-visitor/IP
|
2021-11-05 18:46:27 +01:00
|
|
|
const (
|
|
|
|
DefaultGlobalTopicLimit = 5000
|
|
|
|
DefaultVisitorRequestLimitBurst = 60
|
|
|
|
DefaultVisitorRequestLimitReplenish = 10 * time.Second
|
2021-12-24 00:03:04 +01:00
|
|
|
DefaultVisitorEmailLimitBurst = 16
|
|
|
|
DefaultVisitorEmailLimitReplenish = time.Hour
|
2021-11-05 18:46:27 +01:00
|
|
|
DefaultVisitorSubscriptionLimit = 30
|
2021-10-24 03:29:45 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Config is the main config struct for the application. Use New to instantiate a default config struct.
|
|
|
|
type Config struct {
|
2021-12-25 00:13:09 +01:00
|
|
|
BaseURL string
|
2021-11-05 18:46:27 +01:00
|
|
|
ListenHTTP string
|
2021-12-07 16:38:58 +01:00
|
|
|
ListenHTTPS string
|
|
|
|
KeyFile string
|
|
|
|
CertFile string
|
2021-11-05 18:46:27 +01:00
|
|
|
FirebaseKeyFile string
|
|
|
|
CacheFile string
|
|
|
|
CacheDuration time.Duration
|
|
|
|
KeepaliveInterval time.Duration
|
|
|
|
ManagerInterval time.Duration
|
2021-12-10 17:31:42 +01:00
|
|
|
AtSenderInterval time.Duration
|
2021-12-14 04:30:28 +01:00
|
|
|
FirebaseKeepaliveInterval time.Duration
|
2021-12-27 16:39:28 +01:00
|
|
|
SMTPSenderAddr string
|
|
|
|
SMTPSenderUser string
|
|
|
|
SMTPSenderPass string
|
|
|
|
SMTPSenderFrom string
|
|
|
|
SMTPServerListen string
|
|
|
|
SMTPServerDomain string
|
|
|
|
SMTPServerAddrPrefix string
|
2021-12-11 04:57:01 +01:00
|
|
|
MessageLimit int
|
|
|
|
MinDelay time.Duration
|
|
|
|
MaxDelay time.Duration
|
2021-11-05 18:46:27 +01:00
|
|
|
GlobalTopicLimit int
|
|
|
|
VisitorRequestLimitBurst int
|
|
|
|
VisitorRequestLimitReplenish time.Duration
|
2021-12-24 00:03:04 +01:00
|
|
|
VisitorEmailLimitBurst int
|
|
|
|
VisitorEmailLimitReplenish time.Duration
|
2021-11-05 18:46:27 +01:00
|
|
|
VisitorSubscriptionLimit int
|
|
|
|
BehindProxy bool
|
2021-10-24 03:29:45 +02:00
|
|
|
}
|
|
|
|
|
2021-12-19 20:27:26 +01:00
|
|
|
// NewConfig instantiates a default new server config
|
2021-12-22 14:17:50 +01:00
|
|
|
func NewConfig() *Config {
|
2021-10-24 03:29:45 +02:00
|
|
|
return &Config{
|
2021-12-25 00:13:09 +01:00
|
|
|
BaseURL: "",
|
2021-12-22 14:17:50 +01:00
|
|
|
ListenHTTP: DefaultListenHTTP,
|
2021-12-07 16:38:58 +01:00
|
|
|
ListenHTTPS: "",
|
|
|
|
KeyFile: "",
|
|
|
|
CertFile: "",
|
2021-11-05 18:46:27 +01:00
|
|
|
FirebaseKeyFile: "",
|
|
|
|
CacheFile: "",
|
|
|
|
CacheDuration: DefaultCacheDuration,
|
|
|
|
KeepaliveInterval: DefaultKeepaliveInterval,
|
|
|
|
ManagerInterval: DefaultManagerInterval,
|
2021-12-11 04:57:01 +01:00
|
|
|
MessageLimit: DefaultMessageLimit,
|
|
|
|
MinDelay: DefaultMinDelay,
|
|
|
|
MaxDelay: DefaultMaxDelay,
|
2021-12-10 17:31:42 +01:00
|
|
|
AtSenderInterval: DefaultAtSenderInterval,
|
2021-12-14 04:30:28 +01:00
|
|
|
FirebaseKeepaliveInterval: DefaultFirebaseKeepaliveInterval,
|
2021-11-05 18:46:27 +01:00
|
|
|
GlobalTopicLimit: DefaultGlobalTopicLimit,
|
|
|
|
VisitorRequestLimitBurst: DefaultVisitorRequestLimitBurst,
|
|
|
|
VisitorRequestLimitReplenish: DefaultVisitorRequestLimitReplenish,
|
2021-12-24 00:03:04 +01:00
|
|
|
VisitorEmailLimitBurst: DefaultVisitorEmailLimitBurst,
|
|
|
|
VisitorEmailLimitReplenish: DefaultVisitorEmailLimitReplenish,
|
2021-11-05 18:46:27 +01:00
|
|
|
VisitorSubscriptionLimit: DefaultVisitorSubscriptionLimit,
|
|
|
|
BehindProxy: false,
|
2021-10-24 03:29:45 +02:00
|
|
|
}
|
|
|
|
}
|