Files
certd/packages/ui/certd-server/src/controller/user/cert/domain-controller.ts
T

167 lines
4.8 KiB
TypeScript
Raw Normal View History

2025-07-10 16:32:12 +08:00
import { ALL, Body, Controller, Inject, Post, Provide, Query } from '@midwayjs/core';
import { Constants, CrudController } from '@certd/lib-server';
2026-01-25 00:50:36 +08:00
import { DomainService } from "../../../modules/cert/service/domain-service.js";
import { checkPlus } from '@certd/plus-core';
2025-07-10 16:32:12 +08:00
/**
* 授权
*/
@Provide()
@Controller('/api/cert/domain')
export class DomainController extends CrudController<DomainService> {
@Inject()
service: DomainService;
getService(): DomainService {
return this.service;
}
@Post('/page', { summary: Constants.per.authOnly })
async page(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2025-07-10 16:32:12 +08:00
body.query = body.query ?? {};
2026-02-13 21:28:17 +08:00
body.query.projectId = projectId;
body.query.userId = userId;
2025-07-10 16:32:12 +08:00
const domain = body.query.domain;
delete body.query.domain;
const bq = qb => {
if (domain) {
qb.andWhere('domain like :domain', { domain: `%${domain}%` });
}
};
const pageRet = await this.getService().page({
query: body.query,
page: body.page,
sort: body.sort,
buildQuery: bq,
});
return this.ok(pageRet);
}
@Post('/list', { summary: Constants.per.authOnly })
async list(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2025-07-10 16:32:12 +08:00
body.query = body.query ?? {};
2026-02-13 21:28:17 +08:00
body.query.projectId = projectId;
body.query.userId = userId;
2025-07-10 16:32:12 +08:00
const list = await this.getService().list(body);
return this.ok(list);
}
@Post('/add', { summary: Constants.per.authOnly })
async add(@Body(ALL) bean: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
bean.projectId = projectId;
bean.userId = userId;
2025-07-10 16:32:12 +08:00
return super.add(bean);
}
@Post('/update', { summary: Constants.per.authOnly })
async update(@Body(ALL) bean: any) {
2026-02-13 21:28:17 +08:00
await this.checkOwner(this.getService(), bean.id, "write");
2025-07-10 16:32:12 +08:00
delete bean.userId;
2026-02-13 21:28:17 +08:00
delete bean.projectId;
2025-07-10 16:32:12 +08:00
return super.update(bean);
}
@Post('/info', { summary: Constants.per.authOnly })
async info(@Query('id') id: number) {
2026-02-13 21:28:17 +08:00
await this.checkOwner(this.getService(), id, "read");
2025-07-10 16:32:12 +08:00
return super.info(id);
}
@Post('/delete', { summary: Constants.per.authOnly })
async delete(@Query('id') id: number) {
2026-02-13 21:28:17 +08:00
await this.checkOwner(this.getService(), id, "write");
2025-07-10 16:32:12 +08:00
return super.delete(id);
}
@Post('/deleteByIds', { summary: Constants.per.authOnly })
async deleteByIds(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2025-07-10 16:32:12 +08:00
await this.service.delete(body.ids, {
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2025-07-10 16:32:12 +08:00
});
return this.ok();
}
2026-01-16 18:18:39 +08:00
2026-01-25 00:50:36 +08:00
@Post('/import/start', { summary: Constants.per.authOnly })
async importStart(@Body(ALL) body: any) {
2026-01-25 23:08:42 +08:00
checkPlus();
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 00:50:36 +08:00
const { key } = body;
2026-01-16 18:18:39 +08:00
const req = {
2026-02-13 21:28:17 +08:00
key,
userId: userId,
projectId: projectId,
2026-01-16 18:18:39 +08:00
}
2026-01-25 00:50:36 +08:00
await this.service.startDomainImportTask(req);
2026-01-22 00:59:28 +08:00
return this.ok();
}
2026-01-25 00:50:36 +08:00
@Post('/import/status', { summary: Constants.per.authOnly })
async importStatus() {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 00:50:36 +08:00
const req = {
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2026-01-25 00:50:36 +08:00
}
const task = await this.service.getDomainImportTaskStatus(req);
return this.ok(task);
}
@Post('/import/delete', { summary: Constants.per.authOnly })
async importDelete(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 00:50:36 +08:00
const { key } = body;
const req = {
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2026-01-25 00:50:36 +08:00
key,
}
await this.service.deleteDomainImportTask(req);
return this.ok();
}
2026-01-25 13:01:12 +08:00
@Post('/import/save', { summary: Constants.per.authOnly })
async importSave(@Body(ALL) body: any) {
2026-01-25 23:08:42 +08:00
checkPlus();
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 13:01:12 +08:00
const { dnsProviderType, dnsProviderAccessId, key } = body;
const req = {
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2026-01-25 13:01:12 +08:00
dnsProviderType, dnsProviderAccessId, key
}
const item = await this.service.saveDomainImportTask(req);
return this.ok(item);
}
2026-01-25 00:50:36 +08:00
@Post('/sync/expiration/start', { summary: Constants.per.authOnly })
async syncExpirationStart(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 00:50:36 +08:00
await this.service.startSyncExpirationTask({
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2026-01-22 00:59:28 +08:00
})
2026-01-16 18:18:39 +08:00
return this.ok();
}
2026-01-25 00:50:36 +08:00
@Post('/sync/expiration/status', { summary: Constants.per.authOnly })
async syncExpirationStatus(@Body(ALL) body: any) {
2026-02-13 21:28:17 +08:00
const {projectId,userId} = await this.getProjectUserIdRead();
2026-01-25 00:50:36 +08:00
const status = await this.service.getSyncExpirationTaskStatus({
2026-02-13 21:28:17 +08:00
userId: userId,
projectId: projectId,
2026-01-25 00:50:36 +08:00
})
return this.ok(status);
}
2026-01-16 18:18:39 +08:00
2025-07-10 16:32:12 +08:00
}