- 添加 StreamTimeoutSettings 配置结构体和系统设置 - 实现 TimeoutCounterCache Redis 计数器用于累计超时次数 - 在 RateLimitService 添加 HandleStreamTimeout 方法 - 在 gateway_service、openai_gateway_service、antigravity_gateway_service 中调用超时处理 - 添加后端 API 端点 GET/PUT /admin/settings/stream-timeout - 添加前端配置界面到系统设置页面 - 支持配置:启用开关、超时阈值、处理方式、暂停时长、触发阈值、阈值窗口 默认配置: - 启用:true - 超时阈值:60秒 - 处理方式:临时不可调度 - 暂停时长:5分钟 - 触发阈值:3次 - 阈值窗口:10分钟
1340 lines
51 KiB
Vue
1340 lines
51 KiB
Vue
<template>
|
|
<AppLayout>
|
|
<div class="mx-auto max-w-4xl space-y-6">
|
|
<!-- Loading State -->
|
|
<div v-if="loading" class="flex items-center justify-center py-12">
|
|
<div class="h-8 w-8 animate-spin rounded-full border-b-2 border-primary-600"></div>
|
|
</div>
|
|
|
|
<!-- Settings Form -->
|
|
<form v-else @submit.prevent="saveSettings" class="space-y-6">
|
|
<!-- Admin API Key Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.adminApiKey.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.adminApiKey.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-4 p-6">
|
|
<!-- Security Warning -->
|
|
<div
|
|
class="rounded-lg border border-amber-200 bg-amber-50 p-4 dark:border-amber-800 dark:bg-amber-900/20"
|
|
>
|
|
<div class="flex items-start">
|
|
<Icon
|
|
name="exclamationTriangle"
|
|
size="md"
|
|
class="mt-0.5 flex-shrink-0 text-amber-500"
|
|
/>
|
|
<p class="ml-3 text-sm text-amber-700 dark:text-amber-300">
|
|
{{ t('admin.settings.adminApiKey.securityWarning') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Loading State -->
|
|
<div v-if="adminApiKeyLoading" class="flex items-center gap-2 text-gray-500">
|
|
<div class="h-4 w-4 animate-spin rounded-full border-b-2 border-primary-600"></div>
|
|
{{ t('common.loading') }}
|
|
</div>
|
|
|
|
<!-- No Key Configured -->
|
|
<div v-else-if="!adminApiKeyExists" class="flex items-center justify-between">
|
|
<span class="text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.adminApiKey.notConfigured') }}
|
|
</span>
|
|
<button
|
|
type="button"
|
|
@click="createAdminApiKey"
|
|
:disabled="adminApiKeyOperating"
|
|
class="btn btn-primary btn-sm"
|
|
>
|
|
<svg
|
|
v-if="adminApiKeyOperating"
|
|
class="mr-1 h-4 w-4 animate-spin"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{
|
|
adminApiKeyOperating
|
|
? t('admin.settings.adminApiKey.creating')
|
|
: t('admin.settings.adminApiKey.create')
|
|
}}
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Key Exists -->
|
|
<div v-else class="space-y-4">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="mb-1 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.adminApiKey.currentKey') }}
|
|
</label>
|
|
<code
|
|
class="rounded bg-gray-100 px-2 py-1 font-mono text-sm text-gray-900 dark:bg-dark-700 dark:text-gray-100"
|
|
>
|
|
{{ adminApiKeyMasked }}
|
|
</code>
|
|
</div>
|
|
<div class="flex gap-2">
|
|
<button
|
|
type="button"
|
|
@click="regenerateAdminApiKey"
|
|
:disabled="adminApiKeyOperating"
|
|
class="btn btn-secondary btn-sm"
|
|
>
|
|
{{
|
|
adminApiKeyOperating
|
|
? t('admin.settings.adminApiKey.regenerating')
|
|
: t('admin.settings.adminApiKey.regenerate')
|
|
}}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
@click="deleteAdminApiKey"
|
|
:disabled="adminApiKeyOperating"
|
|
class="btn btn-secondary btn-sm text-red-600 hover:text-red-700 dark:text-red-400"
|
|
>
|
|
{{ t('admin.settings.adminApiKey.delete') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Newly Generated Key Display -->
|
|
<div
|
|
v-if="newAdminApiKey"
|
|
class="space-y-3 rounded-lg border border-green-200 bg-green-50 p-4 dark:border-green-800 dark:bg-green-900/20"
|
|
>
|
|
<p class="text-sm font-medium text-green-700 dark:text-green-300">
|
|
{{ t('admin.settings.adminApiKey.keyWarning') }}
|
|
</p>
|
|
<div class="flex items-center gap-2">
|
|
<code
|
|
class="flex-1 select-all break-all rounded border border-green-300 bg-white px-3 py-2 font-mono text-sm dark:border-green-700 dark:bg-dark-800"
|
|
>
|
|
{{ newAdminApiKey }}
|
|
</code>
|
|
<button
|
|
type="button"
|
|
@click="copyNewKey"
|
|
class="btn btn-primary btn-sm flex-shrink-0"
|
|
>
|
|
{{ t('admin.settings.adminApiKey.copyKey') }}
|
|
</button>
|
|
</div>
|
|
<p class="text-xs text-green-600 dark:text-green-400">
|
|
{{ t('admin.settings.adminApiKey.usage') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Stream Timeout Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.streamTimeout.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-5 p-6">
|
|
<!-- Loading State -->
|
|
<div v-if="streamTimeoutLoading" class="flex items-center gap-2 text-gray-500">
|
|
<div class="h-4 w-4 animate-spin rounded-full border-b-2 border-primary-600"></div>
|
|
{{ t('common.loading') }}
|
|
</div>
|
|
|
|
<template v-else>
|
|
<!-- Enable Stream Timeout -->
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.streamTimeout.enabled')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.enabledHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="streamTimeoutForm.enabled" />
|
|
</div>
|
|
|
|
<!-- Settings - Only show when enabled -->
|
|
<div
|
|
v-if="streamTimeoutForm.enabled"
|
|
class="space-y-4 border-t border-gray-100 pt-4 dark:border-dark-700"
|
|
>
|
|
<!-- Timeout Seconds -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.streamTimeout.timeoutSeconds') }}
|
|
</label>
|
|
<input
|
|
v-model.number="streamTimeoutForm.timeout_seconds"
|
|
type="number"
|
|
min="30"
|
|
max="300"
|
|
class="input w-32"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.timeoutSecondsHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Action -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.streamTimeout.action') }}
|
|
</label>
|
|
<select v-model="streamTimeoutForm.action" class="input w-64">
|
|
<option value="temp_unsched">{{ t('admin.settings.streamTimeout.actionTempUnsched') }}</option>
|
|
<option value="error">{{ t('admin.settings.streamTimeout.actionError') }}</option>
|
|
<option value="none">{{ t('admin.settings.streamTimeout.actionNone') }}</option>
|
|
</select>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.actionHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Temp Unsched Minutes (only show when action is temp_unsched) -->
|
|
<div v-if="streamTimeoutForm.action === 'temp_unsched'">
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.streamTimeout.tempUnschedMinutes') }}
|
|
</label>
|
|
<input
|
|
v-model.number="streamTimeoutForm.temp_unsched_minutes"
|
|
type="number"
|
|
min="1"
|
|
max="60"
|
|
class="input w-32"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.tempUnschedMinutesHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Threshold Count -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.streamTimeout.thresholdCount') }}
|
|
</label>
|
|
<input
|
|
v-model.number="streamTimeoutForm.threshold_count"
|
|
type="number"
|
|
min="1"
|
|
max="10"
|
|
class="input w-32"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.thresholdCountHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Threshold Window Minutes -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.streamTimeout.thresholdWindowMinutes') }}
|
|
</label>
|
|
<input
|
|
v-model.number="streamTimeoutForm.threshold_window_minutes"
|
|
type="number"
|
|
min="1"
|
|
max="60"
|
|
class="input w-32"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.streamTimeout.thresholdWindowMinutesHint') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Save Button -->
|
|
<div class="flex justify-end border-t border-gray-100 pt-4 dark:border-dark-700">
|
|
<button
|
|
type="button"
|
|
@click="saveStreamTimeoutSettings"
|
|
:disabled="streamTimeoutSaving"
|
|
class="btn btn-primary btn-sm"
|
|
>
|
|
<svg
|
|
v-if="streamTimeoutSaving"
|
|
class="mr-1 h-4 w-4 animate-spin"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{ streamTimeoutSaving ? t('common.saving') : t('common.save') }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Registration Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.registration.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.registration.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-5 p-6">
|
|
<!-- Enable Registration -->
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.registration.enableRegistration')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.registration.enableRegistrationHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.registration_enabled" />
|
|
</div>
|
|
|
|
<!-- Email Verification -->
|
|
<div
|
|
class="flex items-center justify-between border-t border-gray-100 pt-4 dark:border-dark-700"
|
|
>
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.registration.emailVerification')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.registration.emailVerificationHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.email_verify_enabled" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Cloudflare Turnstile Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.turnstile.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.turnstile.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-5 p-6">
|
|
<!-- Enable Turnstile -->
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.turnstile.enableTurnstile')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.turnstile.enableTurnstileHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.turnstile_enabled" />
|
|
</div>
|
|
|
|
<!-- Turnstile Keys - Only show when enabled -->
|
|
<div
|
|
v-if="form.turnstile_enabled"
|
|
class="border-t border-gray-100 pt-4 dark:border-dark-700"
|
|
>
|
|
<div class="grid grid-cols-1 gap-6">
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.turnstile.siteKey') }}
|
|
</label>
|
|
<input
|
|
v-model="form.turnstile_site_key"
|
|
type="text"
|
|
class="input font-mono text-sm"
|
|
placeholder="0x4AAAAAAA..."
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.turnstile.siteKeyHint') }}
|
|
<a
|
|
href="https://dash.cloudflare.com/"
|
|
target="_blank"
|
|
class="text-primary-600 hover:text-primary-500"
|
|
>{{ t('admin.settings.turnstile.cloudflareDashboard') }}</a
|
|
>
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.turnstile.secretKey') }}
|
|
</label>
|
|
<input
|
|
v-model="form.turnstile_secret_key"
|
|
type="password"
|
|
class="input font-mono text-sm"
|
|
placeholder="0x4AAAAAAA..."
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{
|
|
form.turnstile_secret_key_configured
|
|
? t('admin.settings.turnstile.secretKeyConfiguredHint')
|
|
: t('admin.settings.turnstile.secretKeyHint')
|
|
}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- LinuxDo Connect OAuth 登录 -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.linuxdo.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.linuxdo.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-5 p-6">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.linuxdo.enable')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.linuxdo.enableHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.linuxdo_connect_enabled" />
|
|
</div>
|
|
|
|
<div
|
|
v-if="form.linuxdo_connect_enabled"
|
|
class="border-t border-gray-100 pt-4 dark:border-dark-700"
|
|
>
|
|
<div class="grid grid-cols-1 gap-6">
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.linuxdo.clientId') }}
|
|
</label>
|
|
<input
|
|
v-model="form.linuxdo_connect_client_id"
|
|
type="text"
|
|
class="input font-mono text-sm"
|
|
:placeholder="t('admin.settings.linuxdo.clientIdPlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.linuxdo.clientIdHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.linuxdo.clientSecret') }}
|
|
</label>
|
|
<input
|
|
v-model="form.linuxdo_connect_client_secret"
|
|
type="password"
|
|
class="input font-mono text-sm"
|
|
:placeholder="
|
|
form.linuxdo_connect_client_secret_configured
|
|
? t('admin.settings.linuxdo.clientSecretConfiguredPlaceholder')
|
|
: t('admin.settings.linuxdo.clientSecretPlaceholder')
|
|
"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{
|
|
form.linuxdo_connect_client_secret_configured
|
|
? t('admin.settings.linuxdo.clientSecretConfiguredHint')
|
|
: t('admin.settings.linuxdo.clientSecretHint')
|
|
}}
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.linuxdo.redirectUrl') }}
|
|
</label>
|
|
<input
|
|
v-model="form.linuxdo_connect_redirect_url"
|
|
type="url"
|
|
class="input font-mono text-sm"
|
|
:placeholder="t('admin.settings.linuxdo.redirectUrlPlaceholder')"
|
|
/>
|
|
<div class="mt-2 flex flex-col gap-2 sm:flex-row sm:items-center sm:gap-3">
|
|
<button
|
|
type="button"
|
|
class="btn btn-secondary btn-sm w-fit"
|
|
@click="setAndCopyLinuxdoRedirectUrl"
|
|
>
|
|
{{ t('admin.settings.linuxdo.quickSetCopy') }}
|
|
</button>
|
|
<code
|
|
v-if="linuxdoRedirectUrlSuggestion"
|
|
class="select-all break-all rounded bg-gray-50 px-2 py-1 font-mono text-xs text-gray-600 dark:bg-dark-800 dark:text-gray-300"
|
|
>
|
|
{{ linuxdoRedirectUrlSuggestion }}
|
|
</code>
|
|
</div>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.linuxdo.redirectUrlHint') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Default Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.defaults.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.defaults.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="p-6">
|
|
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.defaults.defaultBalance') }}
|
|
</label>
|
|
<input
|
|
v-model.number="form.default_balance"
|
|
type="number"
|
|
step="0.01"
|
|
min="0"
|
|
class="input"
|
|
placeholder="0.00"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.defaults.defaultBalanceHint') }}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.defaults.defaultConcurrency') }}
|
|
</label>
|
|
<input
|
|
v-model.number="form.default_concurrency"
|
|
type="number"
|
|
min="1"
|
|
class="input"
|
|
placeholder="1"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.defaults.defaultConcurrencyHint') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Site Settings -->
|
|
<div class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.site.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="space-y-6 p-6">
|
|
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.siteName') }}
|
|
</label>
|
|
<input
|
|
v-model="form.site_name"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.site.siteNamePlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.siteNameHint') }}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.siteSubtitle') }}
|
|
</label>
|
|
<input
|
|
v-model="form.site_subtitle"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.site.siteSubtitlePlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.siteSubtitleHint') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API Base URL -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.apiBaseUrl') }}
|
|
</label>
|
|
<input
|
|
v-model="form.api_base_url"
|
|
type="text"
|
|
class="input font-mono text-sm"
|
|
:placeholder="t('admin.settings.site.apiBaseUrlPlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.apiBaseUrlHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Contact Info -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.contactInfo') }}
|
|
</label>
|
|
<input
|
|
v-model="form.contact_info"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.site.contactInfoPlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.contactInfoHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Doc URL -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.docUrl') }}
|
|
</label>
|
|
<input
|
|
v-model="form.doc_url"
|
|
type="url"
|
|
class="input font-mono text-sm"
|
|
:placeholder="t('admin.settings.site.docUrlPlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.docUrlHint') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Site Logo Upload -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.siteLogo') }}
|
|
</label>
|
|
<div class="flex items-start gap-6">
|
|
<!-- Logo Preview -->
|
|
<div class="flex-shrink-0">
|
|
<div
|
|
class="flex h-20 w-20 items-center justify-center overflow-hidden rounded-xl border-2 border-dashed border-gray-300 bg-gray-50 dark:border-dark-600 dark:bg-dark-800"
|
|
:class="{ 'border-solid': form.site_logo }"
|
|
>
|
|
<img
|
|
v-if="form.site_logo"
|
|
:src="form.site_logo"
|
|
alt="Site Logo"
|
|
class="h-full w-full object-contain"
|
|
/>
|
|
<svg
|
|
v-else
|
|
class="h-8 w-8 text-gray-400 dark:text-dark-500"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="1.5"
|
|
d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<!-- Upload Controls -->
|
|
<div class="flex-1 space-y-3">
|
|
<div class="flex items-center gap-3">
|
|
<label class="btn btn-secondary btn-sm cursor-pointer">
|
|
<input
|
|
type="file"
|
|
accept="image/*"
|
|
class="hidden"
|
|
@change="handleLogoUpload"
|
|
/>
|
|
<Icon name="upload" size="sm" class="mr-1.5" :stroke-width="2" />
|
|
{{ t('admin.settings.site.uploadImage') }}
|
|
</label>
|
|
<button
|
|
v-if="form.site_logo"
|
|
type="button"
|
|
@click="form.site_logo = ''"
|
|
class="btn btn-secondary btn-sm text-red-600 hover:text-red-700 dark:text-red-400"
|
|
>
|
|
<Icon name="trash" size="sm" class="mr-1.5" :stroke-width="2" />
|
|
{{ t('admin.settings.site.remove') }}
|
|
</button>
|
|
</div>
|
|
<p class="text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.logoHint') }}
|
|
</p>
|
|
<p v-if="logoError" class="text-xs text-red-500">{{ logoError }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Home Content -->
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.site.homeContent') }}
|
|
</label>
|
|
<textarea
|
|
v-model="form.home_content"
|
|
rows="6"
|
|
class="input font-mono text-sm"
|
|
:placeholder="t('admin.settings.site.homeContentPlaceholder')"
|
|
></textarea>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.site.homeContentHint') }}
|
|
</p>
|
|
<!-- iframe CSP Warning -->
|
|
<p class="mt-2 text-xs text-amber-600 dark:text-amber-400">
|
|
{{ t('admin.settings.site.homeContentIframeWarning') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- SMTP Settings - Only show when email verification is enabled -->
|
|
<div v-if="form.email_verify_enabled" class="card">
|
|
<div
|
|
class="flex items-center justify-between border-b border-gray-100 px-6 py-4 dark:border-dark-700"
|
|
>
|
|
<div>
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.smtp.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.smtp.description') }}
|
|
</p>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
@click="testSmtpConnection"
|
|
:disabled="testingSmtp"
|
|
class="btn btn-secondary btn-sm"
|
|
>
|
|
<svg v-if="testingSmtp" class="h-4 w-4 animate-spin" fill="none" viewBox="0 0 24 24">
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{
|
|
testingSmtp
|
|
? t('admin.settings.smtp.testing')
|
|
: t('admin.settings.smtp.testConnection')
|
|
}}
|
|
</button>
|
|
</div>
|
|
<div class="space-y-6 p-6">
|
|
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.host') }}
|
|
</label>
|
|
<input
|
|
v-model="form.smtp_host"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.smtp.hostPlaceholder')"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.port') }}
|
|
</label>
|
|
<input
|
|
v-model.number="form.smtp_port"
|
|
type="number"
|
|
min="1"
|
|
max="65535"
|
|
class="input"
|
|
:placeholder="t('admin.settings.smtp.portPlaceholder')"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.username') }}
|
|
</label>
|
|
<input
|
|
v-model="form.smtp_username"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.smtp.usernamePlaceholder')"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.password') }}
|
|
</label>
|
|
<input
|
|
v-model="form.smtp_password"
|
|
type="password"
|
|
class="input"
|
|
:placeholder="
|
|
form.smtp_password_configured
|
|
? t('admin.settings.smtp.passwordConfiguredPlaceholder')
|
|
: t('admin.settings.smtp.passwordPlaceholder')
|
|
"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{
|
|
form.smtp_password_configured
|
|
? t('admin.settings.smtp.passwordConfiguredHint')
|
|
: t('admin.settings.smtp.passwordHint')
|
|
}}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.fromEmail') }}
|
|
</label>
|
|
<input
|
|
v-model="form.smtp_from_email"
|
|
type="email"
|
|
class="input"
|
|
:placeholder="t('admin.settings.smtp.fromEmailPlaceholder')"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.smtp.fromName') }}
|
|
</label>
|
|
<input
|
|
v-model="form.smtp_from_name"
|
|
type="text"
|
|
class="input"
|
|
:placeholder="t('admin.settings.smtp.fromNamePlaceholder')"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Use TLS Toggle -->
|
|
<div
|
|
class="flex items-center justify-between border-t border-gray-100 pt-4 dark:border-dark-700"
|
|
>
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.smtp.useTls')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.smtp.useTlsHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.smtp_use_tls" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Send Test Email - Only show when email verification is enabled -->
|
|
<div v-if="form.email_verify_enabled" class="card">
|
|
<div class="border-b border-gray-100 px-6 py-4 dark:border-dark-700">
|
|
<h2 class="text-lg font-semibold text-gray-900 dark:text-white">
|
|
{{ t('admin.settings.testEmail.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.testEmail.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="p-6">
|
|
<div class="flex items-end gap-4">
|
|
<div class="flex-1">
|
|
<label class="mb-2 block text-sm font-medium text-gray-700 dark:text-gray-300">
|
|
{{ t('admin.settings.testEmail.recipientEmail') }}
|
|
</label>
|
|
<input
|
|
v-model="testEmailAddress"
|
|
type="email"
|
|
class="input"
|
|
:placeholder="t('admin.settings.testEmail.recipientEmailPlaceholder')"
|
|
/>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
@click="sendTestEmail"
|
|
:disabled="sendingTestEmail || !testEmailAddress"
|
|
class="btn btn-secondary"
|
|
>
|
|
<svg
|
|
v-if="sendingTestEmail"
|
|
class="h-4 w-4 animate-spin"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{
|
|
sendingTestEmail
|
|
? t('admin.settings.testEmail.sending')
|
|
: t('admin.settings.testEmail.sendTestEmail')
|
|
}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Save Button -->
|
|
<div class="flex justify-end">
|
|
<button type="submit" :disabled="saving" class="btn btn-primary">
|
|
<svg v-if="saving" class="h-4 w-4 animate-spin" fill="none" viewBox="0 0 24 24">
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{ saving ? t('admin.settings.saving') : t('admin.settings.saveSettings') }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed, onMounted } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { adminAPI } from '@/api'
|
|
import type { SystemSettings, UpdateSettingsRequest } from '@/api/admin/settings'
|
|
import AppLayout from '@/components/layout/AppLayout.vue'
|
|
import Icon from '@/components/icons/Icon.vue'
|
|
import Toggle from '@/components/common/Toggle.vue'
|
|
import { useClipboard } from '@/composables/useClipboard'
|
|
import { useAppStore } from '@/stores'
|
|
|
|
const { t } = useI18n()
|
|
const appStore = useAppStore()
|
|
const { copyToClipboard } = useClipboard()
|
|
|
|
const loading = ref(true)
|
|
const saving = ref(false)
|
|
const testingSmtp = ref(false)
|
|
const sendingTestEmail = ref(false)
|
|
const testEmailAddress = ref('')
|
|
const logoError = ref('')
|
|
|
|
// Admin API Key 状态
|
|
const adminApiKeyLoading = ref(true)
|
|
const adminApiKeyExists = ref(false)
|
|
const adminApiKeyMasked = ref('')
|
|
const adminApiKeyOperating = ref(false)
|
|
const newAdminApiKey = ref('')
|
|
|
|
// Stream Timeout 状态
|
|
const streamTimeoutLoading = ref(true)
|
|
const streamTimeoutSaving = ref(false)
|
|
const streamTimeoutForm = reactive({
|
|
enabled: true,
|
|
timeout_seconds: 60,
|
|
action: 'temp_unsched' as 'temp_unsched' | 'error' | 'none',
|
|
temp_unsched_minutes: 5,
|
|
threshold_count: 3,
|
|
threshold_window_minutes: 10
|
|
})
|
|
|
|
type SettingsForm = SystemSettings & {
|
|
smtp_password: string
|
|
turnstile_secret_key: string
|
|
linuxdo_connect_client_secret: string
|
|
}
|
|
|
|
const form = reactive<SettingsForm>({
|
|
registration_enabled: true,
|
|
email_verify_enabled: false,
|
|
default_balance: 0,
|
|
default_concurrency: 1,
|
|
site_name: 'Sub2API',
|
|
site_logo: '',
|
|
site_subtitle: 'Subscription to API Conversion Platform',
|
|
api_base_url: '',
|
|
contact_info: '',
|
|
doc_url: '',
|
|
home_content: '',
|
|
smtp_host: '',
|
|
smtp_port: 587,
|
|
smtp_username: '',
|
|
smtp_password: '',
|
|
smtp_password_configured: false,
|
|
smtp_from_email: '',
|
|
smtp_from_name: '',
|
|
smtp_use_tls: true,
|
|
// Cloudflare Turnstile
|
|
turnstile_enabled: false,
|
|
turnstile_site_key: '',
|
|
turnstile_secret_key: '',
|
|
turnstile_secret_key_configured: false,
|
|
// LinuxDo Connect OAuth 登录
|
|
linuxdo_connect_enabled: false,
|
|
linuxdo_connect_client_id: '',
|
|
linuxdo_connect_client_secret: '',
|
|
linuxdo_connect_client_secret_configured: false,
|
|
linuxdo_connect_redirect_url: '',
|
|
// Model fallback
|
|
enable_model_fallback: false,
|
|
fallback_model_anthropic: 'claude-3-5-sonnet-20241022',
|
|
fallback_model_openai: 'gpt-4o',
|
|
fallback_model_gemini: 'gemini-2.5-pro',
|
|
fallback_model_antigravity: 'gemini-2.5-pro',
|
|
// Identity patch (Claude -> Gemini)
|
|
enable_identity_patch: true,
|
|
identity_patch_prompt: '',
|
|
// Ops monitoring (vNext)
|
|
ops_monitoring_enabled: true,
|
|
ops_realtime_monitoring_enabled: true,
|
|
ops_query_mode_default: 'auto',
|
|
ops_metrics_interval_seconds: 60
|
|
})
|
|
|
|
// LinuxDo OAuth redirect URL suggestion
|
|
const linuxdoRedirectUrlSuggestion = computed(() => {
|
|
if (typeof window === 'undefined') return ''
|
|
const origin =
|
|
window.location.origin || `${window.location.protocol}//${window.location.host}`
|
|
return `${origin}/api/v1/auth/oauth/linuxdo/callback`
|
|
})
|
|
|
|
async function setAndCopyLinuxdoRedirectUrl() {
|
|
const url = linuxdoRedirectUrlSuggestion.value
|
|
if (!url) return
|
|
|
|
form.linuxdo_connect_redirect_url = url
|
|
await copyToClipboard(url, t('admin.settings.linuxdo.redirectUrlSetAndCopied'))
|
|
}
|
|
|
|
function handleLogoUpload(event: Event) {
|
|
const input = event.target as HTMLInputElement
|
|
const file = input.files?.[0]
|
|
logoError.value = ''
|
|
|
|
if (!file) return
|
|
|
|
// Check file size (300KB = 307200 bytes)
|
|
const maxSize = 300 * 1024
|
|
if (file.size > maxSize) {
|
|
logoError.value = t('admin.settings.site.logoSizeError', {
|
|
size: (file.size / 1024).toFixed(1)
|
|
})
|
|
input.value = ''
|
|
return
|
|
}
|
|
|
|
// Check file type
|
|
if (!file.type.startsWith('image/')) {
|
|
logoError.value = t('admin.settings.site.logoTypeError')
|
|
input.value = ''
|
|
return
|
|
}
|
|
|
|
// Convert to base64
|
|
const reader = new FileReader()
|
|
reader.onload = (e) => {
|
|
form.site_logo = e.target?.result as string
|
|
}
|
|
reader.onerror = () => {
|
|
logoError.value = t('admin.settings.site.logoReadError')
|
|
}
|
|
reader.readAsDataURL(file)
|
|
|
|
// Reset input
|
|
input.value = ''
|
|
}
|
|
|
|
async function loadSettings() {
|
|
loading.value = true
|
|
try {
|
|
const settings = await adminAPI.settings.getSettings()
|
|
Object.assign(form, settings)
|
|
form.smtp_password = ''
|
|
form.turnstile_secret_key = ''
|
|
form.linuxdo_connect_client_secret = ''
|
|
} catch (error: any) {
|
|
appStore.showError(
|
|
t('admin.settings.failedToLoad') + ': ' + (error.message || t('common.unknownError'))
|
|
)
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
async function saveSettings() {
|
|
saving.value = true
|
|
try {
|
|
const payload: UpdateSettingsRequest = {
|
|
registration_enabled: form.registration_enabled,
|
|
email_verify_enabled: form.email_verify_enabled,
|
|
default_balance: form.default_balance,
|
|
default_concurrency: form.default_concurrency,
|
|
site_name: form.site_name,
|
|
site_logo: form.site_logo,
|
|
site_subtitle: form.site_subtitle,
|
|
api_base_url: form.api_base_url,
|
|
contact_info: form.contact_info,
|
|
doc_url: form.doc_url,
|
|
home_content: form.home_content,
|
|
smtp_host: form.smtp_host,
|
|
smtp_port: form.smtp_port,
|
|
smtp_username: form.smtp_username,
|
|
smtp_password: form.smtp_password || undefined,
|
|
smtp_from_email: form.smtp_from_email,
|
|
smtp_from_name: form.smtp_from_name,
|
|
smtp_use_tls: form.smtp_use_tls,
|
|
turnstile_enabled: form.turnstile_enabled,
|
|
turnstile_site_key: form.turnstile_site_key,
|
|
turnstile_secret_key: form.turnstile_secret_key || undefined,
|
|
linuxdo_connect_enabled: form.linuxdo_connect_enabled,
|
|
linuxdo_connect_client_id: form.linuxdo_connect_client_id,
|
|
linuxdo_connect_client_secret: form.linuxdo_connect_client_secret || undefined,
|
|
linuxdo_connect_redirect_url: form.linuxdo_connect_redirect_url,
|
|
enable_model_fallback: form.enable_model_fallback,
|
|
fallback_model_anthropic: form.fallback_model_anthropic,
|
|
fallback_model_openai: form.fallback_model_openai,
|
|
fallback_model_gemini: form.fallback_model_gemini,
|
|
fallback_model_antigravity: form.fallback_model_antigravity,
|
|
enable_identity_patch: form.enable_identity_patch,
|
|
identity_patch_prompt: form.identity_patch_prompt
|
|
}
|
|
const updated = await adminAPI.settings.updateSettings(payload)
|
|
Object.assign(form, updated)
|
|
form.smtp_password = ''
|
|
form.turnstile_secret_key = ''
|
|
form.linuxdo_connect_client_secret = ''
|
|
// Refresh cached public settings so sidebar/header update immediately
|
|
await appStore.fetchPublicSettings(true)
|
|
appStore.showSuccess(t('admin.settings.settingsSaved'))
|
|
} catch (error: any) {
|
|
appStore.showError(
|
|
t('admin.settings.failedToSave') + ': ' + (error.message || t('common.unknownError'))
|
|
)
|
|
} finally {
|
|
saving.value = false
|
|
}
|
|
}
|
|
|
|
async function testSmtpConnection() {
|
|
testingSmtp.value = true
|
|
try {
|
|
const result = await adminAPI.settings.testSmtpConnection({
|
|
smtp_host: form.smtp_host,
|
|
smtp_port: form.smtp_port,
|
|
smtp_username: form.smtp_username,
|
|
smtp_password: form.smtp_password,
|
|
smtp_use_tls: form.smtp_use_tls
|
|
})
|
|
// API returns { message: "..." } on success, errors are thrown as exceptions
|
|
appStore.showSuccess(result.message || t('admin.settings.smtpConnectionSuccess'))
|
|
} catch (error: any) {
|
|
appStore.showError(
|
|
t('admin.settings.failedToTestSmtp') + ': ' + (error.message || t('common.unknownError'))
|
|
)
|
|
} finally {
|
|
testingSmtp.value = false
|
|
}
|
|
}
|
|
|
|
async function sendTestEmail() {
|
|
if (!testEmailAddress.value) {
|
|
appStore.showError(t('admin.settings.testEmail.enterRecipientHint'))
|
|
return
|
|
}
|
|
|
|
sendingTestEmail.value = true
|
|
try {
|
|
const result = await adminAPI.settings.sendTestEmail({
|
|
email: testEmailAddress.value,
|
|
smtp_host: form.smtp_host,
|
|
smtp_port: form.smtp_port,
|
|
smtp_username: form.smtp_username,
|
|
smtp_password: form.smtp_password,
|
|
smtp_from_email: form.smtp_from_email,
|
|
smtp_from_name: form.smtp_from_name,
|
|
smtp_use_tls: form.smtp_use_tls
|
|
})
|
|
// API returns { message: "..." } on success, errors are thrown as exceptions
|
|
appStore.showSuccess(result.message || t('admin.settings.testEmailSent'))
|
|
} catch (error: any) {
|
|
appStore.showError(
|
|
t('admin.settings.failedToSendTestEmail') + ': ' + (error.message || t('common.unknownError'))
|
|
)
|
|
} finally {
|
|
sendingTestEmail.value = false
|
|
}
|
|
}
|
|
|
|
// Admin API Key 方法
|
|
async function loadAdminApiKey() {
|
|
adminApiKeyLoading.value = true
|
|
try {
|
|
const status = await adminAPI.settings.getAdminApiKey()
|
|
adminApiKeyExists.value = status.exists
|
|
adminApiKeyMasked.value = status.masked_key
|
|
} catch (error: any) {
|
|
console.error('Failed to load admin API key status:', error)
|
|
} finally {
|
|
adminApiKeyLoading.value = false
|
|
}
|
|
}
|
|
|
|
async function createAdminApiKey() {
|
|
adminApiKeyOperating.value = true
|
|
try {
|
|
const result = await adminAPI.settings.regenerateAdminApiKey()
|
|
newAdminApiKey.value = result.key
|
|
adminApiKeyExists.value = true
|
|
adminApiKeyMasked.value = result.key.substring(0, 10) + '...' + result.key.slice(-4)
|
|
appStore.showSuccess(t('admin.settings.adminApiKey.keyGenerated'))
|
|
} catch (error: any) {
|
|
appStore.showError(error.message || t('common.error'))
|
|
} finally {
|
|
adminApiKeyOperating.value = false
|
|
}
|
|
}
|
|
|
|
async function regenerateAdminApiKey() {
|
|
if (!confirm(t('admin.settings.adminApiKey.regenerateConfirm'))) return
|
|
await createAdminApiKey()
|
|
}
|
|
|
|
async function deleteAdminApiKey() {
|
|
if (!confirm(t('admin.settings.adminApiKey.deleteConfirm'))) return
|
|
adminApiKeyOperating.value = true
|
|
try {
|
|
await adminAPI.settings.deleteAdminApiKey()
|
|
adminApiKeyExists.value = false
|
|
adminApiKeyMasked.value = ''
|
|
newAdminApiKey.value = ''
|
|
appStore.showSuccess(t('admin.settings.adminApiKey.keyDeleted'))
|
|
} catch (error: any) {
|
|
appStore.showError(error.message || t('common.error'))
|
|
} finally {
|
|
adminApiKeyOperating.value = false
|
|
}
|
|
}
|
|
|
|
function copyNewKey() {
|
|
navigator.clipboard
|
|
.writeText(newAdminApiKey.value)
|
|
.then(() => {
|
|
appStore.showSuccess(t('admin.settings.adminApiKey.keyCopied'))
|
|
})
|
|
.catch(() => {
|
|
appStore.showError(t('common.copyFailed'))
|
|
})
|
|
}
|
|
|
|
// Stream Timeout 方法
|
|
async function loadStreamTimeoutSettings() {
|
|
streamTimeoutLoading.value = true
|
|
try {
|
|
const settings = await adminAPI.settings.getStreamTimeoutSettings()
|
|
Object.assign(streamTimeoutForm, settings)
|
|
} catch (error: any) {
|
|
console.error('Failed to load stream timeout settings:', error)
|
|
} finally {
|
|
streamTimeoutLoading.value = false
|
|
}
|
|
}
|
|
|
|
async function saveStreamTimeoutSettings() {
|
|
streamTimeoutSaving.value = true
|
|
try {
|
|
const updated = await adminAPI.settings.updateStreamTimeoutSettings({
|
|
enabled: streamTimeoutForm.enabled,
|
|
timeout_seconds: streamTimeoutForm.timeout_seconds,
|
|
action: streamTimeoutForm.action,
|
|
temp_unsched_minutes: streamTimeoutForm.temp_unsched_minutes,
|
|
threshold_count: streamTimeoutForm.threshold_count,
|
|
threshold_window_minutes: streamTimeoutForm.threshold_window_minutes
|
|
})
|
|
Object.assign(streamTimeoutForm, updated)
|
|
appStore.showSuccess(t('admin.settings.streamTimeout.saved'))
|
|
} catch (error: any) {
|
|
appStore.showError(
|
|
t('admin.settings.streamTimeout.saveFailed') + ': ' + (error.message || t('common.unknownError'))
|
|
)
|
|
} finally {
|
|
streamTimeoutSaving.value = false
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
loadSettings()
|
|
loadAdminApiKey()
|
|
loadStreamTimeoutSettings()
|
|
})
|
|
</script>
|