Files
certd/packages/ui/certd-server/src/modules/system/controller/plus-controller.ts
T

60 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-08-14 21:24:12 +08:00
import { ALL, Body, Controller, Inject, Post, Provide } from '@midwayjs/core';
import { SysSettingsService } from '../service/sys-settings-service.js';
import { BaseController } from '../../../basic/base-controller.js';
2024-08-21 08:36:03 +08:00
import { appKey, verify } from '@certd/pipeline';
2024-08-14 21:24:12 +08:00
import { SysInstallInfo, SysLicenseInfo } from '../service/models.js';
import { logger } from '../../../utils/logger.js';
2024-08-21 08:36:03 +08:00
import { request } from '../../../utils/http.js';
2024-08-14 21:24:12 +08:00
/**
*/
@Provide()
@Controller('/api/sys/plus')
export class SysPlusController extends BaseController {
@Inject()
sysSettingsService: SysSettingsService;
@Post('/active', { summary: 'sys:settings:edit' })
async active(@Body(ALL) body) {
const { code } = body;
const installInfo: SysInstallInfo = await this.sysSettingsService.getSetting(SysInstallInfo);
const formData = {
appKey: appKey,
code,
subjectId: installInfo.siteId,
};
2024-08-21 08:36:03 +08:00
const res: any = await request({
url: 'http://localhost:11007/activation/active',
2024-08-14 21:24:12 +08:00
method: 'post',
data: formData,
});
if (res.code > 0) {
logger.error('激活失败', res.message);
return this.fail(res.message, 1);
}
const license = res.data.license;
let licenseInfo: SysLicenseInfo = await this.sysSettingsService.getSetting(SysLicenseInfo);
if (!licenseInfo) {
licenseInfo = new SysLicenseInfo();
}
licenseInfo.license = license;
await this.sysSettingsService.saveSetting(licenseInfo);
const verifyRes = await verify({
subjectId: installInfo.siteId,
license,
});
if (!verifyRes.isPlus) {
const message = verifyRes.message || '授权码校验失败';
logger.error(message);
return this.fail(message, 1);
}
return this.ok(res.data);
}
}