-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuser-activity.py
244 lines (214 loc) · 7.41 KB
/
user-activity.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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import argparse
import sys
import requests
import datetime
import time
def run_graphql_query(query: str, variables: dict, token: str, retry: bool = True) -> dict:
"""
This function submits a graphql query and returns the results as a
dictionary.
"""
s = requests.Session()
retries = requests.adapters.Retry(total = 8, backoff_factor = 2, status_forcelist = [504])
s.mount('https://', requests.adapters.HTTPAdapter(max_retries = retries))
headers = {
'Authorization' : 'bearer {}'.format(token),
# See
# https://github.blog/2021-11-16-graphql-global-id-migration-update/
'X-Github-Next-Global-ID': '1'
}
request = s.post(
url = 'https://api.github.com/graphql',
json = {"query" : query, "variables" : variables },
headers = headers)
rate_limit = request.headers.get('X-RateLimit-Remaining')
if rate_limit and int(rate_limit) < 10:
reset_time = int(request.headers['X-RateLimit-Reset'])
while reset_time - int(time.time()) > 0:
time.sleep(60)
print("Waiting until rate limit reset", reset_time - int(time.time()), 'seconds remaining')
if request.status_code == 200:
if 'data' not in request.json():
print(request.json())
sys.exit(1)
return request.json()['data']
elif retry:
return run_graphql_query(query, variables, token, False)
else:
raise Exception(
"Failed to run graphql query\nquery: {}\nerror: {}".format(query, request.json()))
def format_date(date):
return date.strftime("%Y-%m-%dT%H:%M:%S")
def get_user_issue_comments(user, token, start_date, end_date):
issue_query = """
query ($query: String!, $after: String ) {
search (query: $query, type: ISSUE, first: 100, after: $after) {
issueCount
pageInfo {
hasNextPage
endCursor
}
nodes {
... on Issue {
id
url
comments (first: 100) {
totalCount
nodes {
url
author {
login
}
}
}
}
}
}
}
"""
formatted_start_date = format_date(start_date)
formatted_end_date = format_date(end_date)
variables = {
"query" : f"type:issue org:llvm commenter:{user} created:{formatted_start_date}..{formatted_end_date}"
}
issues = []
has_next_page = True
while has_next_page:
data = run_graphql_query(issue_query, variables, token)
if data['search']['issueCount'] > 1000:
print("Error: too many commented issues. Please specify a shorter time-period.")
sys.exit(1)
for issue in data['search']['nodes']:
if issue['comments']['totalCount'] > 100:
issues.append(issue['url'])
else:
for c in issue['comments']['nodes']:
if c['author']['login'] != user:
continue
issues.append(c['url'])
has_next_page = data['search']['pageInfo']['hasNextPage']
if has_next_page:
variables['after'] = data['search']['pageInfo']['endCursor']
return issues
def get_user_commits(user, token, start_date, end_date):
variables = {
"owner" : 'llvm',
'user' : user,
'start_date' : format_date(start_date),
'end_date' : format_date(end_date)
}
user_query = """
query ($user: String!) {
user(login: $user) {
id
}
}
"""
data = run_graphql_query(user_query, variables, token)
variables['user_id'] = data['user']['id']
query = """
query ($owner: String!, $user_id: ID!, $start_date: GitTimestamp!, $end_date: GitTimestamp!){
organization(login: $owner) {
repositories (first: 100){
nodes {
ref(qualifiedName: "main") {
target {
... on Commit {
history(since: $start_date, until: $end_date, author: {id: $user_id }) {
totalCount
nodes {
url
}
}
}
}
}
}
}
}
}
"""
data = run_graphql_query(query, variables, token)
commits = []
for repo in data['organization']['repositories']['nodes']:
if not repo['ref']:
continue
if repo['ref']['target']['history']['totalCount'] > 1000:
print("Error: too many commits. Please specify a shorter time-period.")
for commit in repo['ref']['target']['history']['nodes']:
commits.append(commit['url'])
return commits
def get_user_activity(user, token, start_date, end_date):
user_query = """
query {
organization(login: "llvm") {
id
}
}
"""
data = run_graphql_query(user_query, {}, token)
variables = {
"org" : data['organization']['id'],
"user" : user,
"start_date" : format_date(start_date),
"end_date" : format_date(end_date)
}
query = """
query ($user: String!, $org:ID!, $start_date: DateTime!, $end_date: DateTime!){
user(login: $user) {
contributionsCollection(organizationID:$org, from:$start_date, to:$end_date) {
issueContributions(first: 100) {
totalCount
nodes {
issue {
url
}
}
}
pullRequestContributions(first: 100) {
totalCount
nodes {
pullRequest {
url
}
}
}
}
}
}
"""
results = {
'issues': [],
'prs' : [],
'commits' : []
}
data = run_graphql_query(query, variables, token)
for issue in data['user']['contributionsCollection']['issueContributions']['nodes']:
results['issues'].append(issue['issue']['url'])
for pr in data['user']['contributionsCollection']['pullRequestContributions']['nodes']:
results['prs'].append(pr['pullRequest']['url'])
return results
parser = argparse.ArgumentParser()
parser.add_argument('user')
parser.add_argument('--token')
parser.add_argument('--start-date', type=lambda s: datetime.datetime.strptime(s, '%Y-%m-%dT%H:%M:%S'))
parser.add_argument('--end-date', type=lambda s: datetime.datetime.strptime(s, '%Y-%m-%dT%H:%M:%S'))
# --start-date 2024-04-02T17:00:00 --end-date 2024-04-03T14:00:00
args = parser.parse_args()
token = args.token
end_date = args.end_date if args.end_date else datetime.datetime.now()
start_date = args.start_date if args.start_date else end_date - datetime.timedelta(days = 365)
user = args.user
activity = get_user_activity(user, token, start_date, end_date)
print ("Created Issues:")
for i in activity['issues']:
print(i)
print ("Issue Comments:")
for i in get_user_issue_comments(user, token, start_date, end_date):
print(i)
print ("Created Pull Requests:")
for p in activity['prs']:
print(p)
print ("Commits:")
for c in get_user_commits(user, token, start_date, end_date):
print(c)