Browse Source

Add gif integration to get_avatar_url (#113)

* Update user.py

Add proper gif integration to get_avatar_url

* Update user.py

Undid removal of size and webp

* Update user.py

This should keep everyone happy... hopefully 🤔

* Update user.py

Code cleanup as per z64
pull/115/head
Dooley_labs 7 years ago
committed by Andrei Zbikowski
parent
commit
604ab73fce
  1. 15
      disco/types/user.py

15
disco/types/user.py

@ -22,16 +22,15 @@ class User(SlottedModel, with_equality('id'), with_hash('id')):
presence = Field(None)
def get_avatar_url(self, fmt='webp', size=1024):
def get_avatar_url(self, fmt=None, size=1024):
if not self.avatar:
return 'https://cdn.discordapp.com/embed/avatars/{}.png'.format(self.default_avatar.value)
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(
self.id,
self.avatar,
fmt,
size,
)
if fmt is not None:
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(self.id, self.avatar, fmt, size)
if self.avatar.startswith('a_'):
return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.avatar, size)
else:
return 'https://cdn.discordapp.com/avatars/{}/{}.webp?size={}'.format(self.id, self.avatar, size)
@property
def default_avatar(self):

Loading…
Cancel
Save