forked from dymmond/backgrounder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.py
107 lines (88 loc) · 3.2 KB
/
github.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
#!/usr/bin/env python
import argparse
import os
import sys
import requests
URL = "https://api.github.com/repos/{}/{}/stargazers?per_page=100&page={}"
def colors(string, color):
"""Make things colorfull
Arguments:
string {str} -- String to apply colors on
color {int} -- value of color to apply
"""
return "\033[{}m{}\033[0m".format(color, string)
def fetch(username, reponame, fresh=False):
"""Fetch all the stargazers and put them in a file
Arguments:
username {str} -- Github Username
reponame {str} -- repositoryof the user to check.
"""
users = []
cnt = 1
stars = True
filename = "{}-{}.md".format(username, reponame)
while stars:
url = URL.format(username, reponame, cnt)
response = requests.get(url).json()
if response:
for i in response:
users.append(i["login"])
cnt += 1
else:
stars = False
if fresh:
with open(filename, "w") as f:
for i in users:
f.write(i)
f.write("\n")
return filename, users
def compare(filepath, users):
"""Compare two file to find out the missing stargazers
Arguments:
filepath {str} -- path to file storing
"""
if os.path.isfile(filepath):
with open(filepath) as f:
data = f.read().splitlines()
else:
print(colors("[!] File not found"))
traitor = set(data).difference(users)
return traitor
def main(username, reponame, path=None, fresh=False, check=False):
"""Main man
Arguments:
username {str} -- Github Username
reponame {str} -- repository name
Keyword Arguments:
path {str} -- Path to the file storing all the username (default: {None})
fresh {bool} -- Record all the stargazers (default: {False})
check {bool} -- Find the traitor (default: {False})
"""
print(colors("\n[~] Grabbing all the stargazers for: {}/{}".format(username, reponame), 93))
if fresh:
filename, users = fetch(username, reponame, fresh=True)
print(colors("\n[+] stargazers stored in: {}".format(filename), 92))
elif check:
filename, users = fetch(username, reponame)
traitor = compare(path, users)
if traitor:
print(colors("\n[+] The damn traitor is: {}".format(traitor), 94))
else:
print(colors("\n[+] No body double crossed you my man!! ", 93))
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("username", help="Name of the owner of the repository")
parser.add_argument("reponame", help="Name of the repository")
parser.add_argument("-f", "--fresh", help="Record all the stargazers", action="store_true")
parser.add_argument("-c", "--check", help="find the traitor")
args = parser.parse_args()
if args.fresh and args.check:
print(colors("\n[!] Don't get smart with me", 93))
sys.exit(1)
elif args.fresh:
main(args.username, args.reponame, fresh=True)
elif args.check:
main(args.username, args.reponame, args.check, check=True)
else:
print(colors("\n[!] No Operation Selected!! ", 91))
sys.exit(1)