Skip to content

Commit 3f32be1

Browse files
patches and fixes and modernization (#63)
1 parent 166be83 commit 3f32be1

31 files changed

+502
-680
lines changed

config.template.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ owner_ids = [123, 456, 789] # user or role ids, optional
44
[TOKENS]
55
bot = ''
66
idevision = '' # optional key
7-
mystbin = '' # optional key
8-
pythonista = '' # optional key
7+
pythonista = '' # optional key
98

109
[DATABASE]
1110
dsn = 'postgres://pythonistabot:pythonistabot@database:5432/pythonistabot' # assumed default
@@ -19,9 +18,9 @@ domains = ["pastebin.com", "hastebin.com"]
1918
# 20 = INFO
2019
# 10 = DEBUG
2120
[LOGGING]
22-
webhook_url = "" # optional
21+
webhook_url = "" # optional
2322
webhook_avatar_url = "" # optional
24-
runner = 123456789 # optional: sets the webhook avatar url (will be overridden by the webhook_avatar_url attribute)
23+
runner = 123456789 # optional: sets the webhook avatar url (will be overridden by the webhook_avatar_url attribute)
2524
level = 20
2625

2726
[SUGGESTIONS] # optional

constants/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from .constants import *
2425

2526
GUILD_ID: int = 490948346773635102

constants/_meta.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,22 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
from typing import TYPE_CHECKING, Any, NoReturn, cast
2627

2728
import toml
2829

2930
if TYPE_CHECKING:
30-
from typing_extensions import Self
31-
3231
from types_.config import Database, Logging, Tokens
3332

3433

3534
_config = toml.load("config.toml")
3635

3736

3837
class ConstantsMeta(type):
39-
def __new__(mcs, name: str, bases: tuple[type, ...], attrs: dict[str, Any]) -> Self:
38+
def __new__(mcs, name: str, bases: tuple[type, ...], attrs: dict[str, Any]) -> type:
4039
if name == "CONSTANTS":
4140
return super().__new__(mcs, name, bases, attrs)
4241

constants/constants.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from ._meta import CONSTANTS
2425

2526
__all__ = (

core/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
__version__ = "0.0.1a"
2425

2526
from . import utils as utils

core/bot.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import datetime
@@ -106,7 +107,7 @@ async def on_error(self, event_name: str, /, *args: Any, **kwargs: Any) -> None:
106107
traceback_text = "".join(traceback.format_exception(exc_type, exception, traceback_))
107108

108109
embed.description = f"```py\n{traceback_text}\n```"
109-
embed.timestamp = datetime.datetime.now(datetime.timezone.utc)
110+
embed.timestamp = datetime.datetime.now(datetime.UTC)
110111

111112
args_str = ["```py"]
112113
for index, arg in enumerate(args):

core/checks.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
from typing import TYPE_CHECKING, Any

core/converters.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from collections import deque
2425
from typing import NamedTuple
2526

core/core.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
from typing import TYPE_CHECKING

core/errors.py

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
SOFTWARE.
2020
"""
21+
2122
from discord.ext import commands
2223

2324
__all__ = ("InvalidEval",)

core/utils/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from .formatters import *
2425
from .logging import LogHandler as LogHandler

core/utils/formatters.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
import random
2425

2526
from discord import Colour

core/utils/logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import core
1111

1212
if TYPE_CHECKING:
13-
from typing_extensions import Self
13+
from typing import Self
1414

1515
from core import Bot
1616

core/utils/paginator.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import asyncio
@@ -31,8 +32,9 @@
3132
from discord.utils import MISSING
3233

3334
if TYPE_CHECKING:
35+
from typing import Self
36+
3437
from discord.abc import MessageableChannel
35-
from typing_extensions import Self
3638

3739
from core import Bot, Context
3840

@@ -208,7 +210,7 @@ def message_check(m: discord.Message) -> bool:
208210

209211
try:
210212
msg = await self.bot.wait_for("message", check=message_check, timeout=30.0)
211-
except asyncio.TimeoutError:
213+
except TimeoutError:
212214
to_delete.append(await self.channel.send("Took too long."))
213215
await asyncio.sleep(5)
214216
else:

launcher.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
import asyncio
2425

2526
import aiohttp
@@ -32,18 +33,21 @@
3233

3334

3435
async def main() -> None:
35-
async with core.Bot() as bot, aiohttp.ClientSession() as session, asyncpg.create_pool(
36-
dsn=core.CONFIG["DATABASE"]["dsn"]
37-
) as pool, LogHandler(bot=bot) as handler:
36+
async with (
37+
core.Bot() as bot,
38+
aiohttp.ClientSession() as session,
39+
asyncpg.create_pool(dsn=core.CONFIG["DATABASE"]["dsn"]) as pool,
40+
LogHandler(bot=bot) as handler,
41+
):
3842
bot.logging_queue = asyncio.Queue()
3943
bot.strip_after_prefix = True
4044
bot.case_insensitive = True
4145
bot.session = session
4246
bot.pool = pool
4347
bot.log_handler = handler
4448

45-
_mystbin_token = core.CONFIG["TOKENS"].get("mystbin")
46-
bot.mb_client = mystbin.Client(token=_mystbin_token, session=session)
49+
_mystbin_token = core.CONFIG["TOKENS"]
50+
bot.mb_client = mystbin.Client(session=session)
4751

4852
await bot.load_extension("jishaku")
4953
for extension in EXTENSIONS:

modules/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import pathlib
22
from pkgutil import ModuleInfo, iter_modules
33

4+
assert __package__ # this exists here
5+
46
_ext: list[ModuleInfo] = []
57
_ext.extend(
68
[

modules/admin.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
import logging
2425

2526
from discord.ext import commands

modules/api.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import asyncio

modules/eval.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import ast
2627
import logging
2728
import textwrap
2829
import traceback
2930

31+
import mystbin
3032
from discord.ext import commands
3133

3234
import core
@@ -104,7 +106,7 @@ async def eval(
104106
await ctx.message.add_reaction("\U00002705")
105107

106108
if len(output) > 1000:
107-
codeblock = await self.bot.mb_client.create_paste(content=output, filename="eval.py")
109+
codeblock = await self.bot.mb_client.create_paste(files=[mystbin.File(content=output, filename="eval.py")])
108110

109111
elif output:
110112
codeblock = formatters.to_codeblock(output, escape_md=False)

modules/github.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

25-
import asyncio
2626
import re
2727
from enum import Enum
2828

@@ -165,9 +165,8 @@ async def format_highlight_block(self, url: str, line_adjustment: int = 10) -> d
165165

166166
github_dict = {
167167
"path": file_path,
168-
"min": (
169-
_min_boundary if _min_boundary > 0 else highlighted_line - 1
170-
) + 1, # Do not display negative numbers if <0
168+
"min": (_min_boundary if _min_boundary > 0 else highlighted_line - 1)
169+
+ 1, # Do not display negative numbers if <0
171170
"max": _max_boundary + 1,
172171
"msg": msg,
173172
}
@@ -256,7 +255,7 @@ def check(reaction: discord.Reaction, user: discord.User) -> bool:
256255
msg: str = f"Showing lines `{_min}-{_max}` in: `{path}`\n{code_fmt}"
257256
await message.channel.send(msg, suppress_embeds=True)
258257

259-
except asyncio.TimeoutError:
258+
except TimeoutError:
260259
return
261260

262261

modules/help.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
from typing import TYPE_CHECKING

modules/info.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
from typing import TypeVar

modules/logging.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import datetime
@@ -61,7 +62,7 @@ async def logging_loop(self) -> None:
6162
attributes = {"INFO": "\U00002139\U0000fe0f", "WARNING": "\U000026a0\U0000fe0f"}
6263

6364
emoji = attributes.get(to_log.levelname, "\N{CROSS MARK}")
64-
dt = datetime.datetime.utcfromtimestamp(to_log.created)
65+
dt = datetime.datetime.fromtimestamp(to_log.created, tz=datetime.UTC)
6566

6667
message = textwrap.shorten(f"{emoji} {format_dt(dt)}\n{to_log.message}", width=1990)
6768

modules/manuals.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import discord

modules/moderation.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
from __future__ import annotations
2425

2526
import asyncio
@@ -234,11 +235,9 @@ async def pull_badbin_content(self, site: str, slug: str, *, fail_hard: bool = T
234235

235236
return (await f.read()).decode()
236237

237-
async def post_mystbin_content(self, contents: list[tuple[str, str]]) -> tuple[str, str | None]:
238-
response = await self.bot.mb_client.create_paste(
239-
files=[mystbin.File(filename=a, content=b, attachment_url=None) for a, b in contents]
240-
)
241-
return response.id, response.notice or None
238+
async def post_mystbin_content(self, contents: list[tuple[str, str]]) -> str:
239+
response = await self.bot.mb_client.create_paste(files=[mystbin.File(filename=a, content=b) for a, b in contents])
240+
return response.id
242241

243242
@commands.Cog.listener("on_message")
244243
async def find_badbins(self, message: discord.Message) -> None:

modules/stars.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
import core
2425

2526

modules/suggestions.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
import logging
2525
from datetime import datetime
26-
from typing import Union
2726

2827
import discord
2928
from discord import ui
@@ -43,7 +42,7 @@ class TypeSelect(ui.Select["TypeView"]):
4342
def __init__(
4443
self,
4544
*,
46-
original_author: Union[discord.Member, discord.User],
45+
original_author: discord.Member | discord.User,
4746
suggestion: str,
4847
webhook: discord.Webhook,
4948
) -> None:
@@ -88,9 +87,7 @@ async def callback(self, interaction: discord.Interaction) -> None:
8887
class TypeView(ui.View):
8988
message: discord.Message | discord.WebhookMessage
9089

91-
def __init__(
92-
self, *, original_author: Union[discord.Member, discord.User], suggestion: str, webhook: discord.Webhook
93-
) -> None:
90+
def __init__(self, *, original_author: discord.Member | discord.User, suggestion: str, webhook: discord.Webhook) -> None:
9491
super().__init__(timeout=180)
9592
self.original_author = original_author
9693
self.add_item(TypeSelect(original_author=original_author, suggestion=suggestion, webhook=webhook))

modules/tags.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
"""
23+
2324
import core
2425

2526

0 commit comments

Comments
 (0)