mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
ac2578b419
refs #9178
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
var path = require('path'),
|
|
express = require('express'),
|
|
ampRouter = express.Router(),
|
|
i18n = require('../../../lib/common/i18n'),
|
|
|
|
// Dirty requires
|
|
errors = require('../../../lib/common/errors'),
|
|
postLookup = require('../../../controllers/frontend/post-lookup'),
|
|
renderer = require('../../../controllers/frontend/renderer'),
|
|
|
|
templateName = 'amp';
|
|
|
|
function _renderer(req, res, next) {
|
|
// Note: this is super similar to the config middleware used in channels
|
|
// @TODO refactor into to something explicit & DRY this up
|
|
res._route = {
|
|
type: 'custom',
|
|
templateName: templateName,
|
|
defaultTemplate: path.resolve(__dirname, 'views', templateName + '.hbs')
|
|
};
|
|
|
|
// Renderer begin
|
|
// Format data
|
|
var data = req.body || {};
|
|
|
|
// CASE: we only support amp pages for posts that are not static pages
|
|
if (!data.post || data.post.page) {
|
|
return next(new errors.NotFoundError({message: i18n.t('errors.errors.pageNotFound')}));
|
|
}
|
|
|
|
// Render Call
|
|
return renderer(req, res, data);
|
|
}
|
|
|
|
// This here is a controller.
|
|
// In fact, this whole file is nothing more than a controller + renderer & doesn't need to be a router
|
|
function getPostData(req, res, next) {
|
|
req.body = req.body || {};
|
|
|
|
postLookup(res.locals.relativeUrl)
|
|
.then(function handleResult(result) {
|
|
if (result && result.post) {
|
|
req.body.post = result.post;
|
|
}
|
|
|
|
next();
|
|
})
|
|
.catch(next);
|
|
}
|
|
|
|
// AMP frontend route
|
|
ampRouter
|
|
.route('/')
|
|
.get(
|
|
getPostData,
|
|
_renderer
|
|
);
|
|
|
|
module.exports = ampRouter;
|
|
module.exports.renderer = _renderer;
|
|
module.exports.getPostData = getPostData;
|