mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
21 lines
887 B
JavaScript
21 lines
887 B
JavaScript
|
const debug = require('ghost-ignition').debug('web:api:default:app');
|
||
|
const express = require('express');
|
||
|
const urlUtils = require('../../services/url/utils');
|
||
|
const errorHandler = require('../shared/middlewares/error-handler');
|
||
|
|
||
|
module.exports = function setupApiApp() {
|
||
|
debug('Parent API setup start');
|
||
|
const apiApp = express();
|
||
|
|
||
|
// Mount different API versions
|
||
|
apiApp.use(urlUtils.getVersionPath({version: 'v0.1'}), require('./v0.1/app')());
|
||
|
apiApp.use(urlUtils.getVersionPath({version: 'v2', type: 'content'}), require('./v2/content/app')());
|
||
|
apiApp.use(urlUtils.getVersionPath({version: 'v2', type: 'admin'}), require('./v2/admin/app')());
|
||
|
|
||
|
// Error handling for requests to non-existent API versions
|
||
|
apiApp.use(errorHandler.resourceNotFound);
|
||
|
apiApp.use(errorHandler.handleJSONResponse);
|
||
|
|
||
|
debug('Parent API setup end');
|
||
|
return apiApp;
|
||
|
};
|