Mods
This commit is contained in:
parent
141f683de5
commit
1ade0a8e7e
73
main.py
73
main.py
|
@ -9,7 +9,7 @@ import os
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import random
|
import random
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from datetime import datetime
|
from datetime import datetime, timedelta
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import aiofiles
|
import aiofiles
|
||||||
import sys
|
import sys
|
||||||
|
@ -70,6 +70,14 @@ def random_int(min_val, max_val):
|
||||||
return random.randint(min_val, max_val)
|
return random.randint(min_val, max_val)
|
||||||
|
|
||||||
|
|
||||||
|
def random_date():
|
||||||
|
current_date = datetime.now()
|
||||||
|
end_date = current_date + timedelta(days=36525) # 365 days * 100 years
|
||||||
|
random_days = random.randint(0, (end_date - current_date).days)
|
||||||
|
random_date = current_date + timedelta(days=random_days)
|
||||||
|
return random_date.strftime("%d %b %Y")
|
||||||
|
|
||||||
|
|
||||||
def get_path(name):
|
def get_path(name):
|
||||||
return str(Path(HERE, name))
|
return str(Path(HERE, name))
|
||||||
|
|
||||||
|
@ -222,22 +230,22 @@ async def on_message(ws, message):
|
||||||
cmd = words[0]
|
cmd = words[0]
|
||||||
args = words[1:]
|
args = words[1:]
|
||||||
|
|
||||||
if cmd == "ping":
|
if cmd in ["ping"]:
|
||||||
update_time()
|
update_time()
|
||||||
await send_message(ws, "Pong!", room_id)
|
await send_message(ws, "Pong!", room_id)
|
||||||
|
|
||||||
elif cmd == "help":
|
elif cmd in ["help"]:
|
||||||
update_time()
|
update_time()
|
||||||
await send_message(ws, f"Commands: describe | wins | numbers | date | bird | shitpost | who", room_id)
|
await send_message(ws, f"Commands: describe | wins | numbers | date | bird | shitpost | who", room_id)
|
||||||
|
|
||||||
elif cmd == "describe":
|
elif cmd in ["describe"]:
|
||||||
if len(args) >= 1:
|
if len(args) >= 1:
|
||||||
update_time()
|
update_time()
|
||||||
arg = " ".join(clean_list(args))
|
arg = " ".join(clean_list(args))
|
||||||
arg = clean_gifmaker(arg)
|
arg = clean_gifmaker(arg)
|
||||||
await gif_describe(arg, room_id)
|
await gif_describe(arg, room_id)
|
||||||
|
|
||||||
elif cmd == "wins" or cmd == "win":
|
elif cmd in ["wins", "win"]:
|
||||||
if len(args) >= 1:
|
if len(args) >= 1:
|
||||||
update_time()
|
update_time()
|
||||||
arg = " ".join(clean_list(args))
|
arg = " ".join(clean_list(args))
|
||||||
|
@ -247,7 +255,7 @@ async def on_message(ws, message):
|
||||||
update_time()
|
update_time()
|
||||||
await gif_wins(None, room_id)
|
await gif_wins(None, room_id)
|
||||||
|
|
||||||
elif cmd == "numbers" or cmd == "number" or cmd == "nums" or cmd == "num":
|
elif cmd in ["numbers", "number", "nums", "num"]:
|
||||||
update_time()
|
update_time()
|
||||||
|
|
||||||
if len(args) > 0:
|
if len(args) > 0:
|
||||||
|
@ -258,19 +266,11 @@ async def on_message(ws, message):
|
||||||
arg = clean_gifmaker(arg)
|
arg = clean_gifmaker(arg)
|
||||||
await gif_numbers(arg, room_id)
|
await gif_numbers(arg, room_id)
|
||||||
|
|
||||||
elif cmd == "date" or cmd == "data" or cmd == "time" or cmd == "datetime":
|
elif cmd in ["date", "data", "time", "datetime"]:
|
||||||
update_time()
|
update_time()
|
||||||
await gif_date(room_id)
|
await gif_date(room_id)
|
||||||
|
|
||||||
elif cmd == "bird" or cmd == "birds" or cmd == "birb" or cmd == "birbs" or cmd == "brb":
|
elif cmd in ["who", "pick", "any", "user", "username"]:
|
||||||
update_time()
|
|
||||||
await random_bird(ws, room_id)
|
|
||||||
|
|
||||||
elif cmd == "post" or cmd == "shitpost" or cmd == "4chan" or cmd == "anon" or cmd == "shit":
|
|
||||||
update_time()
|
|
||||||
await random_post(ws, room_id)
|
|
||||||
|
|
||||||
elif cmd == "who" or cmd == "pick" or cmd == "any" or cmd == "user" or cmd == "username":
|
|
||||||
update_time()
|
update_time()
|
||||||
|
|
||||||
if len(args) > 0:
|
if len(args) > 0:
|
||||||
|
@ -280,6 +280,24 @@ async def on_message(ws, message):
|
||||||
|
|
||||||
await gif_user(arg, room_id)
|
await gif_user(arg, room_id)
|
||||||
|
|
||||||
|
elif cmd in ["when", "die", "death"]:
|
||||||
|
update_time()
|
||||||
|
|
||||||
|
if len(args) > 0:
|
||||||
|
arg = " ".join(clean_list(args))
|
||||||
|
else:
|
||||||
|
arg = None
|
||||||
|
|
||||||
|
await gif_when(arg, room_id)
|
||||||
|
|
||||||
|
elif cmd in ["bird", "birds", "birb", "birbs", "brb"]:
|
||||||
|
update_time()
|
||||||
|
await random_bird(ws, room_id)
|
||||||
|
|
||||||
|
elif cmd in ["post", "shitpost", "4chan", "anon", "shit"]:
|
||||||
|
update_time()
|
||||||
|
await random_post(ws, room_id)
|
||||||
|
|
||||||
|
|
||||||
async def random_bird(ws, room_id):
|
async def random_bird(ws, room_id):
|
||||||
birdfile = get_path("data/aves.txt")
|
birdfile = get_path("data/aves.txt")
|
||||||
|
@ -392,6 +410,29 @@ async def gif_user(who, room_id):
|
||||||
await run_gifmaker(command, room_id)
|
await run_gifmaker(command, room_id)
|
||||||
|
|
||||||
|
|
||||||
|
async def gif_when(who, room_id):
|
||||||
|
if not who:
|
||||||
|
who = random.choice(userlist)
|
||||||
|
|
||||||
|
date = random_date()
|
||||||
|
|
||||||
|
command = gifmaker_command([
|
||||||
|
"--input", get_path("sky.jpg"),
|
||||||
|
"--words", f"{who} will die [x2] ; {date} [x2]",
|
||||||
|
"--filter", "anyhue2",
|
||||||
|
"--bottom", 60,
|
||||||
|
"--fontcolor", "light2",
|
||||||
|
"--bgcolor", "darkfont2",
|
||||||
|
"--outline", "font",
|
||||||
|
"--font", "nova",
|
||||||
|
"--fontsize", 60,
|
||||||
|
"--opacity", 0.8,
|
||||||
|
"--wrap", 25,
|
||||||
|
])
|
||||||
|
|
||||||
|
await run_gifmaker(command, room_id)
|
||||||
|
|
||||||
|
|
||||||
async def random_post(ws, room_id):
|
async def random_post(ws, room_id):
|
||||||
boards = ["g", "an", "ck", "lit", "x", "tv", "v", "fit", "k", "o"]
|
boards = ["g", "an", "ck", "lit", "x", "tv", "v", "fit", "k", "o"]
|
||||||
board = random.choice(boards)
|
board = random.choice(boards)
|
||||||
|
|
Loading…
Reference in New Issue