|
@ -63,7 +63,7 @@ class Asset: |
|
|
""" |
|
|
""" |
|
|
__slots__ = ('_state', '_url') |
|
|
__slots__ = ('_state', '_url') |
|
|
|
|
|
|
|
|
BASE = 'https://cdn.discordapp.com/' |
|
|
BASE = 'https://cdn.discordapp.com' |
|
|
|
|
|
|
|
|
def __init__(self, state, url=None): |
|
|
def __init__(self, state, url=None): |
|
|
self._state = state |
|
|
self._state = state |
|
@ -86,14 +86,14 @@ class Asset: |
|
|
if format is None: |
|
|
if format is None: |
|
|
format = 'gif' if user.is_avatar_animated() else static_format |
|
|
format = 'gif' if user.is_avatar_animated() else static_format |
|
|
|
|
|
|
|
|
return cls(state, 'avatars/{0.id}/{0.avatar}.{1}?size={2}'.format(user, format, size)) |
|
|
return cls(state, '/avatars/{0.id}/{0.avatar}.{1}?size={2}'.format(user, format, size)) |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
|
def _from_icon(cls, state, object, path): |
|
|
def _from_icon(cls, state, object, path): |
|
|
if object.icon is None: |
|
|
if object.icon is None: |
|
|
return cls(state) |
|
|
return cls(state) |
|
|
|
|
|
|
|
|
url = '{0}-icons/{1.id}/{1.icon}.jpg'.format(path, object) |
|
|
url = '/{0}-icons/{1.id}/{1.icon}.jpg'.format(path, object) |
|
|
return cls(state, url) |
|
|
return cls(state, url) |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
@ -101,7 +101,7 @@ class Asset: |
|
|
if obj.cover_image is None: |
|
|
if obj.cover_image is None: |
|
|
return cls(state) |
|
|
return cls(state) |
|
|
|
|
|
|
|
|
url = 'app-assets/{0.id}/store/{0.cover_image}.jpg'.format(obj) |
|
|
url = '/app-assets/{0.id}/store/{0.cover_image}.jpg'.format(obj) |
|
|
return cls(state, url) |
|
|
return cls(state, url) |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
@ -114,7 +114,7 @@ class Asset: |
|
|
if hash is None: |
|
|
if hash is None: |
|
|
return cls(state) |
|
|
return cls(state) |
|
|
|
|
|
|
|
|
url = '{key}/{0}/{1}.{2}?size={3}' |
|
|
url = '/{key}/{0}/{1}.{2}?size={3}' |
|
|
return cls(state, url.format(id, hash, format, size, key=key)) |
|
|
return cls(state, url.format(id, hash, format, size, key=key)) |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
@ -134,7 +134,7 @@ class Asset: |
|
|
if format is None: |
|
|
if format is None: |
|
|
format = 'gif' if guild.is_icon_animated() else static_format |
|
|
format = 'gif' if guild.is_icon_animated() else static_format |
|
|
|
|
|
|
|
|
return cls(state, 'icons/{0.id}/{0.icon}.{1}?size={2}'.format(guild, format, size)) |
|
|
return cls(state, '/icons/{0.id}/{0.icon}.{1}?size={2}'.format(guild, format, size)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __str__(self): |
|
|
def __str__(self): |
|
|