mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
be4a5a84d9
refs https://github.com/TryGhost/Ghost/issues/10921, closes https://github.com/TryGhost/Ghost/issues/11357, closes https://github.com/TryGhost/Ghost/issues/11403 - updates the sources and fallbacks for the output of `{{ghost_head}}` meta/structured data - re-works related tests to better show the fallback chains for different scenarios - fixes `{{ghost_head}}` tests to use `before/afterEach` so that tests are not interdependent
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
const _ = require('lodash');
|
|
const getContextObject = require('./context_object.js');
|
|
const urlUtils = require('../../server/lib/url-utils');
|
|
const settingsCache = require('../../server/services/settings/cache');
|
|
|
|
function getOgImage(data) {
|
|
const context = data.context ? data.context : null;
|
|
const contextObject = getContextObject(data, context, false);
|
|
|
|
if (_.includes(context, 'home')) {
|
|
const imgUrl = settingsCache.get('og_image') || settingsCache.get('cover_image');
|
|
return (imgUrl && urlUtils.relativeToAbsolute(imgUrl)) || null;
|
|
}
|
|
|
|
if (_.includes(context, 'post') || _.includes(context, 'page') || _.includes(context, 'amp')) {
|
|
if (contextObject.og_image) {
|
|
return urlUtils.relativeToAbsolute(contextObject.og_image);
|
|
} else if (contextObject.feature_image) {
|
|
return urlUtils.relativeToAbsolute(contextObject.feature_image);
|
|
}
|
|
}
|
|
|
|
if (_.includes(context, 'author') && contextObject.cover_image) {
|
|
return urlUtils.relativeToAbsolute(contextObject.cover_image);
|
|
}
|
|
|
|
if (_.includes(context, 'tag')) {
|
|
if (contextObject.feature_image) {
|
|
return urlUtils.relativeToAbsolute(contextObject.feature_image);
|
|
} else if (settingsCache.get('cover_image')) {
|
|
return urlUtils.relativeToAbsolute(settingsCache.get('cover_image'));
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
module.exports = getOgImage;
|