mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
343 lines
9.2 KiB
TypeScript
343 lines
9.2 KiB
TypeScript
import { fileExist, readDirs, readDir, rmPath, IFile } from '../config/util';
|
|
import { Router, Request, Response, NextFunction } from 'express';
|
|
import { Container } from 'typedi';
|
|
import { Logger } from 'winston';
|
|
import config from '../config';
|
|
import * as fs from 'fs/promises';
|
|
import { celebrate, Joi } from 'celebrate';
|
|
import path, { join, parse } from 'path';
|
|
import ScriptService from '../services/script';
|
|
import multer from 'multer';
|
|
import { writeFileWithLock } from '../shared/utils';
|
|
const route = Router();
|
|
|
|
const storage = multer.diskStorage({
|
|
destination: function (req, file, cb) {
|
|
cb(null, config.scriptPath);
|
|
},
|
|
filename: function (req, file, cb) {
|
|
cb(null, file.originalname);
|
|
},
|
|
});
|
|
const upload = multer({ storage: storage });
|
|
|
|
export default (app: Router) => {
|
|
app.use('/scripts', route);
|
|
|
|
route.get('/', async (req: Request, res: Response, next: NextFunction) => {
|
|
const logger: Logger = Container.get('logger');
|
|
try {
|
|
let result: IFile[] = [];
|
|
const blacklist = [
|
|
'node_modules',
|
|
'.git',
|
|
'.pnpm',
|
|
'pnpm-lock.yaml',
|
|
'yarn.lock',
|
|
'package-lock.json',
|
|
];
|
|
if (req.query.path) {
|
|
const targetPath = path.join(
|
|
config.scriptPath,
|
|
req.query.path as string,
|
|
);
|
|
result = await readDir(targetPath, config.scriptPath, blacklist);
|
|
} else {
|
|
result = await readDirs(
|
|
config.scriptPath,
|
|
config.scriptPath,
|
|
blacklist,
|
|
(a, b) => {
|
|
if (a.type === b.type) {
|
|
return a.title.localeCompare(b.title);
|
|
} else {
|
|
return a.type === 'directory' ? -1 : 1;
|
|
}
|
|
},
|
|
);
|
|
}
|
|
res.send({
|
|
code: 200,
|
|
data: result,
|
|
});
|
|
} catch (e) {
|
|
logger.error('🔥 error: %o', e);
|
|
return next(e);
|
|
}
|
|
});
|
|
|
|
route.get(
|
|
'/detail',
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
const scriptService = Container.get(ScriptService);
|
|
const content = await scriptService.getFile(
|
|
req.query.path as string,
|
|
req.query.file as string,
|
|
);
|
|
res.send({ code: 200, data: content });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.get(
|
|
'/:file',
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
const scriptService = Container.get(ScriptService);
|
|
const content = await scriptService.getFile(
|
|
req.query.path as string,
|
|
req.params.file,
|
|
);
|
|
res.send({ code: 200, data: content });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.post(
|
|
'/',
|
|
upload.single('file'),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, path, content, originFilename, directory } =
|
|
req.body as {
|
|
filename: string;
|
|
path: string;
|
|
content: string;
|
|
originFilename: string;
|
|
directory: string;
|
|
};
|
|
|
|
if (!path) {
|
|
path = config.scriptPath;
|
|
}
|
|
if (!path.endsWith('/')) {
|
|
path += '/';
|
|
}
|
|
if (!path.startsWith('/')) {
|
|
path = join(config.scriptPath, path);
|
|
}
|
|
if (config.writePathList.every((x) => !path.startsWith(x))) {
|
|
return res.send({
|
|
code: 403,
|
|
message: '暂无权限',
|
|
});
|
|
}
|
|
|
|
if (req.file) {
|
|
await fs.rename(req.file.path, join(path, filename));
|
|
return res.send({ code: 200 });
|
|
}
|
|
|
|
if (directory) {
|
|
await fs.mkdir(join(path, directory), { recursive: true });
|
|
return res.send({ code: 200 });
|
|
}
|
|
|
|
if (!originFilename) {
|
|
originFilename = filename;
|
|
}
|
|
const originFilePath = join(
|
|
path,
|
|
`${originFilename.replace(/\//g, '')}`,
|
|
);
|
|
const filePath = join(path, `${filename.replace(/\//g, '')}`);
|
|
const fileExists = await fileExist(filePath);
|
|
if (fileExists) {
|
|
await fs.copyFile(
|
|
originFilePath,
|
|
join(config.bakPath, originFilename.replace(/\//g, '')),
|
|
);
|
|
if (filename !== originFilename) {
|
|
await rmPath(originFilePath);
|
|
}
|
|
}
|
|
await writeFileWithLock(filePath, content);
|
|
return res.send({ code: 200 });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.put(
|
|
'/',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
path: Joi.string().optional().allow(''),
|
|
content: Joi.string().required().allow(''),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, content, path } = req.body as {
|
|
filename: string;
|
|
content: string;
|
|
path: string;
|
|
};
|
|
const scriptService = Container.get(ScriptService);
|
|
const filePath = scriptService.checkFilePath(path, filename);
|
|
if (!filePath) {
|
|
return res.send({
|
|
code: 403,
|
|
message: '暂无权限',
|
|
});
|
|
}
|
|
await writeFileWithLock(filePath, content);
|
|
return res.send({ code: 200 });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.delete(
|
|
'/',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
path: Joi.string().allow(''),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, path } = req.body as {
|
|
filename: string;
|
|
path: string;
|
|
};
|
|
const scriptService = Container.get(ScriptService);
|
|
const filePath = scriptService.checkFilePath(path, filename);
|
|
if (!filePath) {
|
|
return res.send({
|
|
code: 403,
|
|
message: '暂无权限',
|
|
});
|
|
}
|
|
await rmPath(filePath);
|
|
res.send({ code: 200 });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.post(
|
|
'/download',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
path: Joi.string().allow(''),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, path } = req.body as {
|
|
filename: string;
|
|
path: string;
|
|
};
|
|
const scriptService = Container.get(ScriptService);
|
|
const filePath = scriptService.checkFilePath(path, filename);
|
|
if (!filePath) {
|
|
return res.send({
|
|
code: 403,
|
|
message: '暂无权限',
|
|
});
|
|
}
|
|
return res.download(filePath, filename, (err) => {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
});
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.put(
|
|
'/run',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
content: Joi.string().optional().allow(''),
|
|
path: Joi.string().optional().allow(''),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
const logger: Logger = Container.get('logger');
|
|
try {
|
|
let { filename, content, path } = req.body;
|
|
const { name, ext } = parse(filename);
|
|
const filePath = join(config.scriptPath, path, `${name}.swap${ext}`);
|
|
await writeFileWithLock(filePath, content || '');
|
|
|
|
const scriptService = Container.get(ScriptService);
|
|
const result = await scriptService.runScript(filePath);
|
|
res.send(result);
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.put(
|
|
'/stop',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
path: Joi.string().optional().allow(''),
|
|
pid: Joi.number().optional().allow(''),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, path, pid } = req.body;
|
|
const { name, ext } = parse(filename);
|
|
const filePath = join(config.scriptPath, path, `${name}.swap${ext}`);
|
|
const logPath = join(config.logPath, path, `${name}.swap`);
|
|
|
|
const scriptService = Container.get(ScriptService);
|
|
const result = await scriptService.stopScript(filePath, pid);
|
|
setTimeout(() => {
|
|
rmPath(logPath);
|
|
}, 3000);
|
|
res.send(result);
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
|
|
route.put(
|
|
'/rename',
|
|
celebrate({
|
|
body: Joi.object({
|
|
filename: Joi.string().required(),
|
|
path: Joi.string().allow(''),
|
|
newFilename: Joi.string().required(),
|
|
}),
|
|
}),
|
|
async (req: Request, res: Response, next: NextFunction) => {
|
|
try {
|
|
let { filename, path, type, newFilename } = req.body as {
|
|
filename: string;
|
|
path: string;
|
|
type: string;
|
|
newFilename: string;
|
|
};
|
|
const filePath = join(config.scriptPath, path, filename);
|
|
const newPath = join(config.scriptPath, path, newFilename);
|
|
await fs.rename(filePath, newPath);
|
|
res.send({ code: 200 });
|
|
} catch (e) {
|
|
return next(e);
|
|
}
|
|
},
|
|
);
|
|
};
|