mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
147ec91162
refs #8850 - This reduces the amount of noise from the image size utility.
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
var Promise = require('bluebird'),
|
|
size = require('./image-size-from-url'),
|
|
logging = require('../logging'),
|
|
errors = require('../errors'),
|
|
getImageSizeFromUrl = size.getImageSizeFromUrl,
|
|
imageSizeCache = {};
|
|
|
|
/**
|
|
* Get cached image size from URL
|
|
* Always returns {object} imageSizeCache
|
|
* @param {string} url
|
|
* @returns {Promise<Object>} imageSizeCache
|
|
* @description Takes a url and returns image width and height from cache if available.
|
|
* If not in cache, `getImageSizeFromUrl` is called and returns the dimensions in a Promise.
|
|
*/
|
|
function getCachedImageSizeFromUrl(url) {
|
|
if (!url || url === undefined || url === null) {
|
|
return;
|
|
}
|
|
|
|
// image size is not in cache
|
|
if (!imageSizeCache[url]) {
|
|
return getImageSizeFromUrl(url).then(function (res) {
|
|
imageSizeCache[url] = res;
|
|
|
|
return Promise.resolve(imageSizeCache[url]);
|
|
}).catch(errors.NotFoundError, function () {
|
|
// in case of error we just attach the url
|
|
return Promise.resolve(imageSizeCache[url] = url);
|
|
}).catch(function (err) {
|
|
logging.error(err);
|
|
|
|
// in case of error we just attach the url
|
|
return Promise.resolve(imageSizeCache[url] = url);
|
|
});
|
|
}
|
|
// returns image size from cache
|
|
return Promise.resolve(imageSizeCache[url]);
|
|
}
|
|
|
|
module.exports = getCachedImageSizeFromUrl;
|