mirror of
https://github.com/wah-su/stickerbridge.git
synced 2025-04-05 15:54:41 +00:00
Merge pull request 'feat #11: allow to manually specify import_name' (#12) from poly000/stickerbridge:main into main
Reviewed-on: https://codeberg.org/didek/stickerbridge/pulls/12
This commit is contained in:
commit
6fd287bcd4
2 changed files with 25 additions and 17 deletions
|
@ -6,7 +6,13 @@ from telegram_exporter import TelegramExporter
|
|||
|
||||
|
||||
class Command:
|
||||
def __init__(self, client: AsyncClient, room: MatrixRoom, command: str, tg_exporter: TelegramExporter):
|
||||
def __init__(
|
||||
self,
|
||||
client: AsyncClient,
|
||||
room: MatrixRoom,
|
||||
command: str,
|
||||
tg_exporter: TelegramExporter,
|
||||
):
|
||||
self.client = client
|
||||
self.room = room
|
||||
self.command = command.lower()
|
||||
|
@ -26,12 +32,11 @@ class Command:
|
|||
"I am the bot that imports stickers from Telegram and upload them to Matrix rooms\n\n"
|
||||
"List of commands:\n"
|
||||
"help - Show this help message.\n"
|
||||
"import <pack_name> - Use this to import Telegram stickers from given link"
|
||||
"import <pack_name> [import_name] - Use this to import Telegram stickers from given link. import_name is pack_name if not provided"
|
||||
)
|
||||
await send_text_to_room(self.client, self.room.room_id, text)
|
||||
|
||||
async def _import_stickerpack(self):
|
||||
|
||||
if not self.args:
|
||||
text = (
|
||||
"You need to enter stickerpack name.\n"
|
||||
|
@ -41,26 +46,29 @@ class Command:
|
|||
return
|
||||
|
||||
pack_name = self.args[0]
|
||||
import_name = self.args[1] if len(self.args) > 1 else pack_name
|
||||
reuploader = MatrixReuploader(self.client, self.room, exporter=self.tg_exporter)
|
||||
async for status in reuploader.import_stickerset_to_room(pack_name):
|
||||
async for status in reuploader.import_stickerset_to_room(
|
||||
pack_name, import_name
|
||||
):
|
||||
switch = {
|
||||
MatrixReuploader.STATUS_DOWNLOADING: f'Downloading stickerpack {pack_name}...',
|
||||
MatrixReuploader.STATUS_UPLOADING: f'Uploading stickerpack {pack_name}...',
|
||||
MatrixReuploader.STATUS_UPDATING_ROOM_STATE: f'Updating room state...',
|
||||
MatrixReuploader.STATUS_OK: 'Done',
|
||||
MatrixReuploader.STATUS_DOWNLOADING: f"Downloading stickerpack {pack_name}...",
|
||||
MatrixReuploader.STATUS_UPLOADING: f"Uploading stickerpack {pack_name}...",
|
||||
MatrixReuploader.STATUS_UPDATING_ROOM_STATE: f"Updating room state...",
|
||||
MatrixReuploader.STATUS_OK: "Done",
|
||||
MatrixReuploader.STATUS_NO_PERMISSION: (
|
||||
'I do not have permissions to create any stickerpack in this room\n'
|
||||
'Please, give me mod 🙏'
|
||||
"I do not have permissions to create any stickerpack in this room\n"
|
||||
"Please, give me mod 🙏"
|
||||
),
|
||||
MatrixReuploader.STATUS_PACK_EXISTS: (
|
||||
f"Stickerpack '{pack_name}' already exists.\n"
|
||||
'Please delete it first.'
|
||||
"Please delete it first."
|
||||
),
|
||||
MatrixReuploader.STATUS_PACK_EMPTY: (
|
||||
f'Warning: Telegram pack {pack_name} find out empty or not existing.'
|
||||
)
|
||||
f"Warning: Telegram pack {pack_name} find out empty or not existing."
|
||||
),
|
||||
}
|
||||
text = switch.get(status, 'Warning: Unknown status')
|
||||
text = switch.get(status, "Warning: Unknown status")
|
||||
await send_text_to_room(self.client, self.room.room_id, text)
|
||||
|
||||
async def _unknown_command(self):
|
||||
|
|
|
@ -32,18 +32,18 @@ class MatrixReuploader:
|
|||
async def _has_permission_to_upload(self) -> bool:
|
||||
return await has_permission(self.client, self.room.room_id, 'state_default')
|
||||
|
||||
async def import_stickerset_to_room(self, pack_name: str):
|
||||
async def import_stickerset_to_room(self, pack_name: str, import_name: str):
|
||||
if not await self._has_permission_to_upload():
|
||||
yield self.STATUS_NO_PERMISSION
|
||||
return
|
||||
|
||||
stickerset = MatrixStickerset(pack_name)
|
||||
stickerset = MatrixStickerset(import_name)
|
||||
if await is_stickerpack_existing(self.client, self.room.room_id, stickerset.name()):
|
||||
yield self.STATUS_PACK_EXISTS
|
||||
return
|
||||
|
||||
yield self.STATUS_DOWNLOADING
|
||||
converted_stickerset = await self.exporter.get_stickerset(stickerset.name())
|
||||
converted_stickerset = await self.exporter.get_stickerset(pack_name)
|
||||
yield self.STATUS_UPLOADING
|
||||
for sticker in converted_stickerset:
|
||||
with tempfile.NamedTemporaryFile('w+b') as file:
|
||||
|
|
Loading…
Add table
Reference in a new issue