mirror of
https://github.com/certd/certd.git
synced 2026-06-14 21:27:33 +08:00
f9541fab70
本次提交新增了从DNS解析记录批量导入站点监控的完整功能: 1. 扩展Registrable类型新增icon字段支持 2. 新增DNS解析记录获取接口和基础实现 3. 为阿里云、腾讯云、Cloudflare等DNS提供商添加解析记录分页获取支持 4. 新增站点监控导入任务管理功能,支持保存、启动、删除导入任务 5. 新增中文/英文多语言支持 6. 优化暗黑模式表格样式 7. 修复ACME账户访问修复逻辑中项目ID可选的问题 8. 优化HiPM DNS提供商的域名获取逻辑
225 lines
7.8 KiB
TypeScript
225 lines
7.8 KiB
TypeScript
import { ALL, Body, Controller, Inject, Post, Provide, Query } from "@midwayjs/core";
|
|
import { Constants, CrudController } from "@certd/lib-server";
|
|
import { AuthService } from "../../../modules/sys/authority/service/auth-service.js";
|
|
import { SiteInfoService } from "../../../modules/monitor/service/site-info-service.js";
|
|
import { UserSiteMonitorSetting } from "../../../modules/mine/service/models.js";
|
|
import { merge } from "lodash-es";
|
|
import { SiteIpService } from "../../../modules/monitor/service/site-ip-service.js";
|
|
import { utils } from "@certd/basic";
|
|
import { ApiTags } from "@midwayjs/swagger";
|
|
|
|
/**
|
|
*/
|
|
@Provide()
|
|
@Controller("/api/monitor/site")
|
|
@ApiTags(["monitor"])
|
|
export class SiteInfoController extends CrudController<SiteInfoService> {
|
|
@Inject()
|
|
service: SiteInfoService;
|
|
@Inject()
|
|
authService: AuthService;
|
|
@Inject()
|
|
siteIpService: SiteIpService;
|
|
|
|
getService(): SiteInfoService {
|
|
return this.service;
|
|
}
|
|
|
|
@Post("/page", { description: Constants.per.authOnly, summary: "查询站点监控分页列表" })
|
|
async page(@Body(ALL) body: any) {
|
|
body.query = body.query ?? {};
|
|
const { projectId, userId } = await this.getProjectUserIdRead();
|
|
body.query.projectId = projectId;
|
|
body.query.userId = userId;
|
|
const certDomains = body.query.certDomains;
|
|
const domain = body.query.domain;
|
|
const name = body.query.name;
|
|
delete body.query.certDomains;
|
|
delete body.query.domain;
|
|
delete body.query.name;
|
|
const res = await this.service.page({
|
|
query: body.query,
|
|
page: body.page,
|
|
sort: body.sort,
|
|
buildQuery: bq => {
|
|
if (domain) {
|
|
bq.andWhere("domain like :domain", { domain: `%${domain}%` });
|
|
}
|
|
if (certDomains) {
|
|
bq.andWhere("cert_domains like :cert_domains", { cert_domains: `%${certDomains}%` });
|
|
}
|
|
if (name) {
|
|
bq.andWhere("name like :name", { name: `%${name}%` });
|
|
}
|
|
},
|
|
});
|
|
return this.ok(res);
|
|
}
|
|
|
|
@Post("/list", { description: Constants.per.authOnly, summary: "查询站点监控列表" })
|
|
async list(@Body(ALL) body: any) {
|
|
body.query = body.query ?? {};
|
|
const { projectId, userId } = await this.getProjectUserIdRead();
|
|
body.query.projectId = projectId;
|
|
body.query.userId = userId;
|
|
return await super.list(body);
|
|
}
|
|
|
|
@Post("/add", { description: Constants.per.authOnly, summary: "添加站点监控" })
|
|
async add(@Body(ALL) bean: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
bean.projectId = projectId;
|
|
bean.userId = userId;
|
|
const res = await this.service.add(bean);
|
|
const entity = await this.service.info(res.id);
|
|
if (entity.disabled) {
|
|
this.service.check(entity.id, true, 0);
|
|
}
|
|
return this.ok(res);
|
|
}
|
|
|
|
@Post("/update", { description: Constants.per.authOnly, summary: "更新站点监控" })
|
|
async update(@Body(ALL) bean) {
|
|
await this.checkOwner(this.service, bean.id, "write");
|
|
delete bean.userId;
|
|
delete bean.projectId;
|
|
await this.service.update(bean);
|
|
const entity = await this.service.info(bean.id);
|
|
if (entity.disabled) {
|
|
this.service.check(entity.id, true, 0);
|
|
}
|
|
return this.ok();
|
|
}
|
|
@Post("/info", { description: Constants.per.authOnly, summary: "查询站点监控详情" })
|
|
async info(@Query("id") id: number) {
|
|
await this.checkOwner(this.service, id, "read");
|
|
return await super.info(id);
|
|
}
|
|
|
|
@Post("/delete", { description: Constants.per.authOnly, summary: "删除站点监控" })
|
|
async delete(@Query("id") id: number) {
|
|
await this.checkOwner(this.service, id, "write");
|
|
return await super.delete(id);
|
|
}
|
|
|
|
@Post("/batchDelete", { description: Constants.per.authOnly, summary: "批量删除站点监控" })
|
|
async batchDelete(@Body(ALL) body: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
await this.service.batchDelete(body.ids, userId, projectId);
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/check", { description: Constants.per.authOnly, summary: "检查站点监控" })
|
|
async check(@Body("id") id: number) {
|
|
await this.checkOwner(this.service, id, "read");
|
|
await this.service.check(id, true, 0);
|
|
await utils.sleep(1000);
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/checkAll", { description: Constants.per.authOnly, summary: "检查所有站点监控" })
|
|
async checkAll() {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
this.service.triggerJobOnce(userId, projectId);
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/import", { description: Constants.per.authOnly, summary: "导入站点监控" })
|
|
async doImport(@Body(ALL) body: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
await this.service.doImport({
|
|
text: body.text,
|
|
groupId: body.groupId,
|
|
userId,
|
|
projectId,
|
|
});
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/import/save", { description: Constants.per.authOnly, summary: "保存站点证书监控导入任务" })
|
|
async siteInfoImportSave(@Body(ALL) body: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
const { dnsProviderType, dnsProviderAccessId, key, groupId } = body;
|
|
const item = await this.service.saveSiteInfoImportTask({
|
|
userId: userId,
|
|
projectId: projectId,
|
|
dnsProviderType,
|
|
dnsProviderAccessId,
|
|
key,
|
|
groupId,
|
|
});
|
|
return this.ok(item);
|
|
}
|
|
|
|
@Post("/import/status", { description: Constants.per.authOnly, summary: "查询站点证书监控导入任务状态" })
|
|
async siteInfoImportStatus() {
|
|
const { projectId, userId } = await this.getProjectUserIdRead();
|
|
const task = await this.service.getSiteInfoImportTaskStatus({
|
|
userId: userId,
|
|
projectId: projectId,
|
|
});
|
|
return this.ok(task);
|
|
}
|
|
|
|
@Post("/import/delete", { description: Constants.per.authOnly, summary: "删除站点证书监控导入任务" })
|
|
async siteInfoImportDelete(@Body(ALL) body: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
const { key } = body;
|
|
await this.service.deleteSiteInfoImportTask({
|
|
userId: userId,
|
|
projectId: projectId,
|
|
key,
|
|
});
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/import/start", { description: Constants.per.authOnly, summary: "开始站点证书监控导入任务" })
|
|
async siteInfoImportStart(@Body(ALL) body: any) {
|
|
const { projectId, userId } = await this.getProjectUserIdWrite();
|
|
const { key } = body;
|
|
await this.service.startSiteInfoImportTask({
|
|
key,
|
|
userId: userId,
|
|
projectId: projectId,
|
|
});
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/ipCheckChange", { description: Constants.per.authOnly, summary: "修改IP检查设置" })
|
|
async ipCheckChange(@Body(ALL) bean: any) {
|
|
await this.checkOwner(this.service, bean.id, "read");
|
|
await this.service.ipCheckChange({
|
|
id: bean.id,
|
|
ipCheck: bean.ipCheck,
|
|
});
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/disabledChange", { description: Constants.per.authOnly, summary: "修改禁用状态" })
|
|
async disabledChange(@Body(ALL) bean: any) {
|
|
await this.checkOwner(this.service, bean.id, "write");
|
|
await this.service.disabledChange({
|
|
id: bean.id,
|
|
disabled: bean.disabled,
|
|
});
|
|
return this.ok();
|
|
}
|
|
|
|
@Post("/setting/get", { description: Constants.per.authOnly, summary: "获取站点监控设置" })
|
|
async get() {
|
|
const { userId, projectId } = await this.getProjectUserIdRead();
|
|
const setting = await this.service.getSetting(userId, projectId);
|
|
return this.ok(setting);
|
|
}
|
|
|
|
@Post("/setting/save", { description: Constants.per.authOnly, summary: "保存站点监控设置" })
|
|
async save(@Body(ALL) bean: any) {
|
|
const { userId, projectId } = await this.getProjectUserIdWrite();
|
|
const setting = new UserSiteMonitorSetting();
|
|
merge(setting, bean);
|
|
|
|
await this.service.saveSetting(userId, projectId, setting);
|
|
return this.ok({});
|
|
}
|
|
}
|