1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/discordbot.py

386 lines
19 KiB
Python
Raw Normal View History

2017-11-01 18:23:11 +00:00
import datetime
2017-11-11 17:55:13 +00:00
import random
2017-10-27 11:38:32 +00:00
import discord
2017-10-31 22:50:05 +00:00
import discord.opus
2017-11-01 18:23:11 +00:00
import functools
2017-11-09 19:34:18 +00:00
import sys
2017-10-27 11:38:32 +00:00
import db
import errors
2017-11-05 21:50:37 +00:00
import youtube_dl
2018-01-15 12:42:40 +00:00
import concurrent.futures
2018-01-25 14:24:17 +00:00
import stagismo
2017-10-27 11:38:32 +00:00
# Init the event loop
import asyncio
loop = asyncio.get_event_loop()
# Init the config reader
import configparser
config = configparser.ConfigParser()
config.read("config.ini")
2017-11-11 17:55:13 +00:00
# Find the latest git tag
import subprocess
import os
old_wd = os.getcwd()
try:
os.chdir(os.path.dirname(__file__))
version = str(subprocess.check_output(["git", "describe", "--tags"]), encoding="utf8").strip()
except:
version = "v???"
finally:
os.chdir(old_wd)
2017-10-27 11:38:32 +00:00
# Init the discord bot
client = discord.Client()
2018-01-25 14:30:07 +00:00
discord.opus.load_opus("/usr/lib/x86_64-linux-gnu/libopus.so")
2017-10-31 22:50:05 +00:00
voice_client = None
voice_player = None
2017-11-07 17:44:00 +00:00
voice_queue = []
voice_playing = None
2017-10-27 11:38:32 +00:00
2018-01-15 12:42:40 +00:00
# Init the executor
2018-01-15 17:25:12 +00:00
executor = concurrent.futures.ThreadPoolExecutor(max_workers=3)
2017-11-11 17:55:13 +00:00
2017-11-06 15:54:36 +00:00
class Video:
def __init__(self):
self.user = None
self.info = None
2017-11-07 17:44:00 +00:00
self.enqueued = None
self.channel = None
2017-11-01 18:23:11 +00:00
2017-11-06 15:54:36 +00:00
@staticmethod
2017-11-07 17:44:00 +00:00
async def init(author, info, enqueued, channel):
2017-11-06 15:54:36 +00:00
self = Video()
discord_user = await find_user(author)
2017-11-07 17:44:00 +00:00
self.user = discord_user.royal if discord_user is not None else None
2017-11-06 15:54:36 +00:00
self.info = info
2017-11-07 17:44:00 +00:00
self.enqueued = enqueued
self.channel = channel
2017-11-06 15:54:36 +00:00
return self
2018-01-25 14:30:07 +00:00
2017-11-06 15:54:36 +00:00
def create_embed(self):
embed = discord.Embed(type="rich",
2017-11-11 17:55:13 +00:00
title=self.info.get("title"),
url=self.info.get("webpage_url"),
2017-11-06 15:54:36 +00:00
colour=discord.Colour(13375518))
# Uploader
2017-11-11 17:55:13 +00:00
if self.info.get("uploader"):
2017-11-06 15:54:36 +00:00
embed.set_author(name=self.info["uploader"],
2017-11-11 17:55:13 +00:00
url=self.info.get("uploader_url"))
2017-11-06 15:54:36 +00:00
# Thumbnail
if "thumbnail" in self.info:
embed.set_thumbnail(url=self.info["thumbnail"])
# Duration
embed.add_field(name="Durata", value=str(datetime.timedelta(seconds=self.info["duration"])))
# Views
if "view_count" in self.info and self.info["view_count"] is not None:
embed.add_field(name="Visualizzazioni", value="{:_}".format(self.info["view_count"]).replace("_", " "))
# Likes
if "like_count" in self.info and self.info["like_count"] is not None:
embed.add_field(name="Mi piace", value="{:_}".format(self.info["like_count"]).replace("_", " "))
# Dislikes
if "dislike_count" in self.info and self.info["dislike_count"] is not None:
embed.add_field(name="Non mi piace", value="{:_}".format(self.info["dislike_count"]).replace("_", " "))
return embed
2017-11-05 21:50:37 +00:00
2017-11-06 15:54:36 +00:00
async def download(self):
2017-11-07 17:44:00 +00:00
try:
with youtube_dl.YoutubeDL({"noplaylist": True,
"format": "bestaudio",
"postprocessors": [{
"key": 'FFmpegExtractAudio',
"preferredcodec": 'opus'
}],
2017-11-10 07:53:48 +00:00
"outtmpl": "music.%(ext)s",
"quiet": True}) as ytdl:
2018-01-15 12:42:40 +00:00
info = await loop.run_in_executor(executor, functools.partial(ytdl.extract_info, self.info["webpage_url"]))
2017-11-07 17:44:00 +00:00
except Exception as e:
client.send_message(self.channel, f"⚠ Errore durante il download del video:\n"
f"```"
f"{e}"
f"```", embed=self.create_embed())
2017-11-06 15:54:36 +00:00
async def find_user(user: discord.User):
2018-01-15 12:42:40 +00:00
session = await loop.run_in_executor(executor, db.Session)
user = await loop.run_in_executor(executor, session.query(db.Discord).filter_by(discord_id=user.id).join(db.Royal).first)
2017-11-06 15:54:36 +00:00
return user
2017-11-05 21:50:37 +00:00
2017-11-10 07:53:48 +00:00
async def on_error(event, *args, **kwargs):
type, exception, traceback = sys.exc_info()
try:
2017-11-20 09:49:58 +00:00
await client.send_message(client.get_channel(config["Discord"]["main_channel"]), f"☢️ ERRORE CRITICO NELL'EVENTO `{event}`\n"
2017-11-15 09:48:58 +00:00
f"Il bot si è chiuso e si dovrebbe riavviare entro qualche minuto.\n\n"
2017-11-10 07:53:48 +00:00
f"Dettagli dell'errore:\n"
f"```python\n"
f"{repr(exception)}\n"
f"```")
2017-11-11 17:55:13 +00:00
await voice_client.disconnect()
2017-11-10 07:53:48 +00:00
await client.change_presence(status=discord.Status.invisible)
await client.close()
except Exception as e:
print("ERRORE CRITICO PIU' CRITICO:\n" + repr(e) + "\n" + repr(sys.exc_info()))
loop.stop()
2017-11-15 09:48:58 +00:00
os._exit(1)
pass
2017-11-09 19:34:18 +00:00
2017-11-10 07:53:48 +00:00
@client.event
async def on_ready():
2017-11-11 17:55:13 +00:00
await client.send_message(client.get_channel("368447084518572034"), f" Royal Bot {version} avviato e pronto a ricevere comandi!")
2017-11-10 07:53:48 +00:00
await client.change_presence(game=None, status=discord.Status.online)
2017-10-27 11:38:32 +00:00
@client.event
async def on_message(message: discord.Message):
2017-11-07 17:44:00 +00:00
global voice_queue
global voice_player
2017-11-01 18:23:11 +00:00
if message.content.startswith("!register"):
await client.send_typing(message.channel)
2018-01-15 12:42:40 +00:00
session = await loop.run_in_executor(executor, db.Session())
2017-11-01 18:23:11 +00:00
try:
username = message.content.split(" ", 1)[1]
except IndexError:
2017-11-05 21:50:37 +00:00
await client.send_message(message.channel, "⚠️ Non hai specificato un username!\n"
"Sintassi corretta: `!register <username_ryg>`")
2017-11-01 18:23:11 +00:00
return
try:
d = db.Discord.create(session,
royal_username=username,
discord_user=message.author)
except errors.AlreadyExistingError:
await client.send_message(message.channel, "⚠ Il tuo account Discord è già collegato a un account RYG o l'account RYG che hai specificato è già collegato a un account Discord.")
return
session.add(d)
session.commit()
2017-10-30 12:45:38 +00:00
session.close()
2017-11-01 18:23:11 +00:00
await client.send_message(message.channel, "✅ Sincronizzazione completata!")
2017-11-11 17:55:13 +00:00
elif message.content.startswith("!cv"):
2017-11-01 18:23:11 +00:00
await client.send_typing(message.channel)
if message.author.voice.voice_channel is None:
await client.send_message(message.channel, "⚠ Non sei in nessun canale!")
return
global voice_client
2017-11-07 17:44:00 +00:00
if voice_client is not None and voice_client.is_connected():
await voice_client.move_to(message.author.voice.voice_channel)
else:
voice_client = await client.join_voice_channel(message.author.voice.voice_channel)
2017-11-01 18:23:11 +00:00
await client.send_message(message.channel, f"✅ Mi sono connesso in <#{message.author.voice.voice_channel.id}>.")
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!play"):
2017-11-01 18:23:11 +00:00
await client.send_typing(message.channel)
2017-11-05 21:50:37 +00:00
# The bot should be in voice chat
if voice_client is None:
await client.send_message(message.channel, "⚠️ Non sono connesso alla cv!\n"
"Fammi entrare scrivendo `!cv` mentre sei in chat vocale.")
2017-11-09 19:34:18 +00:00
return
2017-11-05 21:50:37 +00:00
# Find the sent url
2017-11-01 18:23:11 +00:00
try:
url = message.content.split(" ", 1)[1]
except IndexError:
2017-11-05 21:50:37 +00:00
await client.send_message(message.channel, "⚠️ Non hai specificato un url!\n"
2017-11-11 17:55:13 +00:00
"Sintassi corretta: `!play <video>`")
2017-11-01 18:23:11 +00:00
return
2017-11-05 21:50:37 +00:00
# Se è una playlist, informa che potrebbe essere richiesto un po' di tempo
if "playlist" in url:
await client.send_message(message.channel, f" Hai inviato una playlist al bot.\n"
f"L'elaborazione potrebbe richiedere un po' di tempo.")
# Extract the info from the url
try:
with youtube_dl.YoutubeDL({"quiet": True, "skip_download": True, "noplaylist": True, "format": "webm[abr>0]/bestaudio/best"}) as ytdl:
2018-01-15 12:42:40 +00:00
info = await loop.run_in_executor(executor, functools.partial(ytdl.extract_info, url))
2017-11-05 21:50:37 +00:00
except youtube_dl.utils.DownloadError as e:
2017-11-07 17:44:00 +00:00
if "is not a valid URL" in str(e) or "Unsupported URL" in str(e):
2017-11-05 21:50:37 +00:00
await client.send_message(message.channel, f"⚠️ Il link inserito non è valido.\n"
2017-11-11 17:55:13 +00:00
f"Se vuoi cercare un video su YouTube, usa `!search <query>`")
else:
await client.send_message(message.channel, f"⚠ Errore:\n"
f"```\n"
f"{e}"
f"```")
2017-11-01 18:23:11 +00:00
return
2017-11-05 21:50:37 +00:00
if "_type" not in info:
# If target is a single video
2017-11-09 19:34:18 +00:00
video = await Video.init(author=message.author, info=info, enqueued=datetime.datetime.now(), channel=message.channel)
2017-11-06 15:54:36 +00:00
await client.send_message(message.channel, f"✅ Aggiunto alla coda:", embed=video.create_embed())
2017-11-07 17:44:00 +00:00
voice_queue.append(video)
2017-11-05 21:50:37 +00:00
elif info["_type"] == "playlist":
# If target is a playlist
if len(info["entries"]) < 20:
2017-11-06 15:54:36 +00:00
for single_info in info["entries"]:
2017-11-09 19:34:18 +00:00
video = await Video.init(author=message.author, info=single_info, enqueued=datetime.datetime.now(), channel=message.channel)
2017-11-06 15:54:36 +00:00
await client.send_message(message.channel, f"✅ Aggiunto alla coda:", embed=video.create_embed())
2017-11-07 17:44:00 +00:00
voice_queue.append(video)
2017-11-05 21:50:37 +00:00
else:
await client.send_message(message.channel, f" La playlist contiene {len(info['entries'])} video.\n"
f"Sei sicuro di volerli aggiungere alla coda?\n"
f"Rispondi **sì** o **no**.\n"
f"_(Il bot potrebbe crashare.)_")
answer = await client.wait_for_message(timeout=60, author=message.author, channel=message.channel)
if "" in answer.content.lower() or "si" in answer.content.lower():
2017-11-06 15:54:36 +00:00
for single_info in info["entries"]:
video = await Video.init(author=message.author, info=single_info,
2017-11-09 19:34:18 +00:00
enqueued=datetime.datetime.now(), channel=message.channel)
2017-11-06 15:54:36 +00:00
await client.send_message(message.channel, f"✅ Aggiunto alla coda:", embed=video.create_embed())
2017-11-07 17:44:00 +00:00
voice_queue.append(video)
2017-11-05 21:50:37 +00:00
elif "no" in answer.content.lower():
await client.send_message(message.channel, f" Operazione annullata.")
return
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!search"):
2017-11-07 17:44:00 +00:00
await client.send_typing(message.channel)
# The bot should be in voice chat
if voice_client is None:
await client.send_message(message.channel, "⚠️ Non sono connesso alla cv!\n"
"Fammi entrare scrivendo `!cv` mentre sei in chat vocale.")
2017-11-09 19:34:18 +00:00
return
2017-11-07 17:44:00 +00:00
# Find the sent text
try:
text = message.content.split(" ", 1)[1]
except IndexError:
await client.send_message(message.channel, "⚠️ Non hai specificato il titolo!\n"
2017-11-11 17:55:13 +00:00
"Sintassi corretta: `!search <titolo>`")
2017-11-07 17:44:00 +00:00
return
# Extract the info from the url
try:
with youtube_dl.YoutubeDL({"quiet": True, "skip_download": True, "noplaylist": True, "format": "webm[abr>0]/bestaudio/best"}) as ytdl:
2018-01-15 12:42:40 +00:00
info = await loop.run_in_executor(executor, functools.partial(ytdl.extract_info, f"ytsearch:{text}"))
2017-11-07 17:44:00 +00:00
except youtube_dl.utils.DownloadError as e:
if "is not a valid URL" in str(e) or "Unsupported URL" in str(e):
await client.send_message(message.channel, f"⚠️ Il video ottenuto dalla ricerca non è valido. Prova a cercare qualcos'altro...")
return
# If target is a single video
video = await Video.init(author=message.author, info=info["entries"][0], enqueued=datetime.datetime.now(), channel=message.channel)
await client.send_message(message.channel, f"✅ Aggiunto alla coda:", embed=video.create_embed())
voice_queue.append(video)
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!skip"):
2017-11-07 17:44:00 +00:00
global voice_player
voice_player.stop()
voice_player = None
await client.send_message(message.channel, f"⏩ Video saltato.")
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!pause"):
2017-11-07 17:44:00 +00:00
if voice_player is None or not voice_player.is_playing():
await client.send_message(message.channel, f"⚠️ Non è in corso la riproduzione di un video, pertanto non c'è niente da pausare.")
return
voice_player.pause()
await client.send_message(message.channel, f"⏸ Riproduzione messa in pausa.\n"
2017-11-11 17:55:13 +00:00
f"Riprendi con `!resume`.")
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!resume"):
2017-11-07 17:44:00 +00:00
if voice_player is None or voice_player.is_playing():
await client.send_message(message.channel, f"⚠️ Non c'è nulla in pausa da riprendere!")
return
voice_player.resume()
await client.send_message(message.channel, f"▶️ Riproduzione ripresa.")
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!cancel"):
2017-11-07 17:44:00 +00:00
try:
video = voice_queue.pop()
except IndexError:
await client.send_message(message.channel, f"⚠ La playlist è vuota.")
return
await client.send_message(message.channel, f"❌ Rimosso dalla playlist:", embed=video.create_embed())
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!stop"):
2017-11-07 17:44:00 +00:00
if voice_player is None:
await client.send_message(message.channel, f"⚠ Non c'è nulla da interrompere!")
return
voice_queue = []
voice_player.stop()
voice_player = None
await client.send_message(message.channel, f"⏹ Riproduzione interrotta e playlist svuotata.")
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!np"):
2018-01-25 14:24:17 +00:00
if voice_player is None or not voice_player.is_playing():
2017-11-09 19:34:18 +00:00
await client.send_message(message.channel, f" Non c'è nulla in riproduzione al momento.")
return
2018-01-19 08:52:01 +00:00
await client.send_message(message.channel, f"▶️ Ora in riproduzione in <#{voice_client.channel.id}>:", embed=voice_playing.create_embed())
2017-11-09 19:34:18 +00:00
elif message.content.startswith("!queue"):
if voice_player is None:
await client.send_message(message.channel, f" Non c'è nulla in riproduzione al momento.")
return
to_send = ""
to_send += f"0. {voice_playing.info['title'] if voice_playing.info['title'] is not None else '_Senza titolo_'} - <{voice_playing.info['webpage_url'] if voice_playing.info['webpage_url'] is not None else ''}>\n"
for n, video in enumerate(voice_queue):
to_send += f"{n+1}. {video.info['title'] if video.info['title'] is not None else '_Senza titolo_'} - <{video.info['webpage_url'] if video.info['webpage_url'] is not None else ''}>\n"
if len(to_send) >= 2000:
to_send = to_send[0:1997] + "..."
break
await client.send_message(message.channel, to_send)
2017-11-11 17:55:13 +00:00
elif message.content.startswith("!cast"):
try:
spell = message.content.split(" ", 1)[1]
except IndexError:
await client.send_message("⚠️ Non hai specificato nessun incantesimo!\n"
"Sintassi corretta: `!cast <nome_incantesimo>`")
return
target = random.sample(list(message.server.members), 1)[0]
# Seed the rng with the spell name
# so that spells always deal the same damage
random.seed(spell)
dmg_mod = random.randrange(-2, 3)
dmg_dice = random.randrange(1, 4)
dmg_max = random.sample([4, 6, 8, 10, 12, 20, 100], 1)[0]
# Reseed the rng with a random value
# so that the dice roll always deals a different damage
random.seed()
total = dmg_mod
for dice in range(0, dmg_dice):
total += random.randrange(1, dmg_max+1)
await client.send_message(message.channel, f"❇️ Ho lanciato **{spell}** su **{target.nick if target.nick is not None else target.name}** per {dmg_dice}d{dmg_max}{'+' if dmg_mod > 0 else ''}{str(dmg_mod) if dmg_mod != 0 else ''}=**{total if total > 0 else 0}** danni!")
2018-01-25 14:24:17 +00:00
elif message.content.startswith("!smecds"):
ds = random.sample(stagismo.listona, 1)[0]
await client.send_message(message.channel, f"Secondo me, è colpa {ds}.", tts=True)
2017-11-09 19:34:18 +00:00
elif __debug__ and message.content.startswith("!exception"):
2017-11-10 07:53:48 +00:00
raise Exception("!exception was called")
2017-11-05 21:50:37 +00:00
2017-10-30 12:45:38 +00:00
async def update_users_pipe(users_connection):
await client.wait_until_ready()
while True:
2018-01-15 12:42:40 +00:00
msg = await loop.run_in_executor(executor, users_connection.recv)
2017-10-30 12:45:38 +00:00
if msg == "/cv":
discord_members = list(client.get_server(config["Discord"]["server_id"]).members)
users_connection.send(discord_members)
2017-11-05 21:50:37 +00:00
async def update_music_queue():
2017-11-06 15:54:36 +00:00
await client.wait_until_ready()
2017-11-20 09:49:58 +00:00
global voice_player
global voice_playing
2017-11-06 15:54:36 +00:00
while True:
# Wait until there is nothing playing
2017-11-07 17:44:00 +00:00
if voice_client is not None and voice_player is not None and (voice_player.is_playing() and not voice_player.is_done()):
await asyncio.sleep(1)
continue
if len(voice_queue) == 0:
2017-11-09 19:34:18 +00:00
if voice_playing is not None:
# Set the playing status
voice_playing = None
await client.change_presence()
2017-11-07 17:44:00 +00:00
await asyncio.sleep(1)
continue
2017-11-06 15:54:36 +00:00
# Get the last video in the queue
2017-11-07 17:44:00 +00:00
video = voice_queue.pop(0)
# Notify the chat of the download
2017-11-09 19:34:18 +00:00
await client.send_message(video.channel, f" E' iniziato il download della prossima canzone.")
2017-11-06 15:54:36 +00:00
# Download the video
await video.download()
# Play the video
voice_player = voice_client.create_ffmpeg_player(f"music.opus")
voice_player.start()
2017-11-07 17:44:00 +00:00
# Notify the chat of the start
await client.send_message(video.channel, f"▶ Ora in riproduzione in <#{voice_client.channel.id}>:", embed=video.create_embed())
2017-11-09 19:34:18 +00:00
# Set the playing status
voice_playing = video
await client.change_presence(game=discord.Game(name=video.info.get("title"), type=2))
2017-11-06 15:54:36 +00:00
2017-11-05 21:50:37 +00:00
2018-01-15 12:42:40 +00:00
def process(users_connection=None):
2017-10-30 12:45:38 +00:00
print("Discordbot starting...")
2018-01-15 12:42:40 +00:00
if users_connection is not None:
asyncio.ensure_future(update_users_pipe(users_connection))
asyncio.ensure_future(update_music_queue())
2017-11-09 19:34:18 +00:00
client.on_error = on_error
2018-01-15 12:42:40 +00:00
client.run(config["Discord"]["bot_token"])
if __name__ == "__main__":
2018-01-25 14:30:07 +00:00
process()