ntfy/server/config.go

198 lines
10 KiB
Go
Raw Normal View History

2021-12-19 16:02:36 +13:00
package server
2021-10-24 15:49:50 +13:00
import (
"heckel.io/ntfy/user"
"io/fs"
"net/netip"
2021-10-24 15:49:50 +13:00
"time"
)
2022-01-13 12:52:07 +13:00
// Defines default config settings (excluding limits, see below)
const (
2022-06-01 15:27:24 +12:00
DefaultListenHTTP = ":80"
DefaultCacheDuration = 12 * time.Hour
DefaultKeepaliveInterval = 45 * time.Second // Not too frequently to save battery (Android read timeout used to be 77s!)
DefaultManagerInterval = time.Minute
DefaultDelayedSenderInterval = 10 * time.Second
DefaultMinDelay = 10 * time.Second
DefaultMaxDelay = 3 * 24 * time.Hour
DefaultFirebaseKeepaliveInterval = 3 * time.Hour // ~control topic (Android), not too frequently to save battery
DefaultFirebasePollInterval = 20 * time.Minute // ~poll topic (iOS), max. 2-3 times per hour (see docs)
DefaultFirebaseQuotaExceededPenaltyDuration = 10 * time.Minute // Time that over-users are locked out of Firebase if it returns "quota exceeded"
2023-01-19 09:50:06 +13:00
DefaultStripePriceCacheDuration = time.Hour // Time to keep Stripe prices cached in memory before a refresh is needed
2021-10-24 15:49:50 +13:00
)
2022-01-13 12:52:07 +13:00
// Defines all global and per-visitor limits
// - message size limit: the max number of bytes for a message
2022-01-04 12:55:08 +13:00
// - total topic limit: max number of topics overall
2022-01-13 12:52:07 +13:00
// - various attachment limits
const (
DefaultMessageLengthLimit = 4096 // Bytes
DefaultTotalTopicLimit = 15000
2022-01-13 15:24:48 +13:00
DefaultAttachmentTotalSizeLimit = int64(5 * 1024 * 1024 * 1024) // 5 GB
DefaultAttachmentFileSizeLimit = int64(15 * 1024 * 1024) // 15 MB
2022-01-13 12:52:07 +13:00
DefaultAttachmentExpiryDuration = 3 * time.Hour
)
// Defines all per-visitor limits
2022-01-04 12:55:08 +13:00
// - per visitor subscription limit: max number of subscriptions (active HTTP connections) per per-visitor/IP
2022-02-15 11:07:17 +13:00
// - per visitor request limit: max number of PUT/GET/.. requests (here: 60 requests bucket, replenished at a rate of one per 5 seconds)
2021-12-24 12:03:04 +13:00
// - per visitor email limit: max number of emails (here: 16 email bucket, replenished at a rate of one per hour)
2022-01-13 12:52:07 +13:00
// - per visitor attachment size limit: total per-visitor attachment size in bytes to be stored on the server
2022-01-13 15:24:48 +13:00
// - per visitor attachment daily bandwidth limit: number of bytes that can be transferred to/from the server
const (
2022-01-13 15:24:48 +13:00
DefaultVisitorSubscriptionLimit = 30
DefaultVisitorRequestLimitBurst = 60
2022-02-15 11:07:17 +13:00
DefaultVisitorRequestLimitReplenish = 5 * time.Second
2023-01-27 16:57:18 +13:00
DefaultVisitorMessageDailyLimit = 0
2022-01-13 15:24:48 +13:00
DefaultVisitorEmailLimitBurst = 16
DefaultVisitorEmailLimitReplenish = time.Hour
DefaultVisitorAccountCreationLimitBurst = 3
DefaultVisitorAccountCreationLimitReplenish = 24 * time.Hour
2022-01-13 15:24:48 +13:00
DefaultVisitorAttachmentTotalSizeLimit = 100 * 1024 * 1024 // 100 MB
DefaultVisitorAttachmentDailyBandwidthLimit = 500 * 1024 * 1024 // 500 MB
)
2023-01-11 16:51:51 +13:00
var (
// DefaultVisitorStatsResetTime defines the time at which visitor stats are reset (wall clock only)
DefaultVisitorStatsResetTime = time.Date(0, 0, 0, 0, 0, 0, 0, time.UTC)
)
// Config is the main config struct for the application. Use New to instantiate a default config struct.
type Config struct {
2022-01-13 15:24:48 +13:00
BaseURL string
ListenHTTP string
ListenHTTPS string
2022-01-15 14:16:12 +13:00
ListenUnix string
ListenUnixMode fs.FileMode
2022-01-13 15:24:48 +13:00
KeyFile string
CertFile string
FirebaseKeyFile string
CacheFile string
CacheDuration time.Duration
2022-06-24 03:02:45 +12:00
CacheStartupQueries string
2022-11-17 04:28:20 +13:00
CacheBatchSize int
CacheBatchTimeout time.Duration
2022-01-23 17:01:20 +13:00
AuthFile string
2023-01-06 09:20:44 +13:00
AuthStartupQueries string
AuthDefault user.Permission
2023-01-29 03:03:14 +13:00
AuthBcryptCost int
2023-01-29 14:29:06 +13:00
AuthStatsQueueWriterInterval time.Duration
2022-01-13 15:24:48 +13:00
AttachmentCacheDir string
AttachmentTotalSizeLimit int64
AttachmentFileSizeLimit int64
AttachmentExpiryDuration time.Duration
KeepaliveInterval time.Duration
ManagerInterval time.Duration
2022-03-06 15:28:25 +13:00
WebRootIsApp bool
DelayedSenderInterval time.Duration
2022-01-13 15:24:48 +13:00
FirebaseKeepaliveInterval time.Duration
FirebasePollInterval time.Duration
2022-06-01 15:27:24 +12:00
FirebaseQuotaExceededPenaltyDuration time.Duration
2022-05-28 12:30:20 +12:00
UpstreamBaseURL string
2022-01-13 15:24:48 +13:00
SMTPSenderAddr string
SMTPSenderUser string
SMTPSenderPass string
SMTPSenderFrom string
SMTPServerListen string
SMTPServerDomain string
SMTPServerAddrPrefix string
MessageLimit int
MinDelay time.Duration
MaxDelay time.Duration
TotalTopicLimit int
TotalAttachmentSizeLimit int64
VisitorSubscriptionLimit int
VisitorAttachmentTotalSizeLimit int64
VisitorAttachmentDailyBandwidthLimit int64
2022-01-13 15:24:48 +13:00
VisitorRequestLimitBurst int
VisitorRequestLimitReplenish time.Duration
VisitorRequestExemptIPAddrs []netip.Prefix
2023-01-27 16:57:18 +13:00
VisitorMessageDailyLimit int
2022-01-13 15:24:48 +13:00
VisitorEmailLimitBurst int
VisitorEmailLimitReplenish time.Duration
VisitorAccountCreationLimitBurst int
VisitorAccountCreationLimitReplenish time.Duration
2023-01-11 16:51:51 +13:00
VisitorStatsResetTime time.Time // Time of the day at which to reset visitor stats
2022-01-13 15:24:48 +13:00
BehindProxy bool
StripeSecretKey string
2023-01-15 00:43:44 +13:00
StripeWebhookKey string
2023-01-19 09:50:06 +13:00
StripePriceCacheDuration time.Duration
EnableWeb bool
2023-01-06 09:20:44 +13:00
EnableSignup bool // Enable creation of accounts via API and UI
2022-12-15 17:11:22 +13:00
EnableLogin bool
2023-01-10 14:37:13 +13:00
EnableReservations bool // Allow users with role "user" to own/reserve topics
2023-01-19 09:50:06 +13:00
AccessControlAllowOrigin string // CORS header field to restrict access from web clients
Version string // injected by App
}
// NewConfig instantiates a default new server config
2021-12-23 02:17:50 +13:00
func NewConfig() *Config {
return &Config{
2022-01-13 15:24:48 +13:00
BaseURL: "",
ListenHTTP: DefaultListenHTTP,
ListenHTTPS: "",
2022-01-15 14:16:12 +13:00
ListenUnix: "",
2022-07-04 11:33:01 +12:00
ListenUnixMode: 0,
2022-01-13 15:24:48 +13:00
KeyFile: "",
CertFile: "",
FirebaseKeyFile: "",
CacheFile: "",
CacheDuration: DefaultCacheDuration,
2023-01-19 09:50:06 +13:00
CacheStartupQueries: "",
2022-11-17 04:28:20 +13:00
CacheBatchSize: 0,
CacheBatchTimeout: 0,
2022-01-23 17:01:20 +13:00
AuthFile: "",
2023-01-19 09:50:06 +13:00
AuthStartupQueries: "",
AuthDefault: user.NewPermission(true, true),
2023-01-29 03:03:14 +13:00
AuthBcryptCost: user.DefaultUserPasswordBcryptCost,
2023-01-29 14:29:06 +13:00
AuthStatsQueueWriterInterval: user.DefaultUserStatsQueueWriterInterval,
2022-01-13 15:24:48 +13:00
AttachmentCacheDir: "",
AttachmentTotalSizeLimit: DefaultAttachmentTotalSizeLimit,
AttachmentFileSizeLimit: DefaultAttachmentFileSizeLimit,
AttachmentExpiryDuration: DefaultAttachmentExpiryDuration,
KeepaliveInterval: DefaultKeepaliveInterval,
ManagerInterval: DefaultManagerInterval,
2023-01-19 09:50:06 +13:00
WebRootIsApp: false,
2022-06-01 15:27:24 +12:00
DelayedSenderInterval: DefaultDelayedSenderInterval,
2022-01-13 15:24:48 +13:00
FirebaseKeepaliveInterval: DefaultFirebaseKeepaliveInterval,
FirebasePollInterval: DefaultFirebasePollInterval,
2022-06-01 15:27:24 +12:00
FirebaseQuotaExceededPenaltyDuration: DefaultFirebaseQuotaExceededPenaltyDuration,
2023-01-19 09:50:06 +13:00
UpstreamBaseURL: "",
SMTPSenderAddr: "",
SMTPSenderUser: "",
SMTPSenderPass: "",
SMTPSenderFrom: "",
SMTPServerListen: "",
SMTPServerDomain: "",
SMTPServerAddrPrefix: "",
MessageLimit: DefaultMessageLengthLimit,
MinDelay: DefaultMinDelay,
MaxDelay: DefaultMaxDelay,
2022-01-13 15:24:48 +13:00
TotalTopicLimit: DefaultTotalTopicLimit,
2023-01-19 09:50:06 +13:00
TotalAttachmentSizeLimit: 0,
2022-01-13 15:24:48 +13:00
VisitorSubscriptionLimit: DefaultVisitorSubscriptionLimit,
VisitorAttachmentTotalSizeLimit: DefaultVisitorAttachmentTotalSizeLimit,
VisitorAttachmentDailyBandwidthLimit: DefaultVisitorAttachmentDailyBandwidthLimit,
VisitorRequestLimitBurst: DefaultVisitorRequestLimitBurst,
VisitorRequestLimitReplenish: DefaultVisitorRequestLimitReplenish,
VisitorRequestExemptIPAddrs: make([]netip.Prefix, 0),
2023-01-27 16:57:18 +13:00
VisitorMessageDailyLimit: DefaultVisitorMessageDailyLimit,
2022-01-13 15:24:48 +13:00
VisitorEmailLimitBurst: DefaultVisitorEmailLimitBurst,
VisitorEmailLimitReplenish: DefaultVisitorEmailLimitReplenish,
VisitorAccountCreationLimitBurst: DefaultVisitorAccountCreationLimitBurst,
VisitorAccountCreationLimitReplenish: DefaultVisitorAccountCreationLimitReplenish,
2023-01-11 16:51:51 +13:00
VisitorStatsResetTime: DefaultVisitorStatsResetTime,
2022-01-13 15:24:48 +13:00
BehindProxy: false,
2023-01-19 09:50:06 +13:00
StripeSecretKey: "",
StripeWebhookKey: "",
StripePriceCacheDuration: DefaultStripePriceCacheDuration,
EnableWeb: true,
2023-01-19 09:50:06 +13:00
EnableSignup: false,
EnableLogin: false,
EnableReservations: false,
AccessControlAllowOrigin: "*",
Version: "",
}
}