-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommitGenerator.py
40 lines (32 loc) · 1.34 KB
/
CommitGenerator.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
from git import Repo
from NameGenerator import generate_full_name, get_submission_date
import os
class CommitGenerator:
def __init__(self, path):
self.repoPath = path
self.repo = Repo(path)
self.repoIndex = self.repo.index
def _generate_commit_message(self, title, date):
date_string = date.strftime('%d-%b-%Y, at %X')
return f'Solution for {title} done on {date_string}'
def _generate_code_file(self, submission):
code = submission['code']
full_name = generate_full_name(submission)
file_path = os.path.join(self.repoPath, full_name)
os.makedirs(os.path.dirname(file_path), exist_ok=True)
if not os.path.isfile(file_path):
with open(file_path, 'w') as new_file:
new_file.write(code)
return full_name
return None
def _generate_commit(self, file_name, title, date):
msg = self._generate_commit_message(title, date)
self.repoIndex.add([file_name])
self.repoIndex.commit(msg, commit_date=date, author_date=date)
def submit(self, submission):
date = get_submission_date(submission)
file_name = self._generate_code_file(submission)
if file_name is not None:
self._generate_commit(file_name, submission['title'], date)
return True
return False