Ghost/core/server/lib/image/gravatar.js
Vikas Potluri 15d9a77092
Moved config from server to shared (#11850)
* moved `server/config` to `shared/config`
* updated config import paths in server to use shared
* updated config import paths in frontend to use shared
* updated config import paths in test to use shared
* updated config import paths in root to use shared
* trigger regression tests
* of course the rebase broke tests
2020-05-27 18:47:53 +01:00

32 lines
952 B
JavaScript

const Promise = require('bluebird');
const crypto = require('crypto');
const config = require('../../../shared/config');
const request = require('../request');
module.exports.lookup = function lookup(userData, timeout) {
let gravatarUrl = '//www.gravatar.com/avatar/' +
crypto.createHash('md5').update(userData.email.toLowerCase().trim()).digest('hex') +
'?s=250';
if (config.isPrivacyDisabled('useGravatar')) {
return Promise.resolve();
}
return request('https:' + gravatarUrl + '&d=404&r=x', {timeout: timeout || 2 * 1000})
.then(function () {
gravatarUrl += '&d=mm&r=x';
return {
image: gravatarUrl
};
})
.catch({statusCode: 404}, function () {
return {
image: undefined
};
})
.catch(function () {
// ignore error, just resolve with no image url
});
};