Browse Source

Go live invite support.

pull/159/head
Luke 6 years ago
parent
commit
581e5e11d4
  1. 4
      disco/api/client.py
  2. 36
      disco/types/invite.py

4
disco/api/client.py

@ -584,8 +584,8 @@ class APIClient(LoggingClass):
}) })
return Channel.create(self.client, r.json()) return Channel.create(self.client, r.json())
def invites_get(self, invite): def invites_get(self, invite, with_counts=None):
r = self.http(Routes.INVITES_GET, dict(invite=invite)) r = self.http(Routes.INVITES_GET, dict(invite=invite), json=optional(with_counts=with_counts))
return Invite.create(self.client, r.json()) return Invite.create(self.client, r.json())
def invites_delete(self, invite, reason=None): def invites_delete(self, invite, reason=None):

36
disco/types/invite.py

@ -1,9 +1,13 @@
from disco.types.base import SlottedModel, Field, datetime from disco.types.base import SlottedModel, Field, datetime, enum
from disco.types.user import User from disco.types.user import User
from disco.types.guild import Guild from disco.types.guild import Guild
from disco.types.channel import Channel from disco.types.channel import Channel
class InviteTargetUserType(object):
STREAM = 1
class Invite(SlottedModel): class Invite(SlottedModel):
""" """
An invite object. An invite object.
@ -12,30 +16,42 @@ class Invite(SlottedModel):
---------- ----------
code : str code : str
The invite code. The invite code.
inviter : :class:`disco.types.user.User`
The user who created this invite.
guild : :class:`disco.types.guild.Guild` guild : :class:`disco.types.guild.Guild`
The guild this invite is for. The guild this invite is for.
channel : :class:`disco.types.channel.Channel` channel : :class:`disco.types.channel.Channel`
The channel this invite is for. The channel this invite is for.
max_age : int target_user : :class:`disco.types.user.User`
The time after this invite's creation at which it expires. The user this invite targets.
max_uses : int target_user_type : int
The maximum number of uses. The type of user target for this invite.
approximate_presence_count : int
The approximate count of online members.
approximate_member_count : int
The approximate count of total members.
inviter : :class:`disco.types.user.User`
The user who created this invite.
uses : int uses : int
The current number of times the invite was used. The current number of times the invite was used.
max_uses : int
The maximum number of uses.
max_age : int
The time after this invite's creation at which it expires.
temporary : bool temporary : bool
Whether this invite only grants temporary membership. Whether this invite only grants temporary membership.
created_at : datetime created_at : datetime
When this invite was created. When this invite was created.
""" """
code = Field(str) code = Field(str)
inviter = Field(User)
guild = Field(Guild) guild = Field(Guild)
channel = Field(Channel) channel = Field(Channel)
max_age = Field(int) target_user = Field(User)
max_uses = Field(int) target_user_type = Field(enum(InviteTargetUserType))
approximate_presence_count = Field(int)
approximate_member_count = Field(int)
inviter = Field(User)
uses = Field(int) uses = Field(int)
max_uses = Field(int)
max_age = Field(int)
temporary = Field(bool) temporary = Field(bool)
created_at = Field(datetime) created_at = Field(datetime)

Loading…
Cancel
Save