import discord
class ColdCall():
- def __init__ (self):
+ def __init__ (self, course = ''):
+ self.course = course
self.today = str(datetime.date(datetime.now()))
# how much less likely should it be that a student is called upon?
- self.weight = 2
+ self.weight = 2
+ self.__set_filenames()
+
+ def __set_filenames(self):
# filenames
- self.__fn_studentinfo = "data/student_information.tsv"
- self.__fn_daily_calllist = f"data/call_list-{self.today}.tsv"
- self.__fn_daily_attendance = f"data/attendance-{self.today}.tsv"
+ self.__fn_studentinfo = f"data/{self.course}/student_information.tsv"
+ self.__fn_daily_calllist = f"data/{self.course}/call_list-{self.today}.tsv"
+ self.__fn_daily_attendance = f"data/{self.course}/attendance-{self.today}.tsv"
def __load_prev_questions(self):
previous_questions = defaultdict(int)
- for fn in listdir("./data/"):
+ for fn in listdir(f"./data/{self.course}/"):
if re.match("call_list-\d{4}-\d{2}-\d{2}.tsv", fn):
- with open(f"./data/{fn}", 'r') as f:
+ with open(f"./data/{self.course}/{fn}", 'r') as f:
for row in DictReader(f, delimiter="\t"):
if not row["answered"] == "FALSE":
previous_questions[row["discord_name"]] += 1
preferred_names = {}
with open(self.__fn_studentinfo, 'r') as f:
for row in DictReader(f, delimiter="\t"):
- preferred_names[row["Your username on the class Discord server"]] = row["Name you'd like to go by in class"]
+ preferred_names[row["discord_name"]] = row["name"]
if selected_student in preferred_names:
return preferred_names[selected_student]
coldcall_message = f"@{selected_student}, you're up!"
return coldcall_message
+ def update_course(self, course_name):
+ self.course = course_name
+ self.__set_filenames()
+
# cc = ColdCall()
# test_student_list = ["jordan", "Kristen Larrick", "Madison Heisterman", "Maria.Au20", "Laura (Alia) Levi", "Leona Aklipi", "anne", "emmaaitelli", "ashleylee", "allie_partridge", "Tiana_Cole", "Hamin", "Ella Qu", "Shizuka", "Ben Baird", "Kim Do", "Isaacm24", "Sam Bell", "Courtneylg"]
from coldcall import ColdCall
import re
import discord
+import config
## create the coldcall object
cc = ColdCall()
async def on_ready(self):
print(f'Logged on as {self.user}! Ready for class!')
- async def on_message(self, message):
+ async def on_message(self, message, voice_channel = 'Class Sessions'):
if message.author == self.user:
return
if message.content.startswith('$next'):
- classroom = discord.utils.get(message.guild.voice_channels, name='Classroom Voice')
-
+ if message.channel.category:
+ if cc.course != message.channel.category:
+ cc.update_course(message.channel.category)
+ classroom = [x for x in message.guild.voice_channels if x.name == voice_channel and x.category_id == message.channel.category_id][0]
+
present_students = []
for member in classroom.members:
if 'Students' in [r.name for r in member.roles]:
if len(present_students) < 1:
msg_text = "I don't see any students currently in the Classroom Voice channel!"
else:
+ if cc is None:
+ print('hi')
msg_text = cc.coldcall(present_students)
await message.channel.send(msg_text)
intents.presences = True
ccb = ColdCallBot(intents=intents)
-ccb.run('CHANGEME')
-
+ccb.run(config.key)