- 增加 CORS/CSP/安全响应头与代理信任配置 - 引入 URL 白名单与私网开关,校验上游与价格源 - 改善 API Key 处理与网关错误返回 - 管理端设置隐藏敏感字段并优化前端提示 - 增加计费熔断与相关配置示例 测试: go test ./...
45 lines
901 B
Go
45 lines
901 B
Go
package service
|
|
|
|
type SystemSettings struct {
|
|
RegistrationEnabled bool
|
|
EmailVerifyEnabled bool
|
|
|
|
SmtpHost string
|
|
SmtpPort int
|
|
SmtpUsername string
|
|
SmtpPassword string
|
|
SmtpPasswordConfigured bool
|
|
SmtpFrom string
|
|
SmtpFromName string
|
|
SmtpUseTLS bool
|
|
|
|
TurnstileEnabled bool
|
|
TurnstileSiteKey string
|
|
TurnstileSecretKey string
|
|
TurnstileSecretKeyConfigured bool
|
|
|
|
SiteName string
|
|
SiteLogo string
|
|
SiteSubtitle string
|
|
ApiBaseUrl string
|
|
ContactInfo string
|
|
DocUrl string
|
|
|
|
DefaultConcurrency int
|
|
DefaultBalance float64
|
|
}
|
|
|
|
type PublicSettings struct {
|
|
RegistrationEnabled bool
|
|
EmailVerifyEnabled bool
|
|
TurnstileEnabled bool
|
|
TurnstileSiteKey string
|
|
SiteName string
|
|
SiteLogo string
|
|
SiteSubtitle string
|
|
ApiBaseUrl string
|
|
ContactInfo string
|
|
DocUrl string
|
|
Version string
|
|
}
|