mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
76 lines
2.6 KiB
JavaScript
76 lines
2.6 KiB
JavaScript
const _ = require('lodash'),
|
|
Promise = require('bluebird'),
|
|
debug = require('ghost-ignition').debug('services:routing:controllers:static'),
|
|
helpers = require('../helpers'),
|
|
config = require('../../../../server/config');
|
|
|
|
function processQuery(query, locals) {
|
|
const api = require('../../../../server/api')[locals.apiVersion];
|
|
query = _.cloneDeep(query);
|
|
|
|
// CASE: If you define a single data key for a static route (e.g. data: page.team), this static route will represent
|
|
// the target resource. That means this static route has to behave the same way than the original resource url.
|
|
// e.g. the meta data package needs access to the full resource including relations.
|
|
// We override the `include` property for now, because the full data set is required anyway.
|
|
if (_.get(query, 'resource') === 'posts') {
|
|
_.extend(query.options, {
|
|
// @TODO: Remove "author" when we drop v0.1
|
|
include: 'author,authors,tags'
|
|
});
|
|
}
|
|
|
|
if (config.get('enableDeveloperExperiments')) {
|
|
Object.assign(query.options, {
|
|
context: {
|
|
members: locals.member
|
|
}
|
|
});
|
|
}
|
|
|
|
return api[query.controller][query.type](query.options);
|
|
}
|
|
|
|
/**
|
|
* @description Static route controller.
|
|
* @param {Object} req
|
|
* @param {Object} res
|
|
* @param {Function} next
|
|
* @returns {Promise}
|
|
*/
|
|
module.exports = function staticController(req, res, next) {
|
|
debug('staticController', res.routerOptions);
|
|
|
|
let props = {};
|
|
|
|
_.each(res.routerOptions.data, function (query, name) {
|
|
props[name] = processQuery(query, res.locals);
|
|
});
|
|
|
|
return Promise.props(props)
|
|
.then(function handleResult(result) {
|
|
let response = {};
|
|
|
|
if (res.routerOptions.data) {
|
|
response.data = {};
|
|
|
|
_.each(res.routerOptions.data, function (config, name) {
|
|
response.data[name] = result[name][config.resource];
|
|
|
|
if (config.type === 'browse') {
|
|
response.data[name].meta = result[name].meta;
|
|
// @TODO: remove in Ghost 3.0 (see https://github.com/TryGhost/Ghost/issues/10434)
|
|
response.data[name][config.resource] = result[name][config.resource];
|
|
}
|
|
});
|
|
}
|
|
|
|
// @TODO: See helpers/secure for more context.
|
|
_.each(response.data, function (data) {
|
|
helpers.secure(req, data);
|
|
});
|
|
|
|
helpers.renderer(req, res, helpers.formatResponse.entries(response));
|
|
})
|
|
.catch(helpers.handleError(next));
|
|
};
|