Browse Source

Fix image hashes incorrectly using `binary` type

For some reason when I initially built disco I made these types binary.
They are not binary. They are ascii hash-strings. So lets make them
strings. This fixes the Python 3 oddities described in #29 related to
formatting byte strings into normal strings.
pull/11/merge
andrei 8 years ago
parent
commit
f14f316ebc
  1. 12
      disco/types/base.py
  2. 12
      disco/types/guild.py
  3. 8
      disco/types/user.py
  4. 22
      tests/test_user.py

12
disco/types/base.py

@ -209,18 +209,6 @@ def text(obj):
return str(obj)
def binary(obj):
if obj is None:
return None
if six.PY2:
if isinstance(obj, str):
return obj.decode('utf-8')
return unicode(obj)
else:
return bytes(obj, 'utf-8')
def with_equality(field):
class T(object):
def __eq__(self, other):

12
disco/types/guild.py

@ -7,7 +7,7 @@ from disco.api.http import APIException
from disco.util.snowflake import to_snowflake
from disco.util.functional import cached_property
from disco.types.base import (
SlottedModel, Field, ListField, AutoDictField, snowflake, text, binary, enum, datetime
SlottedModel, Field, ListField, AutoDictField, snowflake, text, enum, datetime
)
from disco.types.user import User
from disco.types.voice import VoiceState
@ -269,9 +269,9 @@ class Guild(SlottedModel, Permissible):
name : str
Guild's name.
icon : str
Guild's icon (as PNG binary data).
Guild's icon hash
splash : str
Guild's splash image (as PNG binary data).
Guild's splash image hash
region : str
Voice region.
afk_timeout : int
@ -300,9 +300,9 @@ class Guild(SlottedModel, Permissible):
afk_channel_id = Field(snowflake)
embed_channel_id = Field(snowflake)
name = Field(text)
icon = Field(binary)
splash = Field(binary)
region = Field(str)
icon = Field(text)
splash = Field(text)
region = Field(text)
afk_timeout = Field(int)
embed_enabled = Field(bool)
verification_level = Field(enum(VerificationLevel))

8
disco/types/user.py

@ -1,6 +1,6 @@
from holster.enum import Enum
from disco.types.base import SlottedModel, Field, snowflake, text, binary, with_equality, with_hash
from disco.types.base import SlottedModel, Field, snowflake, text, with_equality, with_hash
DefaultAvatars = Enum(
BLURPLE=0,
@ -14,11 +14,11 @@ DefaultAvatars = Enum(
class User(SlottedModel, with_equality('id'), with_hash('id')):
id = Field(snowflake)
username = Field(text)
avatar = Field(binary)
discriminator = Field(str)
avatar = Field(text)
discriminator = Field(text)
bot = Field(bool, default=False)
verified = Field(bool)
email = Field(str)
email = Field(text)
presence = Field(None)

22
tests/test_user.py

@ -0,0 +1,22 @@
from unittest import TestCase
from disco.types.user import User, DefaultAvatars
class TestChannel(TestCase):
def test_user_avatar(self):
u = User(
id=12345,
username='test123',
avatar='1234567890abcdefghijkl',
discriminator='1234',
bot=False)
self.assertEqual(
u.avatar_url, 'https://cdn.discordapp.com/avatars/12345/1234567890abcdefghijkl.webp?size=1024'
)
def test_user_default_avatar(self):
u = User(id=123456, discriminator='1234')
self.assertEqual(u.default_avatar, DefaultAvatars.RED)
self.assertEqual(u.avatar_url, 'https://cdn.discordapp.com/embed/avatars/4.png')
Loading…
Cancel
Save