-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisc.py
170 lines (145 loc) · 6.83 KB
/
disc.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# -*- coding: utf-8 -*-
#
# disc.py
#
# Copyright (C) 2020, Philipp Göldner <pgoeldner (at) stud.uni-heidelberg.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Discord Queue Bot der während der eLearning Challenge https://elearning.mathphys.info/ entstanden ist.
import discord
import json
import os
from discord.ext import commands
from collections import deque
member_queues = {}
enabled = {}
bot = commands.Bot(command_prefix="$")
bot.change_presence(activity=discord.Activity(type=discord.ActivityType.playing, name="mit anderen Bots"))
@bot.command(pass_context=True, help="Öffnet die Warteschlange")
async def start(ctx):
if set([role.name for role in ctx.message.author.roles]) & set(roles):
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="ob Studis warten"))
await ctx.send("Warteschlange ist nun geöffnet.")
enabled[ctx.message.guild.id] = True
@bot.command(pass_context=True, help="Schließt die Warteschlange")
async def stop(ctx):
if set([role.name for role in ctx.message.author.roles]) & set(roles):
await ctx.send("Warteschlange ist nun geschlossen.")
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.playing, name="mit anderen Bots"))
enabled[ctx.message.guild.id] = False
member_queues.pop(ctx.message.guild.id)
@bot.command(pass_context=True, help="Aktueller Status der Warteschlange")
async def status(ctx):
# todo this can fail
if ctx.message.guild.id in enabled:
if enabled[ctx.message.guild.id]:
await ctx.send("Warteschlange ist offen")
else:
await ctx.send("Warteschlange ist geschlossen")
else:
enabled[ctx.message.guild.id] = False
def get_displaynick(author):
nick = ""
if author.nick:
nick = author.nick
else:
nick = str(author).split("#")[0]
return nick
@bot.command(pass_context=True, help="Anstellen in Warteschlange")
async def wait(ctx):
author = ctx.message.author
guild = ctx.message.guild.id
if guild not in enabled:
enabled[guild] = False
if not enabled[guild]:
await ctx.send(f"Hallo {get_displaynick(author)} die Warteschlange ist aktuell geschlossen.")
else:
if guild not in member_queues:
member_queues[guild] = deque()
member_queues[guild].append(author)
await ctx.send(f"Hallo {get_displaynick(author)} du bist aktuell in Position {member_queues[guild].index(author)+1}. Mit $wait kannst du dir deine aktuelle Position anzeigen lassen")
else:
if author in member_queues[guild]:
await ctx.send(f"Hallo {get_displaynick(author)} du bist aktuell in Position {member_queues[guild].index(author)+1}. Mit $wait kannst du dir deine aktuelle Position anzeigen lassen")
else:
member_queues[guild].append(author)
await ctx.send(f"Hallo {get_displaynick(author)} du bist aktuell in Position {member_queues[guild].index(author)+1}. Mit $wait kannst du dir deine aktuelle Position anzeigen lassen")
@bot.command(pass_context=True)
async def leave(ctx, help="Verlassen der Warteschlange"):
author = ctx.message.author
guild = ctx.message.guild.id
if guild not in enabled:
enabled[guild] = False
if not enabled[guild]:
await ctx.send(f"Hallo {get_displaynick(author)} die Warteschlange ist aktuell geschlossen. Bei Fragen kannst du unseren 24/7 Chatbot befragen.")
else:
if guild not in member_queues:
await ctx.send(f"Hallo {get_displaynick(author)} du bist aktuell nicht in der Warteschlange. Du kannst dich mit $wait anstellen")
else:
if author in member_queues[guild]:
member_queues[guild].remove(author)
await ctx.send(f"Hallo {get_displaynick(author)} du hast die Warteschlange verlassen.")
else:
await ctx.send(f"Hallo {get_displaynick(author)} du bist aktuell nicht in der Warteschlange. Du kannst dich mit $wait anstellen")
@bot.command(pass_context=True)
async def next(ctx):
guild = ctx.message.guild.id
author = ctx.message.author
voice_state = author.voice
vc = voice_state.channel
if guild not in enabled:
enabled[guild] = False
if set([role.name for role in ctx.message.author.roles]) & set(roles):
if not enabled[guild]:
await ctx.send(f"Hallo {get_displaynick(author)}. Die Warteschlange ist aktuell noch geschlossen. Du kannst sie mit $start öffnen.")
else:
if len(member_queues[guild]) >= 1:
member = member_queues[guild].popleft()
else:
await ctx.send("Die Warteschlange ist leer :(")
try:
next_member = member_queues[guild].popleft()
member_queues[guild].appendleft(next_member)
await ctx.send(f"{get_displaynick(member)} ist dran. Der nächste ist {next_member.mention}")
await member.move_to(vc)
except IndexError:
await member.move_to(vc)
await ctx.send(f"{get_displaynick(member)} ist dran. Der nächste ist Niemand :(")
@bot.command(pass_context=True)
async def ls(ctx):
author = ctx.message.author
guild = ctx.message.guild.id
if guild not in enabled:
enabled[guild] = False
if set([role.name for role in ctx.message.author.roles]) & set(roles):
if not enabled[guild]:
await ctx.send(f"Hallo {get_displaynick(author)}. Die Warteschlange ist aktuell noch geschlossen. Du kannst sie mit $start öffnen.")
else:
if member_queues[guild]:
for number, member in enumerate(member_queues[guild]):
await ctx.send(f"{number+1}. {get_displaynick(member)}")
else:
await ctx.send(f"Es ist im Moment niemand in der Warteschlange!")
if os.path.isfile("config.json"):
with open("config.json") as f:
config = json.load(f)
else:
config = {}
api_key = config.get("api_key", os.environ.get("API_KEY"))
roles = config.get("roles", os.environ.get("ROLES"))
if not api_key:
raise RuntimeError("Config must contain api_key")
if not roles:
raise RuntimeError("Config must contain roles")
bot.run(api_key)