mirror of
https://github.com/certd/certd.git
synced 2026-05-17 05:37:30 +08:00
84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
import { Autoload, Config, Init, Inject, Scope, ScopeEnum } from '@midwayjs/core';
|
|
import { logger } from '@certd/pipeline';
|
|
import { UserService } from '../authority/service/user-service.js';
|
|
import { SysSettingsService } from '@certd/lib-server';
|
|
import { nanoid } from 'nanoid';
|
|
import { SysInstallInfo, SysPrivateSettings } from '@certd/lib-server';
|
|
import crypto from 'crypto';
|
|
import { PlusService } from '../basic/service/plus-service.js';
|
|
|
|
export type InstallInfo = {
|
|
installTime: number;
|
|
instanceId?: string;
|
|
};
|
|
|
|
@Autoload()
|
|
@Scope(ScopeEnum.Singleton)
|
|
export class AutoInitSite {
|
|
@Inject()
|
|
userService: UserService;
|
|
|
|
@Config('typeorm.dataSource.default.type')
|
|
dbType: string;
|
|
|
|
@Inject()
|
|
sysSettingsService: SysSettingsService;
|
|
@Inject()
|
|
plusService: PlusService;
|
|
|
|
@Init()
|
|
async init() {
|
|
logger.info('初始化站点开始');
|
|
await this.startOptimizeDb();
|
|
//安装信息
|
|
const installInfo: SysInstallInfo = await this.sysSettingsService.getSetting(SysInstallInfo);
|
|
if (!installInfo.siteId) {
|
|
installInfo.siteId = nanoid();
|
|
await this.sysSettingsService.saveSetting(installInfo);
|
|
}
|
|
if (!installInfo.siteId) {
|
|
installInfo.siteId = nanoid();
|
|
await this.sysSettingsService.saveSetting(installInfo);
|
|
}
|
|
|
|
//private信息
|
|
const privateInfo = await this.sysSettingsService.getSetting<SysPrivateSettings>(SysPrivateSettings);
|
|
if (!privateInfo.jwtKey) {
|
|
privateInfo.jwtKey = nanoid();
|
|
await this.sysSettingsService.saveSetting(privateInfo);
|
|
}
|
|
|
|
if (!privateInfo.encryptSecret) {
|
|
const secretKey = crypto.randomBytes(32);
|
|
privateInfo.encryptSecret = secretKey.toString('base64');
|
|
await this.sysSettingsService.saveSetting(privateInfo);
|
|
}
|
|
|
|
// 授权许可
|
|
await this.plusService.verify();
|
|
|
|
logger.info('初始化站点完成');
|
|
}
|
|
|
|
async startOptimizeDb() {
|
|
//优化数据库
|
|
//检查当前数据库类型为sqlite
|
|
if (this.dbType === 'better-sqlite3') {
|
|
const res = await this.userService.repository.query('PRAGMA auto_vacuum;');
|
|
if (!(res && res.length > 0 && res[0].auto_vacuum > 0)) {
|
|
//未开启自动优化
|
|
await this.userService.repository.query('PRAGMA auto_vacuum = INCREMENTAL;');
|
|
logger.info('sqlite数据库自动优化已开启');
|
|
}
|
|
|
|
const optimizeDb = async () => {
|
|
logger.info('sqlite数据库空间优化开始');
|
|
await this.userService.repository.query('VACUUM');
|
|
logger.info('sqlite数据库空间优化完成');
|
|
};
|
|
await optimizeDb();
|
|
setInterval(optimizeDb, 1000 * 60 * 60 * 24);
|
|
}
|
|
}
|
|
}
|