mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
60fd98679f
refs #5091, refs #9192 - This is similar to #9218, in that I'm revealing bits of code that are "controllers" in our codebase. As opposed to routes, services, renderers etc. - This also reveals some code which is identical to the channels controller - There is more to do here, but for now I've got the module split up, and the tests split and improved. - Next I'll split RSS into controller + service, DRY up the controller code, etc
45 lines
1.9 KiB
JavaScript
45 lines
1.9 KiB
JavaScript
var _ = require('lodash'),
|
|
errors = require('../errors'),
|
|
i18n = require('../i18n'),
|
|
filters = require('../filters'),
|
|
safeString = require('../utils/index').safeString,
|
|
handleError = require('./frontend/error'),
|
|
fetchData = require('./frontend/fetch-data'),
|
|
setRequestIsSecure = require('./frontend/secure'),
|
|
renderChannel = require('./frontend/render-channel');
|
|
|
|
module.exports = function channelController(req, res, next) {
|
|
// Parse the parameters we need from the URL
|
|
var pageParam = req.params.page !== undefined ? req.params.page : 1,
|
|
slugParam = req.params.slug ? safeString(req.params.slug) : undefined;
|
|
|
|
// @TODO: fix this, we shouldn't change the channel object!
|
|
// Set page on postOptions for the query made later
|
|
res.locals.channel.postOptions.page = pageParam;
|
|
res.locals.channel.slugParam = slugParam;
|
|
|
|
// Call fetchData to get everything we need from the API
|
|
return fetchData(res.locals.channel).then(function handleResult(result) {
|
|
// If page is greater than number of pages we have, go straight to 404
|
|
if (pageParam > result.meta.pagination.pages) {
|
|
return next(new errors.NotFoundError({message: i18n.t('errors.errors.pageNotFound')}));
|
|
}
|
|
|
|
// Format data 1
|
|
// @TODO: figure out if this can be removed, it's supposed to ensure that absolutely URLs get generated
|
|
// correctly for the various objects, but I believe it doesn't work and a different approach is needed.
|
|
setRequestIsSecure(req, result.posts);
|
|
_.each(result.data, function (data) {
|
|
setRequestIsSecure(req, data);
|
|
});
|
|
|
|
// @TODO: properly design these filters
|
|
filters.doFilter('prePostsRender', result.posts, res.locals)
|
|
.then(function (posts) {
|
|
result.posts = posts;
|
|
return result;
|
|
})
|
|
.then(renderChannel(req, res));
|
|
}).catch(handleError(next));
|
|
};
|