forked from potacho/damned_pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipeline.py
More file actions
185 lines (160 loc) · 6 KB
/
pipeline.py
File metadata and controls
185 lines (160 loc) · 6 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#imports
import requests
import pandas as pd
import re
import json
import math
import os
from dotenv import load_dotenv
#Inputs
load_dotenv('../.env')
TOKEN = os.environ.get("API_TOKEN")
API_TOKEN = TOKEN #API TOKEN (REMEMBER: do not push these to your repo)
USERNAME = "silviluliuma" #USERNAME
BASE_URL = 'https://api.github.com/'
KEY = 'repos/'
OWNER = 'ih-datapt-mad/'
REPO = "dataptmad0923_labs/" #LAB_REPOSITORY
SEARCH = 'search/issues?q=repo:'+OWNER+REPO+'+type:pr+state:{}'
PULLS = 'pulls?page={}&per_page=100&state={}'
COMMITS = 'pulls/{}/commits'
STATE = 'open'
print(BASE_URL + KEY + OWNER + REPO + PULLS)
field_list1 = ['number',
'title',
'state',
'created_at',
'updated_at',
'closed_at',
'html_url',
'base.repo.full_name',
'base.ref',
'head.repo.full_name',
'head.ref',
'head.repo.pushed_at']
field_list2 = ['student_name',
'number',
'lab_name',
'state',
'lab_status',
'created_at',
'updated_at',
'closed_at',
'html_url',
'base.repo.full_name',
'base.ref',
'head.repo.full_name',
'head.ref',
'head.repo.pushed_at']
field_sort1 = ['lab_status',
'lab_name',
'student_name']
field_name1 = ['Student Name',
'PR Number',
'Lab Name',
'PR Status',
'Lab Status',
'PR Created at',
'PR Updated at',
'PR Closed at',
'PR URL',
'base repository',
'base',
'head repository',
'compare',
'Pushed at']
#Functions
def pages(base_url, search, state, username, api_token):
pages = requests.get(base_url + search.format(state), auth=(username,api_token)).json()['total_count']
if STATE == 'open':
pages = math.ceil(pages/100)
return pages
elif STATE == 'closed':
pages = math.ceil(pages/100)
return pages
def get_commits(base_url, key, owner, repo, commits, pull, username, api_token):
r_commits = requests.get(base_url + key + owner + repo + commits.format(pull),
auth=(username, api_token)).json()
df_commits = pd.json_normalize(r_commits)
list_commits = list(df_commits['commit.message'])
commit = list(set([commit if commit == 'lab-finished' else 'lab-started' for commit in list_commits]))
if 'lab-finished' in commit:
return 'lab-finished'
else:
return 'lab-started'
def student_name(x):
if ']' in x:
x = x.split(']')
x = x[1].replace('_', ' ').strip()
len_x = len(x.split(' '))
if len_x > 1:
x = re.findall('\w[a-zA-Z áéíóúÁÉÍÓÚñÑ-]+', x)
x = x[0].strip()
return x
else:
x = 'No student name provided'
return x
else:
x = 'Pull request is not properly named'
return x
def lab_name(x):
if ']' in x:
x = x.split(']')
x = x[0] + ']'
x = x.strip()
lower_case = re.findall('[A-ZÁÉÍÓÚñÑ]+', x)
if x[0] == '[' and x[-1] == ']' and ' ' not in x and len(lower_case) == 0:
return x
else:
x = 'Lab format name is incorrect'
return x
else:
x = 'Pull request is not properly named'
return x
def time_parser(x):
try:
x = x.strip()
x = re.findall('[0-9]+', x)
x = ''.join(x)
x = pd.to_datetime(x, format='%Y%m%d%H%M%S', errors='coerce')
return x
except:
return 'Nothing pushed yet'
# Pipeline functions
def get_pulls(base_url, key, owner, repo, pulls, search, state, username, api_token, field_list):
pulls_list = []
max_pages = pages(base_url, search, state, username, api_token)
for i in range(max_pages):
r_pulls = requests.get(base_url + key + owner + repo + pulls.format(i+1, state),
auth=(username, api_token)).json()
df_pulls = pd.json_normalize(r_pulls)
pulls_list.append(df_pulls)
df_pulls = pd.concat(pulls_list)
df_pulls = df_pulls[field_list]
return df_pulls
def df_status(df_pulls, base_url, key, owner, repo, commits, username, api_token, field_list):
df_pulls['student_name'] = df_pulls['title'].apply(student_name)
df_pulls['lab_name'] = df_pulls['title'].apply(lab_name)
df_pulls['created_at'] = df_pulls['created_at'].apply(time_parser)
df_pulls['updated_at'] = df_pulls['updated_at'].apply(time_parser)
df_pulls['head.repo.pushed_at'] = df_pulls['head.repo.pushed_at'].apply(time_parser)
df_pulls['lab_status'] = df_pulls.apply(lambda col: get_commits(base_url,
key,
owner,
repo,
commits,
col['number'],
username,
api_token), axis=1)
df_status = df_pulls[field_list]
return df_status
def create_csv(df_status, field_sort, field_name):
df_csv = df_status.sort_values(by=field_sort, ascending=False)
df_csv.columns = field_name
df_csv.to_csv('./data/labs_status.csv', index=False)
return df_csv
DF_PULLS = get_pulls(BASE_URL, KEY, OWNER, REPO, PULLS, SEARCH, STATE, USERNAME, API_TOKEN, field_list1)
DF_STATUS = df_status(DF_PULLS, BASE_URL, KEY, OWNER, REPO, COMMITS, USERNAME, API_TOKEN, field_list2)
DF_CSV = create_csv(DF_STATUS, field_sort1, field_name1)
print("Created successfully")
DF_CSV