-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfshelper.py
259 lines (220 loc) · 8.2 KB
/
fshelper.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# -*- coding: utf-8 -*-
import discord
import json
import asyncio
import collections
import queue
from datetime import date
from discord.ext import commands
konsenslevels = {
"1️⃣": {
"number": 1,
"long": "Konsens ohne Vorbehalt"
},
"2️⃣": {
"number": 2,
"long": "Konsens mit leichten Bedenken"
},
"3️⃣": {
"number": 3,
"long": "Konsens mit Enthaltung"
},
"4️⃣": {
"number": 4,
"long": "Konsens mit beiseite stehen"
},
"5️⃣": {
"number": 5,
"long": "Schwere Bedenken"
},
"❌": {
"number": 6,
"long": "VETO"
},
}
KONSENS_STANDARD_TIMEOUT = 60
waitqueue = []
direktdazuqueue = []
bot = commands.Bot(command_prefix="fs!")
@bot.event
async def on_ready():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print('------')
@bot.command(pass_context=True, help="Erstellt/postet den CodiMD-Link zur heutigen Sitzung")
async def protokoll(ctx):
if ctx.message.author == bot.user:
return
#get todays date
today = str(date.today())
#create a CodiMD link for todays date
protocollink = "https://codimd.mathphys.stura.uni-heidelberg.de/FSSitzung-" + today
#paste the link into Discord chat
message = "Hier der Link zur heutigen Sitzung, automagisch erstellt vom FSHelper: \n" + protocollink
await ctx.send(message)
@bot.command(pass_context=True, help="Konsensumfrage <time>")
async def konsens(ctx, timeout=KONSENS_STANDARD_TIMEOUT):
# delete the invocating message but keep track of the reference
replied_to = await ctx.fetch_message(ctx.message.reference.message_id
) if ctx.message.reference else None
await ctx.message.delete()
if ctx.message.author == bot.user:
return
chosen_timeout = int(timeout)
message_text = (
f"Es wird ein Konsens von {ctx.message.author.mention} abgefragt!\n\n"
f":alarm_clock: Bitte stimmt in den nächsten {chosen_timeout}s ab!\n\n"
"*(Um den Konsens abzubrechen, einfach irgendeine Nachricht in den Chat posten)*"
)
message = None
if replied_to:
message = await replied_to.reply(message_text)
else:
message = await ctx.send(message_text)
# add the initial reactions
for emoji, _ in konsenslevels.items():
await message.add_reaction(emoji)
def check(author):
def inner_check(message):
return message.author == author and message.channel == ctx.channel
return inner_check
try:
mode = await bot.wait_for('message',
check=check(ctx.author),
timeout=chosen_timeout)
interruptor = mode.author
await ctx.send(f"{interruptor.mention} hat den Konsens unterbrochen!")
except asyncio.TimeoutError:
await message.edit(
content=("Der Konsens wurde abgefragt! :rocket:\n\n"
":ballot_box: Zähle stimmen und stelle fest:"))
# remove the initial reactions from the bot
for emoji, _ in reversed(list(konsenslevels.items())):
await message.remove_reaction(emoji, bot.user)
# update the message
message = await message.channel.fetch_message(message.id)
votes = message.reactions
# filter only defined mappings
votes = [
konsenslevels[reaction.emoji] for reaction in votes
if konsenslevels.get(reaction.emoji)
]
# get the worst one from it
if votes:
worst_vote = max(votes, key=lambda x: x["number"])
if worst_vote["number"] < 5:
await message.edit(content=message.content +
"\n\n:arrow_right: Es wurde ein " +
worst_vote["long"] + " erreicht.")
else:
await message.edit(
content=message.content + "\n\n:no_entry_sign: " +
worst_vote["long"] +
", es wurde kein Konsens erreicht. Zurück zur Besprechung!"
)
else:
await ctx.send("Es hat niemand abgestimmt!")
@bot.command(pass_context=True, help="Meldung")
async def m(ctx):
global waitqueue
if ctx.message.author == bot.user:
return
waitqueue.append(ctx.message)
await ctx.message.add_reaction("✅")
@bot.command(pass_context=True, help="Nächste Meldung drannehmen")
async def next(ctx):
global waitqueue
if ctx.message.author == bot.user:
return
try:
message = direktdazuqueue.pop(0)
await message.remove_reaction("✅", bot.user)
await message.add_reaction("☑️")
message = f"{message.author.mention} wollte direkt dazu was sagen!"
if direktdazuqueue:
message += f"\n (und {direktdazuqueue[0].author.mention} auch, bereite dich also vor!)"
elif not direktdazuqueue and waitqueue:
message += f"\n (Danach ist {waitqueue[0].author.mention} dran, bereite dich schon mal vor!)"
except IndexError:
try:
message = waitqueue.pop(0)
await message.remove_reaction("✅", bot.user)
await message.add_reaction("☑️")
message = f"Als nächstes kommt {message.author.mention} dran."
if waitqueue:
message += f"\n (Danach ist {waitqueue[0].author.mention} dran, bereite dich schon mal vor!)"
except IndexError:
message = "Es gibt keine neuen Meldungen."
await ctx.send(message)
@bot.command(pass_context=True, help="Zeigt alle ausstehenden Meldungen an")
async def meldungen(ctx):
global waitqueue
if ctx.message.author == bot.user:
return
embed = discord.Embed(title="Meldungen",
color=0x00ff00) # description here
direktdazu = ""
for i, elem in enumerate(direktdazuqueue):
direktdazu += f"{i + 1}. {elem.author.display_name}\n"
if direktdazu:
embed.add_field(name="Direkt Dazu:", value=direktdazu, inline=False)
message = ""
for i, elem in enumerate(waitqueue):
message += f"{i + 1}. {elem.author.display_name}\n"
if not message:
message = "Es stehen keine Meldungen aus."
embed.add_field(name="Ausstehende Meldungen:", value=message, inline=False)
await ctx.send(embed=embed)
@bot.command(pass_context=True, help="Ziehe die jüngste Meldung zurück")
async def zz(ctx):
global waitqueue
if ctx.message.author == bot.user:
return
remove_user = -1
for i in range(len(waitqueue)):
if waitqueue[i].author == ctx.message.author:
remove_user = i
if remove_user != -1:
msg = waitqueue.pop(remove_user)
await msg.delete()
await ctx.message.add_reaction("☑️")
@bot.command(pass_context=True, help="Direkt Dazu was sagen (hat Priorität)")
async def dd(ctx):
global direktdazuqueue
if ctx.message.author == bot.user:
return
direktdazuqueue.append(ctx.message)
await ctx.message.add_reaction("✅")
@bot.command(pass_context=True, help="Ziehe die jüngste Meldung 'Direkt Dazu' zurück")
async def ddzz(ctx):
global direktdazuqueue
if ctx.message.author == bot.user:
return
remove_user = -1
for i in range(len(direktdazuqueue)):
if direktdazuqueue[i].author == ctx.message.author:
remove_user = i
if remove_user != -1:
msg = direktdazuqueue.pop(remove_user)
await msg.delete()
await ctx.message.add_reaction("☑️")
@bot.command(pass_context=True, help="Zustimmung aussprechen")
async def zs(ctx):
if ctx.message.author == bot.user:
return
replied_to = await ctx.fetch_message(ctx.message.reference.message_id
) if ctx.message.reference else None
msgauthor = ctx.message.author
await ctx.message.delete()
message = f"{msgauthor.mention} stimmt zu!"
if replied_to:
message = await replied_to.reply(message)
else:
message = await ctx.send(message)
with open("config.json") as f:
config = json.load(f)
api_key = config.get("api_key")
if not api_key:
raise RuntimeError("Config must contain api_key")
bot.run(api_key)