Merge pull request #7 from SISheogorath/feature/libravatar
Use libravatar as drop-in replacement for gravatar
This commit is contained in:
		
						commit
						7f04013f4a
					
				@ -37,7 +37,7 @@ exports.generateAvatarURL = function (name, email = '', big = true) {
 | 
				
			|||||||
  let hexDigest = hash.digest('hex')
 | 
					  let hexDigest = hash.digest('hex')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (email !== '' && config.allowGravatar) {
 | 
					  if (email !== '' && config.allowGravatar) {
 | 
				
			||||||
    photo = 'https://www.gravatar.com/avatar/' + hexDigest;
 | 
					    photo = 'https://cdn.libravatar.org/avatar/' + hexDigest;
 | 
				
			||||||
    if (big) {
 | 
					    if (big) {
 | 
				
			||||||
      photo += '?s=400'
 | 
					      photo += '?s=400'
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
 | 
				
			|||||||
@ -19,8 +19,8 @@ describe('generateAvatarURL() gravatar enabled', function () {
 | 
				
			|||||||
  })
 | 
					  })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  it('should return correct urls', function () {
 | 
					  it('should return correct urls', function () {
 | 
				
			||||||
    assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400')
 | 
					    assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://cdn.libravatar.org/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400')
 | 
				
			||||||
    assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96')
 | 
					    assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://cdn.libravatar.org/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96')
 | 
				
			||||||
  })
 | 
					  })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  it('should return correct urls for names with spaces', function () {
 | 
					  it('should return correct urls for names with spaces', function () {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user