|
@ -231,7 +231,7 @@ class Widget: |
|
|
channels: List[:class:`WidgetChannel`] |
|
|
channels: List[:class:`WidgetChannel`] |
|
|
The accessible voice channels in the guild. |
|
|
The accessible voice channels in the guild. |
|
|
members: List[:class:`Member`] |
|
|
members: List[:class:`Member`] |
|
|
The online members in the server. Offline members |
|
|
The online members in the guild. Offline members |
|
|
do not appear in the widget. |
|
|
do not appear in the widget. |
|
|
|
|
|
|
|
|
.. note:: |
|
|
.. note:: |
|
@ -240,10 +240,15 @@ class Widget: |
|
|
the users will be "anonymized" with linear IDs and discriminator |
|
|
the users will be "anonymized" with linear IDs and discriminator |
|
|
information being incorrect. Likewise, the number of members |
|
|
information being incorrect. Likewise, the number of members |
|
|
retrieved is capped. |
|
|
retrieved is capped. |
|
|
|
|
|
presence_count: :class:`int` |
|
|
|
|
|
The approximate number of online members in the guild. |
|
|
|
|
|
Offline members are not included in this count. |
|
|
|
|
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
|
|
|
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
__slots__ = ('_state', 'channels', '_invite', 'id', 'members', 'name') |
|
|
__slots__ = ('_state', 'channels', '_invite', 'id', 'members', 'name', 'presence_count') |
|
|
|
|
|
|
|
|
def __init__(self, *, state: ConnectionState, data: WidgetPayload) -> None: |
|
|
def __init__(self, *, state: ConnectionState, data: WidgetPayload) -> None: |
|
|
self._state = state |
|
|
self._state = state |
|
@ -268,6 +273,8 @@ class Widget: |
|
|
|
|
|
|
|
|
self.members.append(WidgetMember(state=self._state, data=member, connected_channel=connected_channel)) |
|
|
self.members.append(WidgetMember(state=self._state, data=member, connected_channel=connected_channel)) |
|
|
|
|
|
|
|
|
|
|
|
self.presence_count: int = data['presence_count'] |
|
|
|
|
|
|
|
|
def __str__(self) -> str: |
|
|
def __str__(self) -> str: |
|
|
return self.json_url |
|
|
return self.json_url |
|
|
|
|
|
|
|
@ -290,11 +297,11 @@ class Widget: |
|
|
return f"https://discord.com/api/guilds/{self.id}/widget.json" |
|
|
return f"https://discord.com/api/guilds/{self.id}/widget.json" |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def invite_url(self) -> str: |
|
|
def invite_url(self) -> Optional[str]: |
|
|
"""Optional[:class:`str`]: The invite URL for the guild, if available.""" |
|
|
"""Optional[:class:`str`]: The invite URL for the guild, if available.""" |
|
|
return self._invite |
|
|
return self._invite |
|
|
|
|
|
|
|
|
async def fetch_invite(self, *, with_counts: bool = True) -> Invite: |
|
|
async def fetch_invite(self, *, with_counts: bool = True) -> Optional[Invite]: |
|
|
"""|coro| |
|
|
"""|coro| |
|
|
|
|
|
|
|
|
Retrieves an :class:`Invite` from the widget's invite URL. |
|
|
Retrieves an :class:`Invite` from the widget's invite URL. |
|
@ -310,9 +317,11 @@ class Widget: |
|
|
|
|
|
|
|
|
Returns |
|
|
Returns |
|
|
-------- |
|
|
-------- |
|
|
:class:`Invite` |
|
|
Optional[:class:`Invite`] |
|
|
The invite from the widget's invite URL. |
|
|
The invite from the widget's invite URL, if available. |
|
|
""" |
|
|
""" |
|
|
resolved = resolve_invite(self._invite) |
|
|
if self._invite: |
|
|
data = await self._state.http.get_invite(resolved.code, with_counts=with_counts) |
|
|
resolved = resolve_invite(self._invite) |
|
|
return Invite.from_incomplete(state=self._state, data=data) |
|
|
data = await self._state.http.get_invite(resolved.code, with_counts=with_counts) |
|
|
|
|
|
return Invite.from_incomplete(state=self._state, data=data) |
|
|
|
|
|
return None |
|
|