homelab/builds/maubot-resotU/main.py

83 lines
2.6 KiB
Python
Raw Permalink Normal View History

2023-12-12 08:36:51 +01:00
from time import time
import aiohttp
import asyncio
2023-12-19 09:08:25 +01:00
from bs4 import BeautifulSoup
2023-12-12 08:36:51 +01:00
from mautrix.types import TextMessageEventContent, MessageType, Format, RelatesTo, RelationType, MediaMessageEventContent
from maubot import Plugin, MessageEvent
from maubot.handlers import command
2023-12-19 09:08:25 +01:00
async def extract_picture_url(url, base_url):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
if response.status != 200:
return "Error: Unable to access the page."
content = await response.read()
soup = BeautifulSoup(content, 'html.parser')
images = soup.find_all('img')
2024-04-19 12:20:32 +02:00
for a in soup.find_all('a'):
href = a.get('href')
if not href or not href.startswith(base_url):
continue
for img in a.find_all('img'):
src = img.get('src')
if not src or not src.startswith(base_url):
continue
2023-12-19 09:08:25 +01:00
if src.startswith('//'):
return f"https:{src}"
else:
return src
return "No image found"
2023-12-12 08:36:51 +01:00
async def download_image(url):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
return await response.read()
class UCLouvainRestoUBot(Plugin):
# Highly inspired by https://github.com/maubot/echo
@command.new("ping", help="Ping")
async def ping_handler(self, evt: MessageEvent, message: str = "") -> None:
2024-01-23 00:35:27 +01:00
print('PING')
2023-12-12 08:36:51 +01:00
diff = int(time() * 1000) - evt.timestamp
content = TextMessageEventContent(
msgtype=MessageType.NOTICE, format=Format.HTML,
body=f"{evt.sender}: Pong! (ping took {diff} ms to arrive)",
formatted_body=f"<a href='https://matrix.to/#/{evt.sender}'>{evt.sender}</a>: Pong! "
f"(<a href='https://matrix.to/#/{evt.room_id}/{evt.event_id}'>ping</a> "
f"took {diff} ms to arrive)",
relates_to=RelatesTo(
rel_type=RelationType("xyz.maubot.pong"),
event_id=evt.event_id,
))
await evt.respond(content)
@command.new("menu", help="Menu")
async def menu_handler(self, evt: MessageEvent, message: str = "") -> None:
2023-12-19 09:08:25 +01:00
data = await download_image(
await extract_picture_url(
"https://uclouvain.be/fr/decouvrir/resto-u/le-galilee-self.html",
2024-04-19 12:20:32 +02:00
"//cdn.uclouvain.be/groups/cms-editors-resto-u/"
2023-12-19 09:08:25 +01:00
)
)
2023-12-12 08:36:51 +01:00
url = await self.client.upload_media(data, mime_type="application/json")
content = MediaMessageEventContent(
msgtype=MessageType.IMAGE,
url=url,
relates_to=RelatesTo(
rel_type=RelationType("xyz.maubot.menu"),
event_id=evt.event_id,
))
await evt.respond(content)