-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathutils.py
107 lines (83 loc) · 3.07 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import asyncio
from config import config
# A dictionary that remembers which guild belongs to which audiocontroller
guild_to_audiocontroller = {}
# A dictionary that remembers which settings belongs to which guild
guild_to_settings = {}
def get_guild(bot, command):
"""Gets the guild a command belongs to. Useful, if the command was sent via pm."""
if command.guild is not None:
return command.guild
for guild in bot.guilds:
for channel in guild.voice_channels:
if command.author in channel.members:
return guild
return None
async def connect_to_channel(guild, dest_channel_name, ctx, switch=False, default=True):
"""Connects the bot to the specified voice channel.
Args:
guild: The guild for witch the operation should be performed.
switch: Determines if the bot should disconnect from his current channel to switch channels.
default: Determines if the bot should default to the first channel, if the name was not found.
"""
for channel in guild.voice_channels:
if str(channel.name).strip() == str(dest_channel_name).strip():
if switch:
try:
await guild.voice_client.disconnect()
except:
await ctx.send(config.NOT_CONNECTED_MESSAGE)
await channel.connect()
return
if default:
try:
await guild.voice_channels[0].connect()
except:
await ctx.send(config.DEFAULT_CHANNEL_JOIN_FAILED)
else:
await ctx.send(config.CHANNEL_NOT_FOUND_MESSAGE + str(dest_channel_name))
async def is_connected(ctx):
try:
voice_channel = ctx.guild.voice_client.channel
return voice_channel
except:
return None
async def play_check(ctx):
sett = guild_to_settings[ctx.guild]
cm_channel = sett.get('command_channel')
vc_rule = sett.get('user_must_be_in_vc')
if cm_channel != None:
if cm_channel != ctx.message.channel.id:
await ctx.send(config.WRONG_CHANNEL_MESSAGE)
return False
if vc_rule == True:
author_voice = ctx.message.author.voice
bot_vc = ctx.guild.voice_client.channel
if author_voice == None:
await ctx.send(config.USER_NOT_IN_VC_MESSAGE)
return False
elif ctx.message.author.voice.channel != bot_vc:
await ctx.send(config.USER_NOT_IN_VC_MESSAGE)
return False
def format_time(duration):
if not duration:
return "00:00"
hours = duration // 60 // 60
minutes = duration // 60 % 60
seconds = duration % 60
# Looks like `h:mm:ss`
return "{}{}{:02d}:{:02d}".format(
hours if hours else "",
":" if hours else "",
minutes,
seconds
)
class Timer:
def __init__(self, callback):
self._callback = callback
self._task = asyncio.create_task(self._job())
async def _job(self):
await asyncio.sleep(config.VC_TIMEOUT)
await self._callback()
def cancel(self):
self._task.cancel()