合并 origin/main 最新改动,正确保留所有配置: - Ops 运维监控配置和功能 - LinuxDo Connect OAuth 配置 - Update 在线更新配置 - 优惠码功能 - 其他 main 分支新功能 修复之前合并时错误删除 LinuxDo 和 Update 配置的问题。
1105 lines
42 KiB
Vue
1105 lines
42 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>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- Ops Monitoring -->
|
|
<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.opsMonitoring.title') }}
|
|
</h2>
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.opsMonitoring.description') }}
|
|
</p>
|
|
</div>
|
|
<div class="p-6">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.opsMonitoring.enabled')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.opsMonitoring.enabledHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.ops_monitoring_enabled" />
|
|
</div>
|
|
|
|
<div v-if="form.ops_monitoring_enabled" class="mt-5 flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.opsMonitoring.realtimeEnabled')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.opsMonitoring.realtimeEnabledHint') }}
|
|
</p>
|
|
</div>
|
|
<Toggle v-model="form.ops_realtime_monitoring_enabled" />
|
|
</div>
|
|
|
|
<div v-if="form.ops_monitoring_enabled" class="mt-5 flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.opsMonitoring.queryMode')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.opsMonitoring.queryModeHint') }}
|
|
</p>
|
|
</div>
|
|
<Select
|
|
v-model="form.ops_query_mode_default"
|
|
:options="opsQueryModeOptions"
|
|
class="w-[220px]"
|
|
/>
|
|
</div>
|
|
|
|
<div v-if="form.ops_monitoring_enabled" class="mt-5 flex items-center justify-between">
|
|
<div>
|
|
<label class="font-medium text-gray-900 dark:text-white">{{
|
|
t('admin.settings.opsMonitoring.metricsInterval')
|
|
}}</label>
|
|
<p class="text-sm text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.settings.opsMonitoring.metricsIntervalHint') }}
|
|
</p>
|
|
</div>
|
|
<input
|
|
v-model.number="form.ops_metrics_interval_seconds"
|
|
type="number"
|
|
min="60"
|
|
max="3600"
|
|
step="10"
|
|
class="w-[220px] rounded-lg border border-gray-300 bg-white px-3 py-2 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:outline-none focus:ring-1 focus:ring-primary-500 dark:border-dark-600 dark:bg-dark-800 dark:text-white"
|
|
/>
|
|
</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>
|
|
|
|
<!-- Ops settings and management (only show when enabled) -->
|
|
<div v-if="showOpsSettings" class="space-y-6">
|
|
<OpsRuntimeSettingsCard />
|
|
<OpsEmailNotificationCard />
|
|
<OpsAlertRulesCard />
|
|
</div>
|
|
</div>
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, onMounted, computed } 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 Select from '@/components/common/Select.vue'
|
|
import { useAdminSettingsStore, useAppStore } from '@/stores'
|
|
import OpsAlertRulesCard from '@/views/admin/ops/components/OpsAlertRulesCard.vue'
|
|
import OpsEmailNotificationCard from '@/views/admin/ops/components/OpsEmailNotificationCard.vue'
|
|
import OpsRuntimeSettingsCard from '@/views/admin/ops/components/OpsRuntimeSettingsCard.vue'
|
|
|
|
const { t } = useI18n()
|
|
const appStore = useAppStore()
|
|
const adminSettingsStore = useAdminSettingsStore()
|
|
|
|
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('')
|
|
|
|
type SettingsForm = SystemSettings & {
|
|
smtp_password: string
|
|
turnstile_secret_key: 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,
|
|
// 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
|
|
})
|
|
|
|
const opsQueryModeOptions = computed(() => [
|
|
{ value: 'auto', label: t('admin.settings.opsMonitoring.queryModeAuto') },
|
|
{ value: 'raw', label: t('admin.settings.opsMonitoring.queryModeRaw') },
|
|
{ value: 'preagg', label: t('admin.settings.opsMonitoring.queryModePreagg') }
|
|
])
|
|
|
|
const showOpsSettings = computed(() => !!form.ops_monitoring_enabled)
|
|
|
|
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 = ''
|
|
} 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,
|
|
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,
|
|
ops_monitoring_enabled: form.ops_monitoring_enabled,
|
|
ops_realtime_monitoring_enabled: form.ops_realtime_monitoring_enabled,
|
|
ops_query_mode_default: form.ops_query_mode_default,
|
|
ops_metrics_interval_seconds: form.ops_metrics_interval_seconds
|
|
}
|
|
const updated = await adminAPI.settings.updateSettings(payload)
|
|
Object.assign(form, updated)
|
|
form.smtp_password = ''
|
|
form.turnstile_secret_key = ''
|
|
adminSettingsStore.setOpsMonitoringEnabledLocal(!!updated.ops_monitoring_enabled)
|
|
adminSettingsStore.setOpsRealtimeMonitoringEnabledLocal(!!updated.ops_realtime_monitoring_enabled)
|
|
adminSettingsStore.setOpsQueryModeDefaultLocal(updated.ops_query_mode_default || 'auto')
|
|
// 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'))
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
loadSettings()
|
|
loadAdminApiKey()
|
|
})
|
|
</script>
|