config.go 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package server
  2. import (
  3. "heckel.io/ntfy/user"
  4. "io/fs"
  5. "net/netip"
  6. "time"
  7. )
  8. // Defines default config settings (excluding limits, see below)
  9. const (
  10. DefaultListenHTTP = ":80"
  11. DefaultCacheDuration = 12 * time.Hour
  12. DefaultKeepaliveInterval = 45 * time.Second // Not too frequently to save battery (Android read timeout used to be 77s!)
  13. DefaultManagerInterval = time.Minute
  14. DefaultDelayedSenderInterval = 10 * time.Second
  15. DefaultMinDelay = 10 * time.Second
  16. DefaultMaxDelay = 3 * 24 * time.Hour
  17. DefaultFirebaseKeepaliveInterval = 3 * time.Hour // ~control topic (Android), not too frequently to save battery
  18. DefaultFirebasePollInterval = 20 * time.Minute // ~poll topic (iOS), max. 2-3 times per hour (see docs)
  19. DefaultFirebaseQuotaExceededPenaltyDuration = 10 * time.Minute // Time that over-users are locked out of Firebase if it returns "quota exceeded"
  20. DefaultStripePriceCacheDuration = time.Hour // Time to keep Stripe prices cached in memory before a refresh is needed
  21. )
  22. // Defines all global and per-visitor limits
  23. // - message size limit: the max number of bytes for a message
  24. // - total topic limit: max number of topics overall
  25. // - various attachment limits
  26. const (
  27. DefaultMessageLengthLimit = 4096 // Bytes
  28. DefaultTotalTopicLimit = 15000
  29. DefaultAttachmentTotalSizeLimit = int64(5 * 1024 * 1024 * 1024) // 5 GB
  30. DefaultAttachmentFileSizeLimit = int64(15 * 1024 * 1024) // 15 MB
  31. DefaultAttachmentExpiryDuration = 3 * time.Hour
  32. )
  33. // Defines all per-visitor limits
  34. // - per visitor subscription limit: max number of subscriptions (active HTTP connections) per per-visitor/IP
  35. // - per visitor request limit: max number of PUT/GET/.. requests (here: 60 requests bucket, replenished at a rate of one per 5 seconds)
  36. // - per visitor email limit: max number of emails (here: 16 email bucket, replenished at a rate of one per hour)
  37. // - per visitor attachment size limit: total per-visitor attachment size in bytes to be stored on the server
  38. // - per visitor attachment daily bandwidth limit: number of bytes that can be transferred to/from the server
  39. const (
  40. DefaultVisitorSubscriptionLimit = 30
  41. DefaultVisitorRequestLimitBurst = 60
  42. DefaultVisitorRequestLimitReplenish = 5 * time.Second
  43. DefaultVisitorMessageDailyLimit = 0
  44. DefaultVisitorEmailLimitBurst = 16
  45. DefaultVisitorEmailLimitReplenish = time.Hour
  46. DefaultVisitorAccountCreationLimitBurst = 3
  47. DefaultVisitorAccountCreationLimitReplenish = 24 * time.Hour
  48. DefaultVisitorAttachmentTotalSizeLimit = 100 * 1024 * 1024 // 100 MB
  49. DefaultVisitorAttachmentDailyBandwidthLimit = 500 * 1024 * 1024 // 500 MB
  50. )
  51. var (
  52. // DefaultVisitorStatsResetTime defines the time at which visitor stats are reset (wall clock only)
  53. DefaultVisitorStatsResetTime = time.Date(0, 0, 0, 0, 0, 0, 0, time.UTC)
  54. )
  55. // Config is the main config struct for the application. Use New to instantiate a default config struct.
  56. type Config struct {
  57. BaseURL string
  58. ListenHTTP string
  59. ListenHTTPS string
  60. ListenUnix string
  61. ListenUnixMode fs.FileMode
  62. KeyFile string
  63. CertFile string
  64. FirebaseKeyFile string
  65. CacheFile string
  66. CacheDuration time.Duration
  67. CacheStartupQueries string
  68. CacheBatchSize int
  69. CacheBatchTimeout time.Duration
  70. AuthFile string
  71. AuthStartupQueries string
  72. AuthDefault user.Permission
  73. AttachmentCacheDir string
  74. AttachmentTotalSizeLimit int64
  75. AttachmentFileSizeLimit int64
  76. AttachmentExpiryDuration time.Duration
  77. KeepaliveInterval time.Duration
  78. ManagerInterval time.Duration
  79. WebRootIsApp bool
  80. DelayedSenderInterval time.Duration
  81. FirebaseKeepaliveInterval time.Duration
  82. FirebasePollInterval time.Duration
  83. FirebaseQuotaExceededPenaltyDuration time.Duration
  84. UpstreamBaseURL string
  85. SMTPSenderAddr string
  86. SMTPSenderUser string
  87. SMTPSenderPass string
  88. SMTPSenderFrom string
  89. SMTPServerListen string
  90. SMTPServerDomain string
  91. SMTPServerAddrPrefix string
  92. MessageLimit int
  93. MinDelay time.Duration
  94. MaxDelay time.Duration
  95. TotalTopicLimit int
  96. TotalAttachmentSizeLimit int64
  97. VisitorSubscriptionLimit int
  98. VisitorAttachmentTotalSizeLimit int64
  99. VisitorAttachmentDailyBandwidthLimit int64
  100. VisitorRequestLimitBurst int
  101. VisitorRequestLimitReplenish time.Duration
  102. VisitorRequestExemptIPAddrs []netip.Prefix
  103. VisitorMessageDailyLimit int
  104. VisitorEmailLimitBurst int
  105. VisitorEmailLimitReplenish time.Duration
  106. VisitorAccountCreationLimitBurst int
  107. VisitorAccountCreationLimitReplenish time.Duration
  108. VisitorStatsResetTime time.Time // Time of the day at which to reset visitor stats
  109. BehindProxy bool
  110. StripeSecretKey string
  111. StripeWebhookKey string
  112. StripePriceCacheDuration time.Duration
  113. EnableWeb bool
  114. EnableSignup bool // Enable creation of accounts via API and UI
  115. EnableLogin bool
  116. EnableReservations bool // Allow users with role "user" to own/reserve topics
  117. AccessControlAllowOrigin string // CORS header field to restrict access from web clients
  118. Version string // injected by App
  119. }
  120. // NewConfig instantiates a default new server config
  121. func NewConfig() *Config {
  122. return &Config{
  123. BaseURL: "",
  124. ListenHTTP: DefaultListenHTTP,
  125. ListenHTTPS: "",
  126. ListenUnix: "",
  127. ListenUnixMode: 0,
  128. KeyFile: "",
  129. CertFile: "",
  130. FirebaseKeyFile: "",
  131. CacheFile: "",
  132. CacheDuration: DefaultCacheDuration,
  133. CacheStartupQueries: "",
  134. CacheBatchSize: 0,
  135. CacheBatchTimeout: 0,
  136. AuthFile: "",
  137. AuthStartupQueries: "",
  138. AuthDefault: user.NewPermission(true, true),
  139. AttachmentCacheDir: "",
  140. AttachmentTotalSizeLimit: DefaultAttachmentTotalSizeLimit,
  141. AttachmentFileSizeLimit: DefaultAttachmentFileSizeLimit,
  142. AttachmentExpiryDuration: DefaultAttachmentExpiryDuration,
  143. KeepaliveInterval: DefaultKeepaliveInterval,
  144. ManagerInterval: DefaultManagerInterval,
  145. WebRootIsApp: false,
  146. DelayedSenderInterval: DefaultDelayedSenderInterval,
  147. FirebaseKeepaliveInterval: DefaultFirebaseKeepaliveInterval,
  148. FirebasePollInterval: DefaultFirebasePollInterval,
  149. FirebaseQuotaExceededPenaltyDuration: DefaultFirebaseQuotaExceededPenaltyDuration,
  150. UpstreamBaseURL: "",
  151. SMTPSenderAddr: "",
  152. SMTPSenderUser: "",
  153. SMTPSenderPass: "",
  154. SMTPSenderFrom: "",
  155. SMTPServerListen: "",
  156. SMTPServerDomain: "",
  157. SMTPServerAddrPrefix: "",
  158. MessageLimit: DefaultMessageLengthLimit,
  159. MinDelay: DefaultMinDelay,
  160. MaxDelay: DefaultMaxDelay,
  161. TotalTopicLimit: DefaultTotalTopicLimit,
  162. TotalAttachmentSizeLimit: 0,
  163. VisitorSubscriptionLimit: DefaultVisitorSubscriptionLimit,
  164. VisitorAttachmentTotalSizeLimit: DefaultVisitorAttachmentTotalSizeLimit,
  165. VisitorAttachmentDailyBandwidthLimit: DefaultVisitorAttachmentDailyBandwidthLimit,
  166. VisitorRequestLimitBurst: DefaultVisitorRequestLimitBurst,
  167. VisitorRequestLimitReplenish: DefaultVisitorRequestLimitReplenish,
  168. VisitorRequestExemptIPAddrs: make([]netip.Prefix, 0),
  169. VisitorMessageDailyLimit: DefaultVisitorMessageDailyLimit,
  170. VisitorEmailLimitBurst: DefaultVisitorEmailLimitBurst,
  171. VisitorEmailLimitReplenish: DefaultVisitorEmailLimitReplenish,
  172. VisitorAccountCreationLimitBurst: DefaultVisitorAccountCreationLimitBurst,
  173. VisitorAccountCreationLimitReplenish: DefaultVisitorAccountCreationLimitReplenish,
  174. VisitorStatsResetTime: DefaultVisitorStatsResetTime,
  175. BehindProxy: false,
  176. StripeSecretKey: "",
  177. StripeWebhookKey: "",
  178. StripePriceCacheDuration: DefaultStripePriceCacheDuration,
  179. EnableWeb: true,
  180. EnableSignup: false,
  181. EnableLogin: false,
  182. EnableReservations: false,
  183. AccessControlAllowOrigin: "*",
  184. Version: "",
  185. }
  186. }