-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13706ba
commit 3e653bd
Showing
1 changed file
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
""" | ||
Check which repos have wrongly merged PR #1 for Feedback from GitHub Classroom | ||
Uses PyGithub (https://github.com/PyGithub/PyGithub) as API to GitHub: | ||
python3 -m pip install PyGithub | ||
PyGithub documentation: https://pygithub.readthedocs.io/en/latest/introduction.html | ||
Other doc on PyGithub: https://www.thepythoncode.com/article/using-github-api-in-python | ||
""" | ||
|
||
__author__ = "Sebastian Sardina - ssardina - [email protected]" | ||
__copyright__ = "Copyright 2024" | ||
|
||
import base64 | ||
import csv | ||
import re | ||
import traceback | ||
import os | ||
|
||
from argparse import ArgumentParser | ||
import util | ||
from typing import List | ||
|
||
# https://pygithub.readthedocs.io/en/latest/introduction.html | ||
from github import Github, Repository, Organization, GithubException | ||
|
||
import logging | ||
import coloredlogs | ||
|
||
# get the TIMEZONE to be used - works with Python < 3.9 via pytz and 3.9 via ZoneInfo | ||
TIMEZONE_STR = "Australia/Melbourne" | ||
from datetime import datetime | ||
|
||
# this should work Python 3.9+ | ||
from zoneinfo import ZoneInfo | ||
|
||
TIMEZONE = ZoneInfo(TIMEZONE_STR) | ||
|
||
|
||
LOGGING_FMT = "%(asctime)s %(levelname)-8s %(message)s" | ||
LOGGING_DATE = "%a, %d %b %Y %H:%M:%S" | ||
LOGGING_LEVEL = logging.INFO | ||
logging.basicConfig(format=LOGGING_FMT, level=LOGGING_LEVEL, datefmt=LOGGING_DATE) | ||
coloredlogs.install(level=LOGGING_LEVEL, fmt=LOGGING_FMT, datefmt=LOGGING_DATE) | ||
|
||
DATE_FORMAT = "%-d/%-m/%Y %-H:%-M:%-S" # RMIT Uni (Australia) | ||
CSV_HEADER = ["REPO_ID", "AUTHOR", "COMMITS", "ADDITIONS", "DELETIONS"] | ||
|
||
GH_URL_PREFIX = "https://github.com/" | ||
|
||
CSV_MERGED = "merged_pr.csv" | ||
|
||
def make_template(mapping): | ||
return f"""=================================================================== | ||
STUDENT NUMBER: {mapping['STUDENT NO']} | ||
STUDENT FULL NAME: {mapping['Preferred Name']} | ||
GITHUB USER: {mapping['GHU']} | ||
GIT REPO: {mapping['URL-REPO']} | ||
Timestamp submission: {mapping['TIMESTAMP']} | ||
COMMIT MARKED: {mapping['COMMIT']} | ||
NO OF COMMITS: {mapping['NOCOM']} | ||
COMMIT RATIO (<1 is bad) {mapping['RATIO']} | ||
Days late (if any): {mapping['DYS LATE']} | ||
CERTIFIED (no certification = 0 marks)? {mapping['CERTIFICATION']} | ||
=================================================================== | ||
RAW POINTS | ||
Q1: {mapping['Q1-TOT']} | ||
Q2: {mapping['Q2-TOT']} | ||
Q3: {mapping['Q3-TOT']} | ||
=================================================================== | ||
SOFTWARE ENGINEERING PENALTIES | ||
MERGED FEEDBACK PR: {mapping['PR-MERG']} | ||
COMMITS WITH INVALID USERNAME: {mapping['BAD-USR']} | ||
COMMIT QUALITY: {mapping['SEPROB?']} | ||
=================================================================== | ||
SUMMARY OF RESULTS | ||
RAW POINTS COLLECTED (out of 3): {mapping['POINTS']} | ||
SE WEIGHT ADJ (1 if none): {mapping['WEIGHT']} | ||
=================================================================== | ||
LATE PENALTY % (if any): {mapping['LATE PEN']} | ||
FINAL MARKS (out of 100%): {mapping['MARKS']} | ||
GRADE: {mapping['GRADE']} | ||
MARKING REPORT: See next comment | ||
NOTES (if any) {mapping['NOTE']} | ||
""" | ||
|
||
def load_comment_dictionary(file_path: str) -> dict: | ||
""" | ||
Load the comment dictionary from a CSV file | ||
""" | ||
comment_dict = {} | ||
with open(file_path, "r") as f: | ||
reader = csv.DictReader(f) | ||
for row in reader: | ||
comment_dict[row["GHU"]] = make_template(row) | ||
return comment_dict | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = ArgumentParser(description="Merge PRs in multiple repos") | ||
parser.add_argument("REPO_CSV", help="List of repositories to post comments to.") | ||
parser.add_argument("MARKING_CSV", help="List of student results.") | ||
parser.add_argument("REPORT_FOLDER", help="Folder containing student report files.") | ||
parser.add_argument( | ||
"--repos", nargs="+", help="if given, only the teams specified will be parsed." | ||
) | ||
parser.add_argument( | ||
"-t", | ||
"--token-file", | ||
help="File containing GitHub authorization token/password.", | ||
) | ||
args = parser.parse_args() | ||
|
||
now = datetime.now(TIMEZONE).isoformat() | ||
logging.info(f"Starting on {TIMEZONE}: {now}\n") | ||
|
||
# Get the list of TEAM + GIT REPO links from csv file | ||
list_repos = util.get_repos_from_csv(args.REPO_CSV, args.repos) | ||
|
||
if len(list_repos) == 0: | ||
logging.error( | ||
f'No repos found in the mapping file "{args.REPO_CSV}". Stopping.' | ||
) | ||
exit(0) | ||
|
||
comments = load_comment_dictionary(args.MARKING_CSV) | ||
|
||
############################################### | ||
# Authenticate to GitHub | ||
############################################### | ||
if not args.token_file and not (args.user or args.password): | ||
logging.error("No authentication provided, quitting....") | ||
exit(1) | ||
try: | ||
g = util.open_gitHub(token_file=args.token_file) | ||
except: | ||
logging.error( | ||
"Something wrong happened during GitHub authentication. Check credentials." | ||
) | ||
exit(1) | ||
|
||
############################################### | ||
# Process each repo in list_repos | ||
############################################### | ||
authors_stats = [] | ||
no_repos = len(list_repos) | ||
no_merged = 0 | ||
no_errors = 0 | ||
merged_pr = [] | ||
for k, r in enumerate(list_repos): | ||
repo_id = r["REPO_ID"] | ||
repo_name = r["REPO_NAME"] | ||
repo_url = f"https://github.com/{repo_name}" | ||
logging.info(f"Processing repo {k}/{no_repos}: {repo_id} ({repo_url})...") | ||
|
||
repo = g.get_repo(repo_name) | ||
try: | ||
pr_feedback = repo.get_issue(number=1) # get the first PR - feedback | ||
comment = pr_feedback.create_comment(comments[repo_id]) | ||
with open(os.path.join(args.REPORT_FOLDER,f"{repo_id}.txt"),"r") as report: | ||
report_text = report.read() | ||
comment = pr_feedback.create_comment(report_text) | ||
except GithubException as e: | ||
logging.error(f"\t Error in repo {repo_name}: {e}") | ||
no_errors += 1 | ||
|
||
logging.info( | ||
f"Finished! Total repos: {no_repos} - Errors: {no_errors}." | ||
) |