Browse Source

Add per-guild member avatar support

Fix #7054
pull/7448/head
JustAnyone 4 years ago
committed by GitHub
parent
commit
91652e3b60
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      discord/asset.py
  2. 26
      discord/member.py
  3. 12
      discord/user.py

11
discord/asset.py

@ -177,6 +177,17 @@ class Asset(AssetMixin):
animated=animated, animated=animated,
) )
@classmethod
def _from_guild_avatar(cls, state, guild_id: int, member_id: int, avatar: str) -> Asset:
animated = avatar.startswith('a_')
format = 'gif' if animated else 'png'
return cls(
state,
url=f"{cls.BASE}/guilds/{guild_id}/users/{member_id}/avatars/{avatar}.{format}?size=1024",
key=avatar,
animated=animated,
)
@classmethod @classmethod
def _from_icon(cls, state, object_id: int, icon_hash: str, path: str) -> Asset: def _from_icon(cls, state, object_id: int, icon_hash: str, path: str) -> Asset:
return cls( return cls(

26
discord/member.py

@ -34,6 +34,7 @@ from typing import Any, Dict, List, Literal, Optional, TYPE_CHECKING, Tuple, Typ
import discord.abc import discord.abc
from . import utils from . import utils
from .asset import Asset
from .utils import MISSING from .utils import MISSING
from .user import BaseUser, User, _UserTag from .user import BaseUser, User, _UserTag
from .activity import create_activity, ActivityTypes from .activity import create_activity, ActivityTypes
@ -263,6 +264,7 @@ class Member(discord.abc.Messageable, _UserTag):
'_client_status', '_client_status',
'_user', '_user',
'_state', '_state',
'_avatar',
) )
if TYPE_CHECKING: if TYPE_CHECKING:
@ -293,6 +295,7 @@ class Member(discord.abc.Messageable, _UserTag):
self.activities: Tuple[ActivityTypes, ...] = tuple() self.activities: Tuple[ActivityTypes, ...] = tuple()
self.nick: Optional[str] = data.get('nick', None) self.nick: Optional[str] = data.get('nick', None)
self.pending: bool = data.get('pending', False) self.pending: bool = data.get('pending', False)
self._avatar: Optional[str] = data.get("avatar", None)
def __str__(self) -> str: def __str__(self) -> str:
return str(self._user) return str(self._user)
@ -498,6 +501,29 @@ class Member(discord.abc.Messageable, _UserTag):
""" """
return self.nick or self.name return self.nick or self.name
@property
def display_avatar(self) -> Asset:
""":class:`Asset`: Returns the member's display avatar.
For regular members this is just their avatar, but
if they have a guild specific avatar then that
is returned instead.
.. versionadded:: 2.0
"""
return self.guild_avatar or self.avatar
@property
def guild_avatar(self) -> Optional[Asset]:
"""Optional[:class:`Asset`:] Returns an :class:`Asset` for the guild avatar
the member has if available.
.. versionadded:: 2.0
"""
if self._avatar is None:
return None
return Asset._from_guild_avatar(self._state, self.guild.id, self.id, self._avatar)
@property @property
def activity(self) -> Optional[ActivityTypes]: def activity(self) -> Optional[ActivityTypes]:
"""Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]: Returns the primary """Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]: Returns the primary

12
discord/user.py

@ -238,6 +238,18 @@ class BaseUser(_UserTag):
""" """
return self.name return self.name
@property
def display_avatar(self) -> Asset:
""":class:`Asset`: Returns the user's display avatar.
For regular users this is just their avatar, but
if they have a guild specific avatar then that
is returned instead.
.. versionadded:: 2.0
"""
return self.avatar
def mentioned_in(self, message: Message) -> bool: def mentioned_in(self, message: Message) -> bool:
"""Checks if the user is mentioned in the specified message. """Checks if the user is mentioned in the specified message.

Loading…
Cancel
Save