This commit is contained in:
xiaojunnuo
2024-09-29 14:57:20 +08:00
parent 7ee9d915fb
commit 51f29d6093
9 changed files with 45 additions and 12 deletions
@@ -53,7 +53,7 @@ export class AccessController extends CrudController<AccessService> {
}
@Post('/define', { summary: Constants.per.authOnly })
async define(@Query('type') type:string) {
async define(@Query('type') type: string) {
const access = this.service.getDefineByType(type);
return this.ok(access);
}
@@ -63,6 +63,9 @@ export class AccessController extends CrudController<AccessService> {
const list = this.service.getDefineList();
const dict = [];
for (const item of list) {
if (item?.deprecated) {
continue;
}
dict.push({
value: item.name,
label: item.title,
@@ -13,7 +13,7 @@ export class DnsProviderController extends BaseController {
service: DnsProviderService;
@Post('/list', { summary: Constants.per.authOnly })
async list(@Query(ALL) query:any) {
async list(@Query(ALL) query: any) {
query.userId = this.ctx.user.id;
const list = this.service.getList();
return this.ok(list);
@@ -8,6 +8,9 @@ export class PluginService {
const list = [];
for (const key in collection) {
const Plugin = collection[key];
if (Plugin?.define.deprecated) {
continue;
}
list.push({ ...Plugin.define, key });
}
return list;
@@ -2,8 +2,9 @@ import { IsAccess, AccessInput } from '@certd/pipeline';
@IsAccess({
name: 'dnspod',
title: 'dnspod',
title: 'dnspod(已废弃)',
desc: '腾讯云的域名解析接口已迁移到dnspod',
deprecated: 'dnspod已废弃,请换成腾讯云',
})
export class DnspodAccess {
@AccessInput({
@@ -6,8 +6,9 @@ import { DnspodAccess } from '../access/index.js';
@IsDnsProvider({
name: 'dnspod',
title: 'dnspod(已过时,请尽快换成腾讯云)',
desc: '请尽快换成腾讯云类型',
desc: '已废弃,请尽快换成腾讯云类型',
accessType: 'dnspod',
deprecated: 'dnspod已废弃,请换成腾讯云',
})
export class DnspodDnsProvider extends AbstractDnsProvider {
@Autowire()