mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
closes: https://github.com/TryGhost/Toolbox/issues/324 refs: https://github.com/TryGhost/Ghost/issues/14446 - Currently, if url is configured to http but a request is marked secure, Ghost will handle upgrading all internal URLs to https so that there are no mixed content warnings - From 5.0 that feature is going away, in favour of strictly honouring the configured URL - Ghost will serve URLs exactly as configured and won't upgrade http to https anymore - This use case was common when Ghost was first built, but in 2022 the web is mostly https. - The code needed to support the feature creates a lot of additional complexity & maintenance overhead, so removing this gives us space to do more cool and useful stuff in 2022
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
const debug = require('@tryghost/debug')('services:routing:controllers:emailpost');
|
|
const config = require('../../../../shared/config');
|
|
const {routerManager} = require('../');
|
|
const urlUtils = require('../../../../shared/url-utils');
|
|
const renderer = require('../../rendering');
|
|
|
|
/**
|
|
* @description Email Post Controller.
|
|
* @param {Object} req
|
|
* @param {Object} res
|
|
* @param {Function} next
|
|
* @returns {Promise}
|
|
*/
|
|
module.exports = function emailPostController(req, res, next) {
|
|
debug('emailPostController');
|
|
|
|
const api = require('../../proxy').api;
|
|
|
|
const params = {
|
|
uuid: req.params.uuid,
|
|
include: 'authors,tags,tiers',
|
|
context: {
|
|
member: res.locals.member
|
|
}
|
|
};
|
|
|
|
return api[res.routerOptions.query.controller]
|
|
.read(params)
|
|
.then(function then(result) {
|
|
const post = result[res.routerOptions.query.resource][0];
|
|
|
|
if (!post) {
|
|
return next();
|
|
}
|
|
|
|
if (req.params.options && req.params.options.toLowerCase() === 'edit') {
|
|
// CASE: last param of the url is /edit but admin redirects are disabled
|
|
if (!config.get('admin:redirects')) {
|
|
return next();
|
|
}
|
|
|
|
// CASE: last param of the url is /edit, redirect to admin
|
|
// NOTE: only 'post' resources support email-only mode
|
|
return urlUtils.redirectToAdmin(302, res, `/#/editor/post/${post.id}`);
|
|
} else if (req.params.options) {
|
|
// CASE: unknown options param detected, ignore
|
|
return next();
|
|
}
|
|
|
|
if (post.status === 'published') {
|
|
return urlUtils.redirect301(res, routerManager.getUrlByResourceId(post.id, {withSubdirectory: true}));
|
|
}
|
|
|
|
post.access = !!post.html;
|
|
|
|
return renderer.renderEntry(req, res)(post);
|
|
})
|
|
.catch(renderer.handleError(next));
|
|
};
|