mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import { Router, Request, Response, NextFunction } from 'express';
|
|
import { Container } from 'typedi';
|
|
import { Logger } from 'winston';
|
|
import * as fs from 'fs';
|
|
import config from '../config';
|
|
const route = Router();
|
|
|
|
export default (app: Router) => {
|
|
app.use('/', route);
|
|
route.get(
|
|
'/config/:key',
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
const logger: Logger = Container.get('logger');
|
|
try {
|
|
let content = '未找到文件';
|
|
switch (req.params.key) {
|
|
case 'config':
|
|
content = getFileContentByName(config.confFile);
|
|
break;
|
|
case 'sample':
|
|
content = getFileContentByName(config.sampleFile);
|
|
break;
|
|
case 'crontab':
|
|
content = getFileContentByName(config.crontabFile);
|
|
break;
|
|
case 'shareCode':
|
|
let shareCodeFile = getLastModifyFilePath(config.shareCodeDir);
|
|
content = getFileContentByName(shareCodeFile);
|
|
break;
|
|
case 'diy':
|
|
content = getFileContentByName(config.diyFile);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
res.send({ code: 200, content });
|
|
} catch (e) {
|
|
logger.error('🔥 error: %o', e);
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
};
|
|
|
|
function getFileContentByName(fileName) {
|
|
if (fs.existsSync(fileName)) {
|
|
return fs.readFileSync(fileName, 'utf8');
|
|
}
|
|
return '';
|
|
}
|
|
function getLastModifyFilePath(dir) {
|
|
var filePath = '';
|
|
|
|
if (fs.existsSync(dir)) {
|
|
var lastmtime = 0;
|
|
|
|
var arr = fs.readdirSync(dir);
|
|
|
|
arr.forEach(function (item) {
|
|
var fullpath = path.join(dir, item);
|
|
var stats = fs.statSync(fullpath);
|
|
if (stats.isFile()) {
|
|
if (stats.mtimeMs >= lastmtime) {
|
|
filePath = fullpath;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
return filePath;
|
|
}
|