-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanual_fixes.py
67 lines (57 loc) · 2.66 KB
/
manual_fixes.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
# pylint: disable=missing-module-docstring,missing-function-docstring
from contextlib import suppress
from server.routers.model import StructureContainer
def remove_course(structure: dict[str, StructureContainer], course: str):
"""indescriminantly remove a course from structure"""
for item, collection in structure.items():
if item == "Rules":
continue
for container in collection["content"]:
try:
del structure[item]["content"][container]["courses"][course]
return structure[item]
except KeyError:
pass
return None
def fix_3784(structure: dict[str, StructureContainer]):
mutated_item = remove_course(structure, "ECON1202")
if mutated_item:
with suppress(StopIteration):
core_name = next(filter(lambda a: "core" in a.lower(), mutated_item.keys()))
mutated_item[core_name]["UOC"] -= 6
elective_name = next(filter(lambda a: "prescribed" in a.lower(), mutated_item.keys()))
mutated_item[elective_name]["UOC"] += 6
return structure
def fix_3673(structure: dict[str, StructureContainer]):
mutated_item = remove_course(structure, "ECON1202")
if mutated_item:
with suppress(StopIteration):
core_name = next(filter(lambda a: "core" in a.lower(), mutated_item['content'].keys()))
mutated_item['content'][core_name]["UOC"] -= 6
mutated_item = remove_course(structure, "ECON1203")
if mutated_item:
with suppress(StopIteration):
core_name = next(filter(lambda a: "core" in a.lower(), mutated_item['content'].keys()))
mutated_item['content'][core_name]["UOC"] -= 6
return structure
def fix_3785(structure: dict[str, StructureContainer]):
remove_course(structure, "COMP1911")
remove_course(structure, "ENGG1811")
# eject 1081 from CS
with suppress(StopIteration, KeyError):
comp_major = next(filter(lambda a: "COMP" in a, structure.keys()))
core_name = next(filter(lambda a: "core" in a.lower(), structure[comp_major]["content"].keys()))
del structure[comp_major]["content"][core_name]["courses"]["MATH1081"]
mutated_item = remove_course(structure, "COMP4920")
if mutated_item:
with suppress(StopIteration):
core_name = next(filter(lambda a: "core" in a.lower(), mutated_item.keys()))
mutated_item[core_name]["UOC"] -= 12
return structure
def apply_manual_fixes(structure: dict[str, StructureContainer], program_code: str):
fixes = {
"3784": fix_3784,
"3785": fix_3785,
"3673": fix_3673,
}
return fixes.get(program_code, lambda a: a)(structure)