pixivcord/src/main.py

134 lines
4.2 KiB
Python
Raw Normal View History

2023-10-30 14:58:04 +01:00
import os
from shlex import join
from tempfile import TemporaryDirectory
2023-10-31 11:53:52 +01:00
2023-10-30 14:58:04 +01:00
import discord
2023-10-31 11:53:52 +01:00
import discord_tools.message
import discord_tools.pixiv_link_extractor
import pixiv.pixiv_api as pixiv_api
2023-10-30 14:58:04 +01:00
REFRESH_TOKEN = os.getenv("PIXIV_REFRESH_TOKEN")
if REFRESH_TOKEN is None:
print("Pixiv refresh token is missing, please set PIXIV_REFRESH_TOKEN")
exit(1)
DISCORD_TOKEN = os.getenv("DISCORD_TOKEN")
if DISCORD_TOKEN is None:
print("Discord token is missing, please set DISCORD_TOKEN")
exit(1)
intents = discord.Intents.default()
intents.message_content = True
2023-10-31 15:31:07 +01:00
class MyClient(discord.Client):
def __init__(self, *, intents: discord.Intents):
super().__init__(intents=intents)
self.tree = discord.app_commands.CommandTree(self)
async def setup_hook(self):
await self.tree.sync()
client = MyClient(intents=intents)
2023-10-30 14:58:04 +01:00
@client.event
async def on_ready():
print(f"We have logged in as {client.user}")
2023-10-31 15:31:07 +01:00
@client.tree.command()
@discord.app_commands.describe(
url="Pixiv art url",
)
async def pixivprev(interaction: discord.Interaction, url: str):
"""Create pixiv preview"""
(result, match) = discord_tools.pixiv_link_extractor.check_pixiv_url(url)
if result and match is not None:
await interaction.response.defer()
with TemporaryDirectory() as tmp_dir:
title = pixiv_api.dowload_pixiv_images(
int(match.group("id")), tmp_dir, REFRESH_TOKEN
)
2023-11-01 21:33:13 +01:00
if title is None:
await interaction.response.send_message(
"Fail to extract pixiv image", ephemeral=True
)
return
2023-10-31 15:31:07 +01:00
files = os.listdir(tmp_dir)
files.sort()
await discord_tools.message.send_command_reply(
interaction,
files,
tmp_dir,
True,
title=title,
url=url,
author=interaction.user,
)
else:
await interaction.response.send_message("Invalid pixiv url", ephemeral=True)
@client.tree.context_menu(name="Create pixiv preview")
async def pixiv_preview(interaction: discord.Interaction, message: discord.Message):
(result, muted, match) = discord_tools.pixiv_link_extractor.should_process(message)
if result and match is not None:
await interaction.response.defer()
with TemporaryDirectory() as tmp_dir:
title = pixiv_api.dowload_pixiv_images(
int(match.group("id")), tmp_dir, REFRESH_TOKEN
)
2023-11-01 21:33:13 +01:00
if title is None:
await interaction.response.send_message(
"Fail to extract pixiv image", ephemeral=True
)
return
2023-10-31 15:31:07 +01:00
files = os.listdir(tmp_dir)
files.sort()
await discord_tools.message.send_command_reply(
interaction=interaction,
files=files,
tmp_dir=tmp_dir,
muted=muted,
title=title,
url=match.group("url"),
author=interaction.user,
)
else:
await interaction.response.send_message(
"Can't find any valid pixiv link.", ephemeral=True
)
@client.event
async def on_guild_join(guild: discord.Guild):
print(f"Joined new guild: {guild.name}")
2023-10-30 14:58:04 +01:00
@client.event
async def on_message(message: discord.Message):
if message.author == client.user:
return
2023-10-31 11:53:52 +01:00
(result, muted, match) = discord_tools.pixiv_link_extractor.should_process(message)
if result and match is not None:
2023-10-30 14:58:04 +01:00
with TemporaryDirectory() as tmp_dir:
async with message.channel.typing():
2023-10-31 11:53:52 +01:00
title = pixiv_api.dowload_pixiv_images(
2023-10-30 14:58:04 +01:00
int(match.group("id")), tmp_dir, REFRESH_TOKEN
)
2023-11-01 21:33:13 +01:00
if title is None:
return
2023-10-30 14:58:04 +01:00
files = os.listdir(tmp_dir)
2023-10-30 16:55:16 +01:00
files.sort()
# await send_message.send_message_with_embed(
# message, files, title, tmp_dir, match.group("url")
# )
2023-10-31 11:53:52 +01:00
await discord_tools.message.send_message(message, files, tmp_dir, muted)
2023-10-30 14:58:04 +01:00
client.run(DISCORD_TOKEN)