mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
closes #8334 - adds title, image and description to structured data to be rendered as open graph and twitter data. - if meta title and description for a post exists already, the custom structured data will overwrite those for `og:` and `twitter:` data. `JSON-LD` (Schema.org`) is not affected and will stay the same. - adds tests - adds new og and twitter fields to schema incl. migration
73 lines
3.2 KiB
JavaScript
73 lines
3.2 KiB
JavaScript
var getCachedImageSizeFromUrl = require('../../utils/cached-image-size-from-url'),
|
|
Promise = require('bluebird'),
|
|
_ = require('lodash');
|
|
|
|
/**
|
|
* Get Image dimensions
|
|
* @param {object} metaData
|
|
* @returns {object} metaData
|
|
* @description for image properties in meta data (coverImage, authorImage and blog.logo), `getCachedImageSizeFromUrl` is
|
|
* called to receive image width and height
|
|
*/
|
|
function getImageDimensions(metaData) {
|
|
var fetch = {
|
|
coverImage: getCachedImageSizeFromUrl(metaData.coverImage.url),
|
|
authorImage: getCachedImageSizeFromUrl(metaData.authorImage.url),
|
|
ogImage: getCachedImageSizeFromUrl(metaData.ogImage.url),
|
|
// CASE: check if logo has hard coded image dimension. In that case it's an `ico` file, which
|
|
// is not supported by `image-size` and would produce an error
|
|
logo: metaData.blog.logo && metaData.blog.logo.dimensions ? metaData.blog.logo.dimensions : getCachedImageSizeFromUrl(metaData.blog.logo.url)
|
|
};
|
|
|
|
return Promise.props(fetch).then(function (resolve) {
|
|
var imageObj = {};
|
|
|
|
imageObj = {
|
|
coverImage: resolve.coverImage,
|
|
authorImage: resolve.authorImage,
|
|
ogImage: resolve.ogImage,
|
|
logo: resolve.logo
|
|
};
|
|
|
|
_.forEach(imageObj, function (key, value) {
|
|
if (_.has(key, 'width') && _.has(key, 'height')) {
|
|
// We have some restrictions for publisher.logo:
|
|
// The image needs to be <=600px wide and <=60px high (ideally exactly 600px x 60px).
|
|
// Unless we have proper image-handling (see https://github.com/TryGhost/Ghost/issues/4453),
|
|
// we will fake it in some cases or not produce an imageObject at all.
|
|
if (value === 'logo') {
|
|
if (key.height <= 60 && key.width <= 600) {
|
|
_.assign(metaData.blog[value], {
|
|
dimensions: {
|
|
width: key.width,
|
|
height: key.height
|
|
}
|
|
});
|
|
} else if ((metaData.blog.logo && metaData.blog.logo.dimensions) || key.width === key.height) {
|
|
// CASES:
|
|
// 1. .ico files have image dimensions assigned already. If they're not
|
|
// within the requirements of Google, we fake them...
|
|
// 2. the logo (non-ico) is too large, but it is a square. We fake it as well...
|
|
_.assign(metaData.blog[value], {
|
|
dimensions: {
|
|
width: 60,
|
|
height: 60
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
_.assign(metaData[value], {
|
|
dimensions: {
|
|
width: key.width,
|
|
height: key.height
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
return metaData;
|
|
});
|
|
}
|
|
|
|
module.exports = getImageDimensions;
|