mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
openapi: upgrade to openapi-backend 2.4.0
This commit is contained in:
parent
f9d24f5a39
commit
03d8964a7a
3 changed files with 15 additions and 57 deletions
|
@ -1,49 +1,9 @@
|
||||||
var log4js = require('log4js');
|
var log4js = require('log4js');
|
||||||
var apiLogger = log4js.getLogger("API");
|
|
||||||
var clientLogger = log4js.getLogger("client");
|
var clientLogger = log4js.getLogger("client");
|
||||||
var formidable = require('formidable');
|
var formidable = require('formidable');
|
||||||
var apiHandler = require('../../handler/APIHandler');
|
var apiHandler = require('../../handler/APIHandler');
|
||||||
var isValidJSONPName = require('./isValidJSONPName');
|
|
||||||
|
|
||||||
//This is for making an api call, collecting all post information and passing it to the apiHandler
|
|
||||||
var apiCaller = function(req, res, fields) {
|
|
||||||
res.header("Content-Type", "application/json; charset=utf-8");
|
|
||||||
|
|
||||||
apiLogger.info("REQUEST, v"+ req.params.version + ":" + req.params.func + ", " + JSON.stringify(fields));
|
|
||||||
|
|
||||||
//wrap the send function so we can log the response
|
|
||||||
//note: res._send seems to be already in use, so better use a "unique" name
|
|
||||||
res._____send = res.send;
|
|
||||||
res.send = function (response) {
|
|
||||||
response = JSON.stringify(response);
|
|
||||||
apiLogger.info("RESPONSE, " + req.params.func + ", " + response);
|
|
||||||
|
|
||||||
//is this a jsonp call, if yes, add the function call
|
|
||||||
if(req.query.jsonp && isValidJSONPName.check(req.query.jsonp))
|
|
||||||
response = req.query.jsonp + "(" + response + ")";
|
|
||||||
|
|
||||||
res._____send(response);
|
|
||||||
}
|
|
||||||
|
|
||||||
//call the api handler
|
|
||||||
apiHandler.handle(req.params.version, req.params.func, fields, req, res);
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.apiCaller = apiCaller;
|
|
||||||
|
|
||||||
exports.expressCreateServer = function (hook_name, args, cb) {
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
||||||
//This is a api GET call, collect all post informations and pass it to the apiHandler
|
|
||||||
args.app.get('/api/:version/:func', function (req, res) {
|
|
||||||
apiCaller(req, res, req.query)
|
|
||||||
});
|
|
||||||
|
|
||||||
//This is a api POST call, collect all post informations and pass it to the apiHandler
|
|
||||||
args.app.post('/api/:version/:func', function(req, res) {
|
|
||||||
new formidable.IncomingForm().parse(req, function (err, fields, files) {
|
|
||||||
apiCaller(req, res, Object.assign(req.query, fields))
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
//The Etherpad client side sends information about how a disconnect happened
|
//The Etherpad client side sends information about how a disconnect happened
|
||||||
args.app.post('/ep/pad/connection-diagnostic-info', function(req, res) {
|
args.app.post('/ep/pad/connection-diagnostic-info', function(req, res) {
|
||||||
new formidable.IncomingForm().parse(req, function(err, fields, files) {
|
new formidable.IncomingForm().parse(req, function(err, fields, files) {
|
||||||
|
|
|
@ -11,7 +11,19 @@ const apiLogger = log4js.getLogger('API');
|
||||||
// https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v3.0
|
// https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v3.0
|
||||||
const OPENAPI_VERSION = '3.0.2'; // Swagger/OAS version
|
const OPENAPI_VERSION = '3.0.2'; // Swagger/OAS version
|
||||||
|
|
||||||
// We'll add some more info to the API methods
|
// enum for two different styles of API paths used for etherpad
|
||||||
|
const APIPathStyle = {
|
||||||
|
FLAT: 'api', // flat paths e.g. /api/createGroup
|
||||||
|
REST: 'rest', // restful paths e.g. /rest/group/create
|
||||||
|
};
|
||||||
|
|
||||||
|
// helper to get api root
|
||||||
|
const getApiRootForVersion = (version, style = APIPathStyle.FLAT) => `/${style}/${version}`;
|
||||||
|
|
||||||
|
// helper to generate an OpenAPI server object when serving definitions
|
||||||
|
const generateServerForApiVersion = (apiRoot, req) => ({
|
||||||
|
url: `${settings.ssl ? 'https' : 'http'}://${req.headers.host}${apiRoot}`,
|
||||||
|
});
|
||||||
|
|
||||||
// operations
|
// operations
|
||||||
const API = {
|
const API = {
|
||||||
|
@ -214,20 +226,6 @@ const API = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
// enum for two different styles of API paths used for etherpad
|
|
||||||
const APIPathStyle = {
|
|
||||||
FLAT: 'api', // flat paths e.g. /api/createGroup
|
|
||||||
REST: 'rest', // restful paths e.g. /rest/group/create
|
|
||||||
};
|
|
||||||
|
|
||||||
// helper to get api root
|
|
||||||
const getApiRootForVersion = (version, style = APIPathStyle.FLAT) => `/${style}/${version}`;
|
|
||||||
|
|
||||||
// helper to generate an OpenAPI server object when serving definitions
|
|
||||||
const generateServerForApiVersion = (apiRoot, req) => ({
|
|
||||||
url: `${settings.ssl ? 'https' : 'http'}://${req.headers.host}${apiRoot}`,
|
|
||||||
});
|
|
||||||
|
|
||||||
const defaultResponses = {
|
const defaultResponses = {
|
||||||
200: {
|
200: {
|
||||||
description: 'ok',
|
description: 'ok',
|
||||||
|
@ -407,7 +405,7 @@ exports.expressCreateServer = (_, args) => {
|
||||||
apiRoot,
|
apiRoot,
|
||||||
definition,
|
definition,
|
||||||
validate: false,
|
validate: false,
|
||||||
strict: true,
|
quick: true, // recommended when running multiple instances in parallel
|
||||||
});
|
});
|
||||||
|
|
||||||
// register default handlers
|
// register default handlers
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
"nodeify": "^1.0.1",
|
"nodeify": "^1.0.1",
|
||||||
"npm": "6.14.3",
|
"npm": "6.14.3",
|
||||||
"object.values": "^1.0.4",
|
"object.values": "^1.0.4",
|
||||||
"openapi-backend": "^2.3.8",
|
"openapi-backend": "^2.4.0",
|
||||||
"request": "2.88.0",
|
"request": "2.88.0",
|
||||||
"resolve": "1.1.7",
|
"resolve": "1.1.7",
|
||||||
"security": "1.0.0",
|
"security": "1.0.0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue