2019-11-22 15:03:21 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2019-11-22 21:13:07 +01:00
|
|
|
|
2019-11-22 15:03:21 +01:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
2019-11-22 20:12:37 +01:00
|
|
|
from commands import MergeRequests, UpdateAssignees, Comments, Merge, Test
|
2019-11-30 17:48:29 +01:00
|
|
|
from kontr_emails import Parser
|
2019-11-22 15:03:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
COMMANDS = {
|
2019-11-22 21:13:07 +01:00
|
|
|
"mrs": MergeRequests,
|
|
|
|
"update-assignees": UpdateAssignees,
|
|
|
|
"comments": Comments,
|
|
|
|
"merge": Merge,
|
|
|
|
"test": Test,
|
2019-11-22 15:03:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-23 16:51:21 +01:00
|
|
|
def print_usage():
|
2019-11-30 17:48:29 +01:00
|
|
|
print(f"{sys.argv[0]} <path_to_mbox> <homework> <correction> <deadline> <command>")
|
|
|
|
print()
|
|
|
|
print("Commands:")
|
2019-11-23 16:51:21 +01:00
|
|
|
print("\tmrs\t\t\tFetch files and create merge requests for them")
|
|
|
|
print("\tupdate-assignees\tUpdate assignees on MRs")
|
|
|
|
print("\tcomments\t\tFetch all comments on MRs")
|
|
|
|
print("\tmerge\t\t\tMerge all MRs")
|
|
|
|
print("\ttest\t\t\tDebugging function")
|
2019-11-30 17:48:29 +01:00
|
|
|
print("Format of date: %Y_%m%d_%H%M%S")
|
2019-11-23 16:51:21 +01:00
|
|
|
|
|
|
|
|
2019-11-22 15:03:21 +01:00
|
|
|
def main():
|
2019-11-30 17:48:29 +01:00
|
|
|
if len(sys.argv) != 6 or sys.argv[5] not in COMMANDS:
|
2019-11-23 16:51:21 +01:00
|
|
|
print_usage()
|
2019-11-22 15:03:21 +01:00
|
|
|
exit(2)
|
|
|
|
|
2019-11-30 17:48:29 +01:00
|
|
|
_, path, hw, correction, deadline, command = sys.argv
|
|
|
|
correction = correction == "y"
|
|
|
|
|
|
|
|
submissions = Parser(path, deadline, correction).parse(hw)
|
|
|
|
COMMANDS[command](submissions)()
|
2019-11-22 15:03:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|