* feat(frontend): 前端界面优化与使用统计功能增强
主要改动:
1. 表格布局统一优化
- 新增 TablePageLayout 通用布局组件
- 统一所有管理页面的表格样式和交互
- 优化 DataTable、Pagination、Select 等通用组件
2. 使用统计功能增强
- 管理端: 添加完整的筛选和显示功能
- 用户端: 完善 API Key 列显示
- 后端: 优化使用统计数据结构和查询
3. 账户组件优化
- 优化 AccountStatsModal、AccountUsageCell 等组件
- 统一进度条和统计显示样式
4. 其他改进
- 完善中英文国际化
- 统一页面样式和交互体验
- 优化各视图页面的响应式布局
* fix(test): 修复 stubUsageLogRepo.ListWithFilters 测试 stub
测试用例 GET /api/v1/usage 返回 500 是因为 stub 方法未实现,
现在正确返回基于 UserID 过滤的日志数据。
* feat(frontend): 统一日期时间显示格式
**主要改动**:
1. 增强 utils/format.ts:
- 新增 formatDateOnly() - 格式: YYYY-MM-DD
- 新增 formatDateTime() - 格式: YYYY-MM-DD HH:mm:ss
2. 全局替换视图中的格式化函数:
- 移除各视图中的自定义 formatDate 函数
- 统一导入使用 @/utils/format 中的函数
- created_at/updated_at 使用 formatDateTime
- expires_at 使用 formatDateOnly
3. 受影响的视图 (8个):
- frontend/src/views/user/KeysView.vue
- frontend/src/views/user/DashboardView.vue
- frontend/src/views/user/UsageView.vue
- frontend/src/views/user/RedeemView.vue
- frontend/src/views/admin/UsersView.vue
- frontend/src/views/admin/UsageView.vue
- frontend/src/views/admin/RedeemView.vue
- frontend/src/views/admin/SubscriptionsView.vue
**效果**:
- 日期统一显示为 YYYY-MM-DD
- 时间统一显示为 YYYY-MM-DD HH:mm:ss
- 提升可维护性,避免格式不一致
* fix(frontend): 补充遗漏的时间格式化统一
**补充修复**(基于 code review 发现的遗漏):
1. 增强 utils/format.ts:
- 新增 formatTime() - 格式: HH:mm
2. 修复 4 个遗漏的文件:
- src/views/admin/UsersView.vue
* 删除 formatExpiresAt(),改用 formatDateTime()
* 修复订阅过期时间 tooltip 显示格式不一致问题
- src/views/user/ProfileView.vue
* 删除 formatMemberSince(),改用 formatDate(date, 'YYYY-MM')
* 统一会员起始时间显示格式
- src/views/user/SubscriptionsView.vue
* 修改 formatExpirationDate() 使用 formatDateOnly()
* 保留天数计算逻辑
- src/components/account/AccountStatusIndicator.vue
* 删除本地 formatTime(),改用 utils/format 中的统一函数
* 修复 rate limit 和 overload 重置时间显示
**验证**:
- TypeScript 类型检查通过 ✓
- 前端构建成功 ✓
- 所有剩余的 toLocaleString() 都是数字格式化,属于正确用法 ✓
**效果**:
- 订阅过期时间统一为 YYYY-MM-DD HH:mm:ss
- 会员起始时间统一为 YYYY-MM
- 重置时间统一为 HH:mm
- 消除所有不规范的原生 locale 方法调用
946 lines
35 KiB
Vue
946 lines
35 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">
|
|
<svg
|
|
class="mt-0.5 h-5 w-5 flex-shrink-0 text-amber-500"
|
|
fill="currentColor"
|
|
viewBox="0 0 20 20"
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z"
|
|
clip-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
<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"
|
|
>Cloudflare Dashboard</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">
|
|
{{ 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"
|
|
/>
|
|
<svg
|
|
class="mr-1.5 h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"
|
|
/>
|
|
</svg>
|
|
{{ 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"
|
|
>
|
|
<svg
|
|
class="mr-1.5 h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"
|
|
/>
|
|
</svg>
|
|
{{ 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>
|
|
</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="t('admin.settings.smtp.passwordPlaceholder')"
|
|
/>
|
|
<p class="mt-1.5 text-xs text-gray-500 dark:text-gray-400">
|
|
{{ 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, onMounted } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { adminAPI } from '@/api'
|
|
import type { SystemSettings } from '@/api/admin/settings'
|
|
import AppLayout from '@/components/layout/AppLayout.vue'
|
|
import Toggle from '@/components/common/Toggle.vue'
|
|
import { useAppStore } from '@/stores'
|
|
|
|
const { t } = useI18n()
|
|
const appStore = useAppStore()
|
|
|
|
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('')
|
|
|
|
const form = reactive<SystemSettings>({
|
|
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: '',
|
|
smtp_host: '',
|
|
smtp_port: 587,
|
|
smtp_username: '',
|
|
smtp_password: '',
|
|
smtp_from_email: '',
|
|
smtp_from_name: '',
|
|
smtp_use_tls: true,
|
|
// Cloudflare Turnstile
|
|
turnstile_enabled: false,
|
|
turnstile_site_key: '',
|
|
turnstile_secret_key: ''
|
|
})
|
|
|
|
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)
|
|
} 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 {
|
|
await adminAPI.settings.updateSettings(form)
|
|
// 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>
|