2025-12-26 15:40:24 +08:00
|
|
|
|
package dto
|
|
|
|
|
|
|
|
|
|
|
|
// SystemSettings represents the admin settings API response payload.
|
|
|
|
|
|
type SystemSettings struct {
|
2026-01-26 08:45:43 +08:00
|
|
|
|
RegistrationEnabled bool `json:"registration_enabled"`
|
|
|
|
|
|
EmailVerifyEnabled bool `json:"email_verify_enabled"`
|
|
|
|
|
|
PromoCodeEnabled bool `json:"promo_code_enabled"`
|
|
|
|
|
|
PasswordResetEnabled bool `json:"password_reset_enabled"`
|
2026-01-29 16:29:59 +08:00
|
|
|
|
InvitationCodeEnabled bool `json:"invitation_code_enabled"`
|
2026-01-26 08:45:43 +08:00
|
|
|
|
TotpEnabled bool `json:"totp_enabled"` // TOTP 双因素认证
|
|
|
|
|
|
TotpEncryptionKeyConfigured bool `json:"totp_encryption_key_configured"` // TOTP 加密密钥是否已配置
|
2025-12-26 15:40:24 +08:00
|
|
|
|
|
2026-01-04 21:06:12 +08:00
|
|
|
|
SMTPHost string `json:"smtp_host"`
|
|
|
|
|
|
SMTPPort int `json:"smtp_port"`
|
|
|
|
|
|
SMTPUsername string `json:"smtp_username"`
|
|
|
|
|
|
SMTPPasswordConfigured bool `json:"smtp_password_configured"`
|
|
|
|
|
|
SMTPFrom string `json:"smtp_from_email"`
|
|
|
|
|
|
SMTPFromName string `json:"smtp_from_name"`
|
|
|
|
|
|
SMTPUseTLS bool `json:"smtp_use_tls"`
|
2025-12-26 15:40:24 +08:00
|
|
|
|
|
2026-01-04 21:06:12 +08:00
|
|
|
|
TurnstileEnabled bool `json:"turnstile_enabled"`
|
|
|
|
|
|
TurnstileSiteKey string `json:"turnstile_site_key"`
|
|
|
|
|
|
TurnstileSecretKeyConfigured bool `json:"turnstile_secret_key_configured"`
|
2025-12-26 15:40:24 +08:00
|
|
|
|
|
2026-01-09 13:52:27 +08:00
|
|
|
|
LinuxDoConnectEnabled bool `json:"linuxdo_connect_enabled"`
|
|
|
|
|
|
LinuxDoConnectClientID string `json:"linuxdo_connect_client_id"`
|
|
|
|
|
|
LinuxDoConnectClientSecretConfigured bool `json:"linuxdo_connect_client_secret_configured"`
|
|
|
|
|
|
LinuxDoConnectRedirectURL string `json:"linuxdo_connect_redirect_url"`
|
|
|
|
|
|
|
2026-01-28 13:54:32 +08:00
|
|
|
|
SiteName string `json:"site_name"`
|
|
|
|
|
|
SiteLogo string `json:"site_logo"`
|
|
|
|
|
|
SiteSubtitle string `json:"site_subtitle"`
|
|
|
|
|
|
APIBaseURL string `json:"api_base_url"`
|
|
|
|
|
|
ContactInfo string `json:"contact_info"`
|
|
|
|
|
|
DocURL string `json:"doc_url"`
|
|
|
|
|
|
HomeContent string `json:"home_content"`
|
|
|
|
|
|
HideCcsImportButton bool `json:"hide_ccs_import_button"`
|
|
|
|
|
|
PurchaseSubscriptionEnabled bool `json:"purchase_subscription_enabled"`
|
|
|
|
|
|
PurchaseSubscriptionURL string `json:"purchase_subscription_url"`
|
2026-02-28 15:01:20 +08:00
|
|
|
|
SoraClientEnabled bool `json:"sora_client_enabled"`
|
2025-12-26 15:40:24 +08:00
|
|
|
|
|
|
|
|
|
|
DefaultConcurrency int `json:"default_concurrency"`
|
|
|
|
|
|
DefaultBalance float64 `json:"default_balance"`
|
2026-01-03 06:37:08 -08:00
|
|
|
|
|
|
|
|
|
|
// Model fallback configuration
|
|
|
|
|
|
EnableModelFallback bool `json:"enable_model_fallback"`
|
|
|
|
|
|
FallbackModelAnthropic string `json:"fallback_model_anthropic"`
|
|
|
|
|
|
FallbackModelOpenAI string `json:"fallback_model_openai"`
|
|
|
|
|
|
FallbackModelGemini string `json:"fallback_model_gemini"`
|
|
|
|
|
|
FallbackModelAntigravity string `json:"fallback_model_antigravity"`
|
2026-01-04 22:49:40 +08:00
|
|
|
|
|
|
|
|
|
|
// Identity patch configuration (Claude -> Gemini)
|
|
|
|
|
|
EnableIdentityPatch bool `json:"enable_identity_patch"`
|
|
|
|
|
|
IdentityPatchPrompt string `json:"identity_patch_prompt"`
|
2026-01-09 20:54:26 +08:00
|
|
|
|
|
|
|
|
|
|
// Ops monitoring (vNext)
|
2026-01-10 01:38:47 +08:00
|
|
|
|
OpsMonitoringEnabled bool `json:"ops_monitoring_enabled"`
|
|
|
|
|
|
OpsRealtimeMonitoringEnabled bool `json:"ops_realtime_monitoring_enabled"`
|
2026-01-09 20:54:26 +08:00
|
|
|
|
OpsQueryModeDefault string `json:"ops_query_mode_default"`
|
2026-01-10 01:38:47 +08:00
|
|
|
|
OpsMetricsIntervalSeconds int `json:"ops_metrics_interval_seconds"`
|
2025-12-26 15:40:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type PublicSettings struct {
|
2026-01-28 13:54:32 +08:00
|
|
|
|
RegistrationEnabled bool `json:"registration_enabled"`
|
|
|
|
|
|
EmailVerifyEnabled bool `json:"email_verify_enabled"`
|
|
|
|
|
|
PromoCodeEnabled bool `json:"promo_code_enabled"`
|
|
|
|
|
|
PasswordResetEnabled bool `json:"password_reset_enabled"`
|
2026-01-29 16:29:59 +08:00
|
|
|
|
InvitationCodeEnabled bool `json:"invitation_code_enabled"`
|
2026-01-28 13:54:32 +08:00
|
|
|
|
TotpEnabled bool `json:"totp_enabled"` // TOTP 双因素认证
|
|
|
|
|
|
TurnstileEnabled bool `json:"turnstile_enabled"`
|
|
|
|
|
|
TurnstileSiteKey string `json:"turnstile_site_key"`
|
|
|
|
|
|
SiteName string `json:"site_name"`
|
|
|
|
|
|
SiteLogo string `json:"site_logo"`
|
|
|
|
|
|
SiteSubtitle string `json:"site_subtitle"`
|
|
|
|
|
|
APIBaseURL string `json:"api_base_url"`
|
|
|
|
|
|
ContactInfo string `json:"contact_info"`
|
|
|
|
|
|
DocURL string `json:"doc_url"`
|
|
|
|
|
|
HomeContent string `json:"home_content"`
|
|
|
|
|
|
HideCcsImportButton bool `json:"hide_ccs_import_button"`
|
|
|
|
|
|
PurchaseSubscriptionEnabled bool `json:"purchase_subscription_enabled"`
|
|
|
|
|
|
PurchaseSubscriptionURL string `json:"purchase_subscription_url"`
|
|
|
|
|
|
LinuxDoOAuthEnabled bool `json:"linuxdo_oauth_enabled"`
|
2026-02-28 15:01:20 +08:00
|
|
|
|
SoraClientEnabled bool `json:"sora_client_enabled"`
|
2026-01-28 13:54:32 +08:00
|
|
|
|
Version string `json:"version"`
|
2025-12-26 15:40:24 +08:00
|
|
|
|
}
|
2026-01-11 21:54:52 -08:00
|
|
|
|
|
2026-02-28 15:01:20 +08:00
|
|
|
|
// SoraS3Settings Sora S3 存储配置 DTO(响应用,不含敏感字段)
|
|
|
|
|
|
type SoraS3Settings struct {
|
|
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
|
|
Endpoint string `json:"endpoint"`
|
|
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
Bucket string `json:"bucket"`
|
|
|
|
|
|
AccessKeyID string `json:"access_key_id"`
|
|
|
|
|
|
SecretAccessKeyConfigured bool `json:"secret_access_key_configured"`
|
|
|
|
|
|
Prefix string `json:"prefix"`
|
|
|
|
|
|
ForcePathStyle bool `json:"force_path_style"`
|
|
|
|
|
|
CDNURL string `json:"cdn_url"`
|
|
|
|
|
|
DefaultStorageQuotaBytes int64 `json:"default_storage_quota_bytes"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// SoraS3Profile Sora S3 存储配置项 DTO(响应用,不含敏感字段)
|
|
|
|
|
|
type SoraS3Profile struct {
|
|
|
|
|
|
ProfileID string `json:"profile_id"`
|
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
|
IsActive bool `json:"is_active"`
|
|
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
|
|
Endpoint string `json:"endpoint"`
|
|
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
Bucket string `json:"bucket"`
|
|
|
|
|
|
AccessKeyID string `json:"access_key_id"`
|
|
|
|
|
|
SecretAccessKeyConfigured bool `json:"secret_access_key_configured"`
|
|
|
|
|
|
Prefix string `json:"prefix"`
|
|
|
|
|
|
ForcePathStyle bool `json:"force_path_style"`
|
|
|
|
|
|
CDNURL string `json:"cdn_url"`
|
|
|
|
|
|
DefaultStorageQuotaBytes int64 `json:"default_storage_quota_bytes"`
|
|
|
|
|
|
UpdatedAt string `json:"updated_at"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ListSoraS3ProfilesResponse Sora S3 配置列表响应
|
|
|
|
|
|
type ListSoraS3ProfilesResponse struct {
|
|
|
|
|
|
ActiveProfileID string `json:"active_profile_id"`
|
|
|
|
|
|
Items []SoraS3Profile `json:"items"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-11 21:54:52 -08:00
|
|
|
|
// StreamTimeoutSettings 流超时处理配置 DTO
|
|
|
|
|
|
type StreamTimeoutSettings struct {
|
|
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
|
|
Action string `json:"action"`
|
|
|
|
|
|
TempUnschedMinutes int `json:"temp_unsched_minutes"`
|
|
|
|
|
|
ThresholdCount int `json:"threshold_count"`
|
|
|
|
|
|
ThresholdWindowMinutes int `json:"threshold_window_minutes"`
|
|
|
|
|
|
}
|