feat: sharelink 资源下载管理插件 v1.1.0

- 下载资源管理与 /download/{slug} 下载链接
- 下载统计(次数/去重人数/明细/CSV 导出)
- 按资源邮箱验证(Halo 通知中心发信,互认评论插件已验证邮箱)
- 本地附件防直链(/upload/** 404)
- 文章引用扫描
- Console 前端:Vue3 + ui-plugin-bundler-kit
This commit is contained in:
shirainbown
2026-08-03 00:25:15 +08:00
commit aa4befa0ff
62 changed files with 7838 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import { IconArrowDownCircleLine } from '@halo-dev/components';
import { definePlugin } from '@halo-dev/ui-shared';
import { markRaw } from 'vue';
export default definePlugin({
components: {},
routes: [
{
parentName: 'Root',
route: {
path: '/download-manager',
name: 'DownloadManager',
component: () => import('@/views/DownloadManager.vue'),
meta: {
title: '下载管理',
permissions: ['plugin:sharelink:view'],
menu: {
name: '下载管理',
group: 'content',
icon: markRaw(IconArrowDownCircleLine),
priority: 52,
},
},
},
},
],
extensionPoints: {},
});