|
|
@@ -3,41 +3,14 @@ button paginator for discord.py
|
|
|
|
|
|
|
|
|
|
|
|
a discord.ui.View that paginates mixed content (strings, embeds, files,
|
|
|
|
a discord.ui.View that paginates mixed content (strings, embeds, files,
|
|
|
|
attachments, or dicts of mixed content with custom buttons) behind
|
|
|
|
attachments, or dicts of mixed content with custom buttons) behind
|
|
|
|
previous / jump / next navigation, with an optional cache button.
|
|
|
|
previous / jump / next navigation, with an optional cache button. config-free;
|
|
|
|
|
|
|
|
everything is passed at construction. see README for page-type and button-config
|
|
|
|
|
|
|
|
details.
|
|
|
|
|
|
|
|
|
|
|
|
from dpy_paginator import DPYPaginator # or ButtonPaginator, an alias
|
|
|
|
file pages get a fresh discord.File rebuilt from the same source on every render,
|
|
|
|
|
|
|
|
since discord.py closes a File's handle after each send/edit. get_page_kwargs
|
|
|
|
pages = [discord.Embed(title=f"Page {i}") for i in range(5)]
|
|
|
|
builds each page's kwargs/buttons in local state and only publishes once fully
|
|
|
|
await DPYPaginator(pages, author_id=ctx.author.id).start(ctx)
|
|
|
|
assembled, so concurrent interactions never interleave into a shared render.
|
|
|
|
|
|
|
|
|
|
|
|
emojis: navigation uses plain unicode by default (no setup). pass emojis= to
|
|
|
|
|
|
|
|
override with custom application/guild emojis the bot can use:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DPYPaginator(pages, emojis={
|
|
|
|
|
|
|
|
"previous": "<:icon_back:123...>",
|
|
|
|
|
|
|
|
"next": "<:icon_next:123...>",
|
|
|
|
|
|
|
|
"cache": "<:icon_cache:123...>",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
page types: a page may be a str, a discord.Embed, a discord.File/Attachment,
|
|
|
|
|
|
|
|
a sequence of those, or a dict. a dict page can carry 'content'/'embed(s)'/
|
|
|
|
|
|
|
|
'file(s)' plus a 'buttons' list of custom button configs (see README). both
|
|
|
|
|
|
|
|
the singular 'file' and plural 'files' dict keys accept a discord.Attachment
|
|
|
|
|
|
|
|
and convert it via to_file() — neither key requires the caller to convert
|
|
|
|
|
|
|
|
first.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
file pages are re-rendered safely: discord.py closes a discord.File's
|
|
|
|
|
|
|
|
underlying handle after every send/edit, so the paginator never resends a
|
|
|
|
|
|
|
|
consumer-supplied File object directly — it rebuilds a fresh discord.File
|
|
|
|
|
|
|
|
from the same source (path or buffer) on every render, including the first.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
concurrency: get_page_kwargs builds each page's kwargs/buttons in local
|
|
|
|
|
|
|
|
state and only publishes them once the whole page (including any awaited
|
|
|
|
|
|
|
|
format_page or Attachment.to_file() conversions) is fully assembled, so two
|
|
|
|
|
|
|
|
near-simultaneous interactions (e.g. rapid button clicks) never interleave
|
|
|
|
|
|
|
|
into a merged or shared render.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config-free: no host config import; everything is passed at construction.
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
from __future__ import annotations
|
|
|
@@ -140,11 +113,7 @@ class JumpToPageModal(discord.ui.Modal, title="Jump to Page"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
"""button-navigated paginator supporting mixed page content and custom buttons
|
|
|
|
"""button-navigated paginator supporting mixed page content and custom buttons"""
|
|
|
|
|
|
|
|
|
|
|
|
also importable as `ButtonPaginator` (a back-compat alias defined below); both
|
|
|
|
|
|
|
|
names refer to this same class.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
message: Optional[Union[discord.Message, discord.WebhookMessage]] = None
|
|
|
|
message: Optional[Union[discord.Message, discord.WebhookMessage]] = None
|
|
|
|
|
|
|
|
|
|
|
@@ -183,8 +152,6 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
if not pages:
|
|
|
|
if not pages:
|
|
|
|
raise ValueError("DPYPaginator requires at least one page")
|
|
|
|
raise ValueError("DPYPaginator requires at least one page")
|
|
|
|
if per_page < 1:
|
|
|
|
if per_page < 1:
|
|
|
|
# per_page <= 0 would ZeroDivisionError (==0) or yield a negative max_pages
|
|
|
|
|
|
|
|
# (<0) at the divmod below; fail loud like the other construction guards
|
|
|
|
|
|
|
|
raise ValueError("per_page must be >= 1")
|
|
|
|
raise ValueError("per_page must be >= 1")
|
|
|
|
self.author_id: Optional[int] = author_id
|
|
|
|
self.author_id: Optional[int] = author_id
|
|
|
|
self.delete_message_after: bool = delete_message_after
|
|
|
|
self.delete_message_after: bool = delete_message_after
|
|
|
@@ -201,8 +168,6 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
|
|
|
|
|
|
|
|
total_pages, left_over = divmod(len(self.pages), self.per_page)
|
|
|
|
total_pages, left_over = divmod(len(self.pages), self.per_page)
|
|
|
|
self.max_pages: int = total_pages + (1 if left_over else 0)
|
|
|
|
self.max_pages: int = total_pages + (1 if left_over else 0)
|
|
|
|
# a falsy cache (None or []) disables the cache button (see the render path's
|
|
|
|
|
|
|
|
# `if self.cache:`); only a non-empty cache must have one entry per page
|
|
|
|
|
|
|
|
if cache and len(cache) < self.max_pages:
|
|
|
|
if cache and len(cache) < self.max_pages:
|
|
|
|
raise ValueError(
|
|
|
|
raise ValueError(
|
|
|
|
f"cache has {len(cache)} entries but there are {self.max_pages} pages; "
|
|
|
|
f"cache has {len(cache)} entries but there are {self.max_pages} pages; "
|
|
|
@@ -252,10 +217,9 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
) -> Dict[str, Any]:
|
|
|
|
) -> Dict[str, Any]:
|
|
|
|
"""build the send/edit kwargs for a page, extracting any custom buttons
|
|
|
|
"""build the send/edit kwargs for a page, extracting any custom buttons
|
|
|
|
|
|
|
|
|
|
|
|
builds into local state and publishes self.current_page_buttons only once
|
|
|
|
concurrency-safe: publishes self.current_page_buttons only once the page
|
|
|
|
the whole page (including any nested recursion and awaited conversions) is
|
|
|
|
is fully assembled, so an interleaved concurrent call never observes a
|
|
|
|
fully assembled, so an interleaved concurrent call never observes or
|
|
|
|
partially-built page.
|
|
|
|
mutates a partially-built page (see _get_page_kwargs).
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
kwargs, buttons = await self._get_page_kwargs(page, skip_formatting=skip_formatting)
|
|
|
|
kwargs, buttons = await self._get_page_kwargs(page, skip_formatting=skip_formatting)
|
|
|
|
self.current_page_buttons = buttons
|
|
|
|
self.current_page_buttons = buttons
|
|
|
@@ -268,12 +232,9 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
kwargs: Optional[Dict[str, Any]] = None,
|
|
|
|
kwargs: Optional[Dict[str, Any]] = None,
|
|
|
|
buttons: Optional[List[discord.ui.Button]] = None,
|
|
|
|
buttons: Optional[List[discord.ui.Button]] = None,
|
|
|
|
) -> Tuple[Dict[str, Any], List[discord.ui.Button]]:
|
|
|
|
) -> Tuple[Dict[str, Any], List[discord.ui.Button]]:
|
|
|
|
"""recursive worker: build kwargs/buttons in locals, threaded through recursion
|
|
|
|
"""recursive worker: builds kwargs/buttons in locals, never touching instance
|
|
|
|
|
|
|
|
attributes mid-build, so concurrent calls hold their own state until
|
|
|
|
instance attributes are never read or written mid-build, so concurrent
|
|
|
|
get_page_kwargs publishes the result"""
|
|
|
|
interactions each hold their own kwargs/buttons until get_page_kwargs
|
|
|
|
|
|
|
|
publishes the finished result.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
if kwargs is None:
|
|
|
|
if kwargs is None:
|
|
|
|
kwargs = self._fresh_kwargs()
|
|
|
|
kwargs = self._fresh_kwargs()
|
|
|
|
if buttons is None:
|
|
|
|
if buttons is None:
|
|
|
@@ -314,13 +275,15 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
value = await value.to_file()
|
|
|
|
value = await value.to_file()
|
|
|
|
kwargs["files"].append(value)
|
|
|
|
kwargs["files"].append(value)
|
|
|
|
elif key in ("embed", "embeds", "file", "files"):
|
|
|
|
elif key in ("embed", "embeds", "file", "files"):
|
|
|
|
# a wrong-typed embed/file would otherwise fall to the catch-all and
|
|
|
|
# wrong-typed value would collide with base embeds=[]/files=[]; reject early
|
|
|
|
# be forwarded verbatim, colliding with the base embeds=[]/files=[]
|
|
|
|
|
|
|
|
# and raising an opaque TypeError from inside discord.py — reject it
|
|
|
|
|
|
|
|
# here with a clear, paginator-side message
|
|
|
|
|
|
|
|
raise ValueError(
|
|
|
|
raise ValueError(
|
|
|
|
f"page key {key!r} has unexpected type {type(value).__name__}"
|
|
|
|
f"page key {key!r} has unexpected type {type(value).__name__}"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
elif key == "content":
|
|
|
|
|
|
|
|
if value is None:
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
existing = kwargs["content"]
|
|
|
|
|
|
|
|
kwargs["content"] = value if existing is None else f"{existing}\n{value}"
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
kwargs[key] = value
|
|
|
|
kwargs[key] = value
|
|
|
|
elif isinstance(formatted_page, str):
|
|
|
|
elif isinstance(formatted_page, str):
|
|
|
@@ -345,11 +308,9 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
def update_buttons(self, nav: bool = True) -> None:
|
|
|
|
def update_buttons(self, nav: bool = True) -> None:
|
|
|
|
"""rebuild the action row for the current page state
|
|
|
|
"""rebuild the action row for the current page state
|
|
|
|
|
|
|
|
|
|
|
|
nav=False rebuilds with only the page's custom buttons and no navigation
|
|
|
|
nav=False (or a single page, max_pages < 2) drops prev/jump/next but keeps
|
|
|
|
items (prev/jump/cache/next) — a single-page result that still carries
|
|
|
|
custom and cache buttons; the cache button renders independent of nav
|
|
|
|
custom buttons keeps them (and their live callbacks) without a nav row.
|
|
|
|
whenever self.cache is truthy.
|
|
|
|
the nav row is also suppressed for a single page (max_pages < 2) even when
|
|
|
|
|
|
|
|
nav is left at its default, so a re-render (update_page) never resurrects it.
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
self.clear_items()
|
|
|
|
self.clear_items()
|
|
|
|
|
|
|
|
|
|
|
@@ -366,11 +327,11 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
for button in self.current_page_buttons:
|
|
|
|
for button in self.current_page_buttons:
|
|
|
|
self.add_item(button)
|
|
|
|
self.add_item(button)
|
|
|
|
|
|
|
|
|
|
|
|
if nav:
|
|
|
|
if self.cache:
|
|
|
|
if self.cache:
|
|
|
|
self.cache_button.emoji = self.emojis["cache"]
|
|
|
|
self.cache_button.emoji = self.emojis["cache"]
|
|
|
|
self.add_item(self.cache_button)
|
|
|
|
self.add_item(self.cache_button)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if nav:
|
|
|
|
self.next_page.emoji = self.emojis["next"]
|
|
|
|
self.next_page.emoji = self.emojis["next"]
|
|
|
|
self.next_page.disabled = self.current_page >= self.max_pages - 1
|
|
|
|
self.next_page.disabled = self.current_page >= self.max_pages - 1
|
|
|
|
self.add_item(self.next_page)
|
|
|
|
self.add_item(self.next_page)
|
|
|
@@ -405,13 +366,11 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
async def cache_button(self, interaction: discord.Interaction, _: discord.ui.Button) -> None:
|
|
|
|
async def cache_button(self, interaction: discord.Interaction, _: discord.ui.Button) -> None:
|
|
|
|
"""prime the viewer's client mention cache, then refresh the current view
|
|
|
|
"""prime the viewer's client mention cache, then refresh the current view
|
|
|
|
|
|
|
|
|
|
|
|
discord clients render <@id> as a raw id until the user object is cached.
|
|
|
|
a mention-cache primer, not a data cache: posts the page's mentions in a
|
|
|
|
this posts the page's mentions in a throwaway ephemeral message so the client
|
|
|
|
throwaway ephemeral message (allowed_mentions=none(), tags render but no
|
|
|
|
resolves them, waits cache_sleep seconds, then re-edits the message so the
|
|
|
|
ping fires) to force client resolution, waits cache_sleep seconds, then
|
|
|
|
mentions display as names — no manual page-flip needed.
|
|
|
|
re-edits so mentions display as names. expected discord failures (deleted
|
|
|
|
|
|
|
|
message, no permission) are swallowed, like on_timeout.
|
|
|
|
allowed_mentions is none() on purpose: the <@id> tags still render (which is
|
|
|
|
|
|
|
|
what primes the cache) but no actual ping/notification fires.
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
await interaction.response.send_message(
|
|
|
|
await interaction.response.send_message(
|
|
|
|
content=self.cache[self.current_page],
|
|
|
|
content=self.cache[self.current_page],
|
|
|
@@ -422,7 +381,14 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
await asyncio.sleep(self.cache_sleep)
|
|
|
|
await asyncio.sleep(self.cache_sleep)
|
|
|
|
kwargs = await self._build_render_kwargs()
|
|
|
|
kwargs = await self._build_render_kwargs()
|
|
|
|
if self.message:
|
|
|
|
if self.message:
|
|
|
|
await self.message.edit(**kwargs)
|
|
|
|
try:
|
|
|
|
|
|
|
|
await self.message.edit(**kwargs)
|
|
|
|
|
|
|
|
except (discord.NotFound, discord.Forbidden):
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
except discord.HTTPException as exc:
|
|
|
|
|
|
|
|
# swallowed best-effort cleanup that recovers - no traceback (exc_info belongs
|
|
|
|
|
|
|
|
# on terminal/unhandled paths); the reason is folded in for diagnosis.
|
|
|
|
|
|
|
|
log.warning("paginator cache_button: failed to refresh message: %s", exc)
|
|
|
|
|
|
|
|
|
|
|
|
@discord.ui.button(style=discord.ButtonStyle.blurple)
|
|
|
|
@discord.ui.button(style=discord.ButtonStyle.blurple)
|
|
|
|
async def next_page(self, interaction: Interaction, _: discord.ui.Button[Self]) -> None:
|
|
|
|
async def next_page(self, interaction: Interaction, _: discord.ui.Button[Self]) -> None:
|
|
|
@@ -433,12 +399,8 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
def reset_files(self, page_kwargs: Dict[str, Any]) -> None:
|
|
|
|
def reset_files(self, page_kwargs: Dict[str, Any]) -> None:
|
|
|
|
"""swap in a fresh discord.File per render so a re-render never reuses a sent one
|
|
|
|
"""swap in a fresh discord.File per render so a re-render never reuses a sent one
|
|
|
|
|
|
|
|
|
|
|
|
discord.py closes a File's underlying fp after every send/edit
|
|
|
|
discord.py closes a File's fp after every send/edit; file.reset() raises
|
|
|
|
(MultipartParameters.__exit__ -> file.close()), so the SAME File object is
|
|
|
|
once a path-backed File is actually closed, so rebuild from source instead.
|
|
|
|
single-use. Rather than call file.reset() (which raises 'seek of closed
|
|
|
|
|
|
|
|
file' the moment a path-backed File has actually been closed), rebuild a
|
|
|
|
|
|
|
|
new discord.File from the same source for every entry — cheap, and safe
|
|
|
|
|
|
|
|
whether or not the previous render already consumed it.
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
files = page_kwargs.get("files")
|
|
|
|
files = page_kwargs.get("files")
|
|
|
|
if not files:
|
|
|
|
if not files:
|
|
|
@@ -447,16 +409,9 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@staticmethod
|
|
|
|
def _fresh_file(file: discord.File) -> discord.File:
|
|
|
|
def _fresh_file(file: discord.File) -> discord.File:
|
|
|
|
"""build a new discord.File from an existing one's source
|
|
|
|
"""build a new discord.File from an existing one's source: a path-backed
|
|
|
|
|
|
|
|
File (_owner=True) reopens from fp.name; a buffer-backed File (_owner=False)
|
|
|
|
a path-backed File (fp opened internally, _owner=True) is reopened from
|
|
|
|
is never closed by discord.py, so its buffer is rewound and reused"""
|
|
|
|
fp.name, the path it was constructed with — fp.name stays readable even
|
|
|
|
|
|
|
|
after discord.py has closed the handle, so this works whether or not the
|
|
|
|
|
|
|
|
previous render already consumed it. a buffer-backed File (caller passed
|
|
|
|
|
|
|
|
an io object, _owner=False) is never closed by discord.py (see
|
|
|
|
|
|
|
|
File.close(), which only closes _owner=True files) so its buffer is
|
|
|
|
|
|
|
|
rewound to its starting position and reused directly.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
if file._owner:
|
|
|
|
if file._owner:
|
|
|
|
source = file.fp.name
|
|
|
|
source = file.fp.name
|
|
|
|
else:
|
|
|
|
else:
|
|
|
@@ -474,27 +429,25 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
) -> Optional[Union[discord.Message, discord.WebhookMessage]]:
|
|
|
|
) -> Optional[Union[discord.Message, discord.WebhookMessage]]:
|
|
|
|
"""send the first page; obj is an Interaction or a Messageable"""
|
|
|
|
"""send the first page; obj is an Interaction or a Messageable"""
|
|
|
|
kwargs = await self.get_page_kwargs(self.get_page(self.current_page))
|
|
|
|
kwargs = await self.get_page_kwargs(self.get_page(self.current_page))
|
|
|
|
# update_buttons already suppresses the nav row for a single page (max_pages < 2),
|
|
|
|
# single page: update_buttons drops nav but keeps custom/cache buttons live;
|
|
|
|
# keeping only the page's custom buttons — so a single page with custom buttons
|
|
|
|
# only drop the view entirely below if neither is present
|
|
|
|
# renders them (live callbacks) with no nav row
|
|
|
|
|
|
|
|
self.update_buttons()
|
|
|
|
self.update_buttons()
|
|
|
|
|
|
|
|
|
|
|
|
if self.max_pages < 2 and not self.current_page_buttons:
|
|
|
|
if self.max_pages < 2 and not self.current_page_buttons and not self.cache:
|
|
|
|
# single page, no custom buttons: no interactive row at all, drop the view
|
|
|
|
|
|
|
|
self.stop()
|
|
|
|
self.stop()
|
|
|
|
kwargs.pop("view", None)
|
|
|
|
kwargs.pop("view", None)
|
|
|
|
|
|
|
|
|
|
|
|
self.reset_files(kwargs)
|
|
|
|
self.reset_files(kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
if isinstance(obj, discord.Interaction):
|
|
|
|
if isinstance(obj, discord.Interaction):
|
|
|
|
# ephemeral is an interaction-response concept; only these paths accept it
|
|
|
|
# ephemeral only applies to interaction-response paths
|
|
|
|
if obj.response.is_done():
|
|
|
|
if obj.response.is_done():
|
|
|
|
self.message = await obj.followup.send(**kwargs, ephemeral=self.ephemeral, **send_kwargs)
|
|
|
|
self.message = await obj.followup.send(**kwargs, ephemeral=self.ephemeral, **send_kwargs)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
await obj.response.send_message(**kwargs, ephemeral=self.ephemeral, **send_kwargs)
|
|
|
|
await obj.response.send_message(**kwargs, ephemeral=self.ephemeral, **send_kwargs)
|
|
|
|
self.message = await obj.original_response()
|
|
|
|
self.message = await obj.original_response()
|
|
|
|
elif isinstance(obj, Messageable):
|
|
|
|
elif isinstance(obj, Messageable):
|
|
|
|
# Messageable.send (a raw channel) has no ephemeral param — never pass it
|
|
|
|
# a raw channel's send has no ephemeral param; never pass it
|
|
|
|
self.message = await obj.send(**kwargs, **send_kwargs)
|
|
|
|
self.message = await obj.send(**kwargs, **send_kwargs)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
raise TypeError(f"expected Interaction or Messageable, got {obj.__class__.__name__}")
|
|
|
|
raise TypeError(f"expected Interaction or Messageable, got {obj.__class__.__name__}")
|
|
|
@@ -504,8 +457,8 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
async def on_timeout(self) -> None:
|
|
|
|
async def on_timeout(self) -> None:
|
|
|
|
"""delete the message on timeout when delete_message_after is set
|
|
|
|
"""delete the message on timeout when delete_message_after is set
|
|
|
|
|
|
|
|
|
|
|
|
only the expected discord failures (already deleted, or no permission) are
|
|
|
|
only expected discord failures (already deleted, no permission) are
|
|
|
|
swallowed; an unexpected error surfaces rather than being silently dropped.
|
|
|
|
swallowed; unexpected errors surface.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
if not self.delete_message_after or self.message is None:
|
|
|
|
if not self.delete_message_after or self.message is None:
|
|
|
|
return
|
|
|
|
return
|
|
|
@@ -513,10 +466,10 @@ class DPYPaginator(Generic[PageT_co], discord.ui.View):
|
|
|
|
await self.message.delete()
|
|
|
|
await self.message.delete()
|
|
|
|
except (discord.NotFound, discord.Forbidden):
|
|
|
|
except (discord.NotFound, discord.Forbidden):
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
except discord.HTTPException:
|
|
|
|
except discord.HTTPException as exc:
|
|
|
|
# on_timeout runs as a fire-and-forget task; a transient delete failure must
|
|
|
|
# best-effort cleanup task; log rather than raise into an unretrieved task. no
|
|
|
|
# not surface as an unretrieved-task traceback on a best-effort cleanup
|
|
|
|
# traceback (exc_info belongs on terminal/unhandled paths) - fold the reason in.
|
|
|
|
log.warning("paginator on_timeout: failed to delete message", exc_info=True)
|
|
|
|
log.warning("paginator on_timeout: failed to delete message: %s", exc)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# back-compat alias: the class was originally named ButtonPaginator; DPYPaginator is
|
|
|
|
# back-compat alias: the class was originally named ButtonPaginator; DPYPaginator is
|
|
|
|