add support for Bug Hunter and Early Supporter flags

This commit is contained in:
bmintz 2018-10-17 22:50:17 +00:00 committed by Rapptz
parent dd5762d9ed
commit c184b0a53d
3 changed files with 20 additions and 4 deletions

View File

@ -214,9 +214,11 @@ class UserFlags(Enum):
staff = 1
partner = 2
hypesquad = 4
bug_hunter = 8
hypesquad_bravery = 64
hypesquad_brilliance = 128
hypesquad_balance = 256
early_supporter = 512
class ActivityType(IntEnum):
unknown = -1

View File

@ -52,14 +52,22 @@ class Profile(namedtuple('Profile', 'flags user mutual_guilds connected_accounts
def staff(self):
return self._has_flag(UserFlags.staff)
@property
def hypesquad(self):
return self._has_flag(UserFlags.hypesquad)
@property
def partner(self):
return self._has_flag(UserFlags.partner)
@property
def bug_hunter(self):
return self._has_flag(UserFlags.bug_hunter)
@property
def early_supporter(self):
return self._has_flag(UserFlags.early_supporter)
@property
def hypesquad(self):
return self._has_flag(UserFlags.hypesquad)
@property
def hypesquad_houses(self):
flags = (UserFlags.hypesquad_bravery, UserFlags.hypesquad_brilliance, UserFlags.hypesquad_balance)

View File

@ -617,6 +617,12 @@ Profile
.. attribute:: partner
A boolean indicating if the user is a Discord Partner.
.. attribute:: bug_hunter
A boolean indicating if the user is a Bug Hunter.
.. attribute:: early_supporter
A boolean indicating if the user has had premium before 10 October, 2018.
.. attribute:: hypesquad
A boolean indicating if the user is in Discord HypeSquad.