mirror of
https://github.com/jarulsamy/Plex-Bot.git
synced 2024-08-19 15:01:55 +02:00
Compare commits
12 Commits
19360e3101
...
360416bb02
Author | SHA1 | Date | |
---|---|---|---|
|
360416bb02 | ||
|
ccee843a36 | ||
|
90c40fb0d6 | ||
|
8b90fb8e34 | ||
|
60ef54d8e4 | ||
|
280cbaed92 | ||
|
2f17494ebd | ||
|
ed9e677108 | ||
|
aa51cc4301 | ||
|
069d88fd1e | ||
|
15b7e0f50e | ||
|
04da5dfd42 |
253
PlexBot/bot.py
253
PlexBot/bot.py
@ -34,10 +34,15 @@ Plex:
|
|||||||
show_playlists <ARG> <ARG> - Query for playlists with a name matching any of the arguments.
|
show_playlists <ARG> <ARG> - Query for playlists with a name matching any of the arguments.
|
||||||
lyrics - Print the lyrics of the song (Requires Genius API)
|
lyrics - Print the lyrics of the song (Requires Genius API)
|
||||||
np - Print the current playing song.
|
np - Print the current playing song.
|
||||||
|
q - Print the current queue (This can take very long!)
|
||||||
stop - Halt playback and leave vc.
|
stop - Halt playback and leave vc.
|
||||||
|
loop - Loop the current song.
|
||||||
|
loopq - Loop the current queue.
|
||||||
|
unloop - Disable looping the current track.
|
||||||
|
unloopq - Disable looping the current queue.
|
||||||
pause - Pause playback.
|
pause - Pause playback.
|
||||||
resume - Resume playback.
|
resume - Resume playback.
|
||||||
skip - Skip the current song.
|
skip - Skip the current song. Give a number as argument to skip more than 1.
|
||||||
clear - Clear play queue.
|
clear - Clear play queue.
|
||||||
|
|
||||||
[] - Optional args.
|
[] - Optional args.
|
||||||
@ -202,7 +207,10 @@ class Plex(commands.Cog):
|
|||||||
# Initialize necessary vars
|
# Initialize necessary vars
|
||||||
self.voice_channel = None
|
self.voice_channel = None
|
||||||
self.current_track = None
|
self.current_track = None
|
||||||
|
self.is_looping = False
|
||||||
|
self.loop_queue = None
|
||||||
self.np_message_id = None
|
self.np_message_id = None
|
||||||
|
self.show_queue_message_ids = []
|
||||||
self.ctx = None
|
self.ctx = None
|
||||||
|
|
||||||
# Initialize events
|
# Initialize events
|
||||||
@ -296,9 +304,12 @@ class Plex(commands.Cog):
|
|||||||
track_url = self.current_track.getStreamURL()
|
track_url = self.current_track.getStreamURL()
|
||||||
audio_stream = FFmpegPCMAudio(track_url)
|
audio_stream = FFmpegPCMAudio(track_url)
|
||||||
|
|
||||||
while self.voice_channel.is_playing():
|
while self.voice_channel and self.voice_channel.is_playing():
|
||||||
asyncio.sleep(2)
|
bot_log.debug("waiting for track to finish")
|
||||||
|
await asyncio.sleep(2)
|
||||||
|
bot_log.debug("track finished")
|
||||||
|
|
||||||
|
if self.voice_channel:
|
||||||
self.voice_channel.play(audio_stream, after=self._toggle_next)
|
self.voice_channel.play(audio_stream, after=self._toggle_next)
|
||||||
|
|
||||||
plex_log.debug("%s - URL: %s", self.current_track, track_url)
|
plex_log.debug("%s - URL: %s", self.current_track, track_url)
|
||||||
@ -306,6 +317,29 @@ class Plex(commands.Cog):
|
|||||||
embed, img = self._build_embed_track(self.current_track)
|
embed, img = self._build_embed_track(self.current_track)
|
||||||
self.np_message_id = await self.ctx.send(embed=embed, file=img)
|
self.np_message_id = await self.ctx.send(embed=embed, file=img)
|
||||||
|
|
||||||
|
async def _play_next(self):
|
||||||
|
try:
|
||||||
|
from asyncio.exceptions import CancelledError
|
||||||
|
except ImportError:
|
||||||
|
from concurrent.futures._base import CancelledError
|
||||||
|
if self.is_looping:
|
||||||
|
self.current_track = self.is_looping
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
self.current_track = await self.play_queue.get()
|
||||||
|
except CancelledError:
|
||||||
|
bot_log.debug("failed to pop queue")
|
||||||
|
|
||||||
|
if not self.current_track and self.loop_queue:
|
||||||
|
bot_log.debug("swapping loop queue and play queue")
|
||||||
|
for item in self.loop_queue:
|
||||||
|
await self.play_queue.put(item)
|
||||||
|
|
||||||
|
try:
|
||||||
|
self.current_track = await self.play_queue.get()
|
||||||
|
except CancelledError:
|
||||||
|
bot_log.debug("failed to pop queue")
|
||||||
|
|
||||||
async def _audio_player_task(self):
|
async def _audio_player_task(self):
|
||||||
"""
|
"""
|
||||||
Coroutine to handle playback and queuing
|
Coroutine to handle playback and queuing
|
||||||
@ -329,16 +363,18 @@ class Plex(commands.Cog):
|
|||||||
try:
|
try:
|
||||||
# Disconnect after 15 seconds idle
|
# Disconnect after 15 seconds idle
|
||||||
async with timeout(15):
|
async with timeout(15):
|
||||||
self.current_track = await self.play_queue.get()
|
await self._play_next()
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
|
bot_log("timeout - disconnecting")
|
||||||
await self.voice_channel.disconnect()
|
await self.voice_channel.disconnect()
|
||||||
self.voice_channel = None
|
self.voice_channel = None
|
||||||
|
|
||||||
if not self.current_track:
|
if not self.current_track:
|
||||||
self.current_track = await self.play_queue.get()
|
await self._play_next()
|
||||||
|
|
||||||
await self._play()
|
await self._play()
|
||||||
await self.play_next_event.wait()
|
await self.play_next_event.wait()
|
||||||
|
if self.np_message_id:
|
||||||
await self.np_message_id.delete()
|
await self.np_message_id.delete()
|
||||||
|
|
||||||
def _toggle_next(self, error=None):
|
def _toggle_next(self, error=None):
|
||||||
@ -381,16 +417,22 @@ class Plex(commands.Cog):
|
|||||||
ValueError: Unsupported type of embed {type_}
|
ValueError: Unsupported type of embed {type_}
|
||||||
"""
|
"""
|
||||||
# Grab the relevant thumbnail
|
# Grab the relevant thumbnail
|
||||||
|
if track.thumbUrl:
|
||||||
img_stream = requests.get(track.thumbUrl, stream=True).raw
|
img_stream = requests.get(track.thumbUrl, stream=True).raw
|
||||||
img = io.BytesIO(img_stream.read())
|
img = io.BytesIO(img_stream.read())
|
||||||
|
|
||||||
# Attach to discord embed
|
# Attach to discord embed
|
||||||
art_file = discord.File(img, filename="image0.png")
|
art_file = discord.File(img, filename="image0.png")
|
||||||
|
else:
|
||||||
|
art_file = None
|
||||||
|
|
||||||
# Get appropiate status message
|
# Get appropiate status message
|
||||||
if type_ == "play":
|
if type_ == "play":
|
||||||
title = f"Now Playing - {track.title}"
|
title = f"Now Playing - {track.title}"
|
||||||
elif type_ == "queue":
|
elif type_ == "queue":
|
||||||
title = f"Added to queue - {track.title}"
|
title = f"Added to queue - {track.title}"
|
||||||
|
elif type_ == "queued":
|
||||||
|
title = f"Next in line - {track.title}"
|
||||||
else:
|
else:
|
||||||
raise ValueError(f"Unsupported type of embed {type_}")
|
raise ValueError(f"Unsupported type of embed {type_}")
|
||||||
|
|
||||||
@ -505,8 +547,11 @@ class Plex(commands.Cog):
|
|||||||
|
|
||||||
# Connect to voice if not already
|
# Connect to voice if not already
|
||||||
if not self.voice_channel:
|
if not self.voice_channel:
|
||||||
|
try:
|
||||||
self.voice_channel = await ctx.author.voice.channel.connect()
|
self.voice_channel = await ctx.author.voice.channel.connect()
|
||||||
bot_log.debug("Connected to vc.")
|
bot_log.debug("Connected to vc.")
|
||||||
|
except asyncio.exceptions.TimeoutError:
|
||||||
|
bot_log.debug("Cannot connect to vc - timeout")
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def play(self, ctx, *args):
|
async def play(self, ctx, *args):
|
||||||
@ -543,7 +588,7 @@ class Plex(commands.Cog):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
# Specific add to queue message
|
# Specific add to queue message
|
||||||
if self.voice_channel.is_playing():
|
if self.voice_channel and self.voice_channel.is_playing():
|
||||||
bot_log.debug("Added to queue - %s", title)
|
bot_log.debug("Added to queue - %s", title)
|
||||||
embed, img = self._build_embed_track(track, type_="queue")
|
embed, img = self._build_embed_track(track, type_="queue")
|
||||||
await ctx.send(embed=embed, file=img)
|
await ctx.send(embed=embed, file=img)
|
||||||
@ -592,6 +637,37 @@ class Plex(commands.Cog):
|
|||||||
for track in album.tracks():
|
for track in album.tracks():
|
||||||
await self.play_queue.put(track)
|
await self.play_queue.put(track)
|
||||||
|
|
||||||
|
async def play_playlist(self, title, shuffle=False):
|
||||||
|
try:
|
||||||
|
playlist = self._search_playlists(title)
|
||||||
|
except MediaNotFoundError:
|
||||||
|
await self.ctx.send(f"Can't find playlist: {title}")
|
||||||
|
bot_log.debug("Failed to queue playlist, can't find - %s", title)
|
||||||
|
return
|
||||||
|
|
||||||
|
try:
|
||||||
|
await self._validate(self.ctx)
|
||||||
|
except VoiceChannelError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
|
embed, img = self._build_embed_playlist(self, playlist, "Added playlist to queue", playlist.title)
|
||||||
|
await self.ctx.send(embed=embed, file=img)
|
||||||
|
|
||||||
|
items = [ item for item in playlist.items() if item.TYPE == "track" ]
|
||||||
|
if shuffle:
|
||||||
|
from random import shuffle
|
||||||
|
shuffle(items)
|
||||||
|
|
||||||
|
for item in items:
|
||||||
|
await self.play_queue.put(item)
|
||||||
|
|
||||||
|
bot_log.debug("Added to queue - %s", title)
|
||||||
|
|
||||||
|
except MediaNotFoundError:
|
||||||
|
await self.ctx.send(message="Playlist "+title+" seems to be empty!")
|
||||||
|
bot_log.debug("Playlist empty - %s", title)
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def playlist(self, ctx, *args):
|
async def playlist(self, ctx, *args):
|
||||||
"""
|
"""
|
||||||
@ -613,30 +689,32 @@ class Plex(commands.Cog):
|
|||||||
# Save the context to use with async callbacks
|
# Save the context to use with async callbacks
|
||||||
self.ctx = ctx
|
self.ctx = ctx
|
||||||
title = " ".join(args)
|
title = " ".join(args)
|
||||||
|
await self.play_playlist(title)
|
||||||
|
|
||||||
try:
|
@command()
|
||||||
playlist = self._search_playlists(title)
|
async def playlist_shuffle(self, ctx, *args):
|
||||||
except MediaNotFoundError:
|
"""
|
||||||
await ctx.send(f"Can't find playlist: {title}")
|
User command to play playlist in shuffle mode
|
||||||
bot_log.debug("Failed to queue playlist, can't find - %s", title)
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
Searchs plex db and either, initiates playback, or
|
||||||
await self._validate(ctx)
|
adds to queue. Handles invalid usage from the user.
|
||||||
except VoiceChannelError:
|
|
||||||
pass
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
*args: Title of playlist to play
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
# Save the context to use with async callbacks
|
||||||
|
self.ctx = ctx
|
||||||
|
title = " ".join(args)
|
||||||
|
await self.play_playlist(title,shuffle=True)
|
||||||
|
|
||||||
try:
|
|
||||||
embed, img = self._build_embed_playlist(self, playlist, "Added playlist to queue", playlist.title)
|
|
||||||
await ctx.send(embed=embed, file=img)
|
|
||||||
|
|
||||||
for item in playlist.items():
|
|
||||||
if (item.TYPE == "track"):
|
|
||||||
await self.play_queue.put(item)
|
|
||||||
bot_log.debug("Added to queue - %s", title)
|
|
||||||
except MediaNotFoundError:
|
|
||||||
await ctx.send(message="Playlist "+title+" seems to be empty!")
|
|
||||||
bot_log.debug("Playlist empty - %s", title)
|
|
||||||
@command()
|
@command()
|
||||||
async def show_playlists(self, ctx, *args):
|
async def show_playlists(self, ctx, *args):
|
||||||
"""
|
"""
|
||||||
@ -697,6 +775,80 @@ class Plex(commands.Cog):
|
|||||||
bot_log.debug("Stopped")
|
bot_log.debug("Stopped")
|
||||||
await ctx.send(":stop_button: Stopped")
|
await ctx.send(":stop_button: Stopped")
|
||||||
|
|
||||||
|
@command()
|
||||||
|
async def loop(self, ctx):
|
||||||
|
"""
|
||||||
|
User command to activate looping the current track
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
bot_log.debug("Looping "+str(self.current_track))
|
||||||
|
self.is_looping = self.current_track
|
||||||
|
|
||||||
|
@command()
|
||||||
|
async def loopq(self, ctx):
|
||||||
|
"""
|
||||||
|
User command to activate looping the current queue
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
bot_log.debug("Looping current queue")
|
||||||
|
if self.current_track:
|
||||||
|
self.loop_queue = [ self.current_track ]
|
||||||
|
else:
|
||||||
|
self.loop_queue = []
|
||||||
|
for item in self.play_queue._queue:
|
||||||
|
self.loop_queue.append(item)
|
||||||
|
|
||||||
|
@command()
|
||||||
|
async def unloop(self, ctx):
|
||||||
|
"""
|
||||||
|
User command to deactivate looping the current track
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
bot_log.debug("Looping current queue")
|
||||||
|
self.is_looping = False
|
||||||
|
|
||||||
|
@command()
|
||||||
|
async def unloopq(self, ctx):
|
||||||
|
"""
|
||||||
|
User command to deactivate looping the current queue
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
bot_log.debug("Unlooping")
|
||||||
|
self.loop_queue = None
|
||||||
|
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def pause(self, ctx):
|
async def pause(self, ctx):
|
||||||
"""
|
"""
|
||||||
@ -739,7 +891,7 @@ class Plex(commands.Cog):
|
|||||||
await ctx.send(":play_pause: Resumed")
|
await ctx.send(":play_pause: Resumed")
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def skip(self, ctx):
|
async def skip(self, ctx, *args):
|
||||||
"""
|
"""
|
||||||
User command to skip song in queue
|
User command to skip song in queue
|
||||||
|
|
||||||
@ -755,10 +907,16 @@ class Plex(commands.Cog):
|
|||||||
Raises:
|
Raises:
|
||||||
None
|
None
|
||||||
"""
|
"""
|
||||||
bot_log.debug("Skip")
|
n = 1
|
||||||
|
if args:
|
||||||
|
n = int(args[0])
|
||||||
|
bot_log.debug("Skipping "+str(n))
|
||||||
if self.voice_channel:
|
if self.voice_channel:
|
||||||
self.voice_channel.stop()
|
self.voice_channel.stop()
|
||||||
bot_log.debug("Skipped")
|
bot_log.debug("Skipped")
|
||||||
|
if n>1:
|
||||||
|
for i in range(n-1):
|
||||||
|
await self.play_queue.get()
|
||||||
self._toggle_next()
|
self._toggle_next()
|
||||||
|
|
||||||
@command(name="np")
|
@command(name="np")
|
||||||
@ -779,15 +937,51 @@ class Plex(commands.Cog):
|
|||||||
None
|
None
|
||||||
"""
|
"""
|
||||||
if self.current_track:
|
if self.current_track:
|
||||||
embed, img = self._build_embed_track(self.current_track)
|
embed, img = self._build_embed_track(self.current_track,type_="play")
|
||||||
bot_log.debug("Now playing")
|
bot_log.debug("Now playing")
|
||||||
if self.np_message_id:
|
if self.np_message_id:
|
||||||
|
try:
|
||||||
await self.np_message_id.delete()
|
await self.np_message_id.delete()
|
||||||
bot_log.debug("Deleted old np status")
|
bot_log.debug("Deleted old np status")
|
||||||
|
except discord.errors.NotFound:
|
||||||
|
pass
|
||||||
|
|
||||||
bot_log.debug("Created np status")
|
bot_log.debug("Created np status")
|
||||||
self.np_message_id = await ctx.send(embed=embed, file=img)
|
self.np_message_id = await ctx.send(embed=embed, file=img)
|
||||||
|
|
||||||
|
@command(name="q")
|
||||||
|
async def show_queue(self, ctx):
|
||||||
|
"""
|
||||||
|
User command to print the current queue
|
||||||
|
|
||||||
|
Deletes old `now playing` status message,
|
||||||
|
Creates a new one with up to date information.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx: discord.ext.commands.Context message context from command
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
None
|
||||||
|
"""
|
||||||
|
bot_log.debug("Deleted old queue messages")
|
||||||
|
for msg in self.show_queue_message_ids:
|
||||||
|
await msg.delete()
|
||||||
|
|
||||||
|
# need to do this in order to avoid errors when queue is modified during inspection
|
||||||
|
elems = []
|
||||||
|
for track in self.play_queue._queue:
|
||||||
|
elems.append(track)
|
||||||
|
|
||||||
|
for track in elems:
|
||||||
|
embed, img = self._build_embed_track(track,type_="queued")
|
||||||
|
bot_log.debug("Show queue")
|
||||||
|
|
||||||
|
bot_log.debug("Created queue message")
|
||||||
|
self.show_queue_message_ids.append(await ctx.send(embed=embed, file=img))
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def clear(self, ctx):
|
async def clear(self, ctx):
|
||||||
"""
|
"""
|
||||||
@ -803,6 +997,7 @@ class Plex(commands.Cog):
|
|||||||
None
|
None
|
||||||
"""
|
"""
|
||||||
self.play_queue = asyncio.Queue()
|
self.play_queue = asyncio.Queue()
|
||||||
|
self.loop_queue = None
|
||||||
bot_log.debug("Cleared queue")
|
bot_log.debug("Cleared queue")
|
||||||
await ctx.send(":boom: Queue cleared.")
|
await ctx.send(":boom: Queue cleared.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user