mirror of
https://github.com/YMFE/yapi.git
synced 2024-11-27 04:40:08 +08:00
41 lines
1.2 KiB
JavaScript
Executable File
41 lines
1.2 KiB
JavaScript
Executable File
const koaRouter = require('koa-router');
|
|
const interfaceController = require('./controllers/interface.js');
|
|
const yapi = require('./yapi.js');
|
|
|
|
const router = koaRouter();
|
|
const { createAction } = require("./utils/commons.js")
|
|
|
|
let pluginsRouterPath = [];
|
|
|
|
|
|
function addPluginRouter(config) {
|
|
if (!config.path || !config.controller || !config.action) {
|
|
throw new Error('Plugin Route config Error');
|
|
}
|
|
let method = config.method || 'GET';
|
|
let routerPath = '/ws_plugin/' + config.path;
|
|
if (pluginsRouterPath.indexOf(routerPath) > -1) {
|
|
throw new Error('Plugin Route path conflict, please try rename the path')
|
|
}
|
|
pluginsRouterPath.push(routerPath);
|
|
createAction(router, "/api", config.controller, config.action, routerPath, method, true);
|
|
}
|
|
|
|
|
|
function websocket(app) {
|
|
createAction(router, "/api", interfaceController, "solveConflict", "/interface/solve_conflict", "get")
|
|
|
|
yapi.emitHookSync('add_ws_router', addPluginRouter);
|
|
|
|
|
|
app.ws.use(router.routes())
|
|
app.ws.use(router.allowedMethods());
|
|
app.ws.use(function (ctx, next) {
|
|
return ctx.websocket.send(JSON.stringify({
|
|
errcode: 404,
|
|
errmsg: 'No Fount.'
|
|
}));
|
|
});
|
|
}
|
|
|
|
module.exports = websocket |