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) 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: if not self.avatar:
return 'https://cdn.discordapp.com/embed/avatars/{}.png'.format(self.default_avatar.value) return 'https://cdn.discordapp.com/embed/avatars/{}.png'.format(self.default_avatar.value)
if fmt is not None:
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format( return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(self.id, self.avatar, fmt, size)
self.id, if self.avatar.startswith('a_'):
self.avatar, return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.avatar, size)
fmt, else:
size, return 'https://cdn.discordapp.com/avatars/{}/{}.webp?size={}'.format(self.id, self.avatar, size)
)
@property @property
def default_avatar(self): def default_avatar(self):

Loading…
Cancel
Save