Browse Source

Add support for updating guild emoji, opening DMs

feature/storage
Andrei 8 years ago
parent
commit
642542d975
  1. 6
      disco/api/client.py
  2. 3
      disco/types/guild.py
  3. 3
      disco/types/user.py

6
disco/api/client.py

@ -311,6 +311,12 @@ class APIClient(LoggingClass):
r = self.http(Routes.USERS_ME_PATCH, json=payload)
return User.create(self.client, r.json())
def users_me_dms_create(self, recipient_id):
r = self.http(Routes.USERS_ME_DMS_CREATE, json={
'recipient_id': recipient_id,
})
return Channel.create(self.client, r.json())
def invites_get(self, invite):
r = self.http(Routes.INVITES_GET, dict(invite=invite))
return Invite.create(self.client, r.json())

3
disco/types/guild.py

@ -51,6 +51,9 @@ class GuildEmoji(Emoji):
def __str__(self):
return u'<:{}:{}>'.format(self.name, self.id)
def update(self, **kwargs):
return self.client.api.guilds_emojis_modify(self.guild_id, self.id, **kwargs)
@property
def url(self):
return 'https://discordapp.com/api/emojis/{}.png'.format(self.id)

3
disco/types/user.py

@ -45,6 +45,9 @@ class User(SlottedModel, with_equality('id'), with_hash('id')):
def mention(self):
return '<@{}>'.format(self.id)
def open_dm(self):
return self.client.api.users_me_dms_create(self.id)
def __str__(self):
return u'{}#{}'.format(self.username, str(self.discriminator).zfill(4))

Loading…
Cancel
Save