mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
15d9a77092
* 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
32 lines
952 B
JavaScript
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
|
|
});
|
|
};
|