Initial commit with meow and quack stuff

This commit is contained in:
csd4ni3l
2025-12-10 20:58:48 +01:00
commit a1a2020ea5
10 changed files with 1003 additions and 0 deletions
+98
View File
@@ -0,0 +1,98 @@
import os, requests
from slack_bolt import App
from slack_bolt.adapter.socket_mode import SocketModeHandler
MEOW_PHRASES = [
":3", ">:3", ":3c", ">:3c", ">:^3",
"meow", "mew", "meww", "mrrp", "mrrrp", "mrp", "mrrrow",
"purr", "prr", "prrr", "brrrp",
"nya", "nyan", "nyaa", "nyaaa", "nyanyanya", "nya~", "nya!",
"neko", "nekochan",
"owo", "uwu", "qwq", ">w<", "^_^",
"=^.^=", "(=^・^=)",
"*meow*", "*purr*", "*mrrp*", "*nya*",
"chirp", "eep",
"nyoom",
"rawr"
]
QUACK_PHRASES = ["quack", "duck", "gizzy"]
app = App(token=os.environ.get("SLACK_BOT_TOKEN"))
@app.command("/meow")
def meow(ack, say):
ack()
say(
text="Meow! :3",
blocks=[
{
"type": "image",
"title": {
"type": "plain_text",
"text": "Meow!"
},
"block_id": "image4",
"image_url": "https://cataas.com/cat/cute/says/Meow",
"alt_text": ":3"
}
]
)
@app.command("/quack")
def quack(ack, say):
ack()
say(
text="Quack! :3",
blocks=[
{
"type": "image",
"title": {
"type": "plain_text",
"text": "Quack!"
},
"block_id": "image4",
"image_url": requests.get("https://random-d.uk/api/quack").json()["url"],
"alt_text": ":3"
}
]
)
@app.event("message")
def message_handler(body, say):
message_text = body.get('event', {}).get('text', '').lower()
if any([phrase in message_text.lower().split() for phrase in MEOW_PHRASES]):
say(
text="Meow! :3",
blocks=[
{
"type": "image",
"title": {
"type": "plain_text",
"text": "Meow!"
},
"block_id": "image4",
"image_url": requests.get("https://cataas.com/cat/cute/says/Meow?json=true").json()["url"] ,
"alt_text": ":3"
}
]
)
elif any([phrase in message_text.lower().split() for phrase in QUACK_PHRASES]):
say(
text="Quack! :3",
blocks=[
{
"type": "image",
"title": {
"type": "plain_text",
"text": "Quack!"
},
"block_id": "image4",
"image_url": requests.get("https://random-d.uk/api/quack").json()["url"],
"alt_text": ":3"
}
]
)
if __name__ == "__main__":
SocketModeHandler(app, os.environ["SLACK_APP_TOKEN"]).start()