mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { Config, Controller, Get, Inject, Provide } from '@midwayjs/core';
|
|
import { BaseController } from '../../../basic/base-controller.js';
|
|
import { Constants } from '../../../basic/constants.js';
|
|
import { SysSettingsService } from '../../system/service/sys-settings-service.js';
|
|
import { SysInstallInfo, SysPublicSettings, SysSiteInfo } from '../../system/service/models.js';
|
|
import { AppKey } from '@certd/pipeline';
|
|
|
|
/**
|
|
*/
|
|
@Provide()
|
|
@Controller('/api/basic/settings')
|
|
export class BasicSettingsController extends BaseController {
|
|
@Inject()
|
|
sysSettingsService: SysSettingsService;
|
|
@Config('account.server.baseUrl')
|
|
accountServerBaseUrl: any;
|
|
|
|
@Get('/public', { summary: Constants.per.guest })
|
|
public async getSysPublic() {
|
|
const settings = await this.sysSettingsService.getSetting(SysPublicSettings);
|
|
return this.ok(settings);
|
|
}
|
|
|
|
@Get('/install', { summary: Constants.per.guest })
|
|
public async getInstallInfo() {
|
|
const settings: SysInstallInfo = await this.sysSettingsService.getSetting(SysInstallInfo);
|
|
settings.accountServerBaseUrl = this.accountServerBaseUrl;
|
|
settings.appKey = AppKey;
|
|
return this.ok(settings);
|
|
}
|
|
|
|
@Get('/siteInfo', { summary: Constants.per.guest })
|
|
public async getSiteInfo() {
|
|
const settings: SysSiteInfo = await this.sysSettingsService.getSetting(SysSiteInfo);
|
|
return this.ok(settings);
|
|
}
|
|
}
|