This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
/
gitim.py
114 lines (100 loc) · 4.55 KB
/
gitim.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
#!/usr/bin/env python3
# -*- coding: utf8 -*-
from __future__ import print_function
from getpass import getpass
from argparse import ArgumentParser
from os import chdir, path, makedirs, pardir, environ
from subprocess import call, Popen
from functools import partial
from platform import python_version_tuple
from github import Github
if python_version_tuple()[0] == u'2':
input = lambda prompt: raw_input(prompt.encode('utf8')).decode('utf8')
__author__ = u'"Mustafa Hasturk"'
__version__ = '2.1.0'
class Gitim():
def __init__(self):
print(u"""
.--. .--. __ __ ___
.--./) |__| |__|| |/ `.' `.
/.''\\ .--. .| .--.| .-. .-. '
| | | | | | .' |_ | || | | | | |
\`-' / | | .' || || | | | | |
/("'` | |'--. .-'| || | | | | |
\ '---. | | | | | || | | | | |
/'""'.\|__| | | |__||__| |__| |__|
|| || | '.'
\'. __// | /
`'---- `---`
created by {__author__}
Version: {__version__}
""".format(__author__=__author__, __version__=__version__))
def set_args(self):
""" Create parser for command line arguments """
parser = ArgumentParser(
usage=u'python -m gitim \'\nUsername and password will be prompted.',
description='Clone all your Github repositories.')
parser.add_argument('-u', '--user', help='Your github username')
parser.add_argument('-p', '--password', help=u'Github password')
parser.add_argument('-t', '--token', help=u'Github OAuth token')
parser.add_argument('-o', '--org', help=u'Organisation/team. User used by default.')
parser.add_argument('-d', '--dest', help=u'Destination directory. Created if doesn\'t exist. [curr_dir]')
parser.add_argument('--nopull', action='store_true', help=u'Don\'t pull if repository exists. [false]')
parser.add_argument('--shallow', action='store_true', help=u'Perform shallow clone. [false]')
parser.add_argument('--ssh', action='store_true', help=u'Use ssh+git urls for checkout. [false]')
parser.add_argument('--noforks', action='store_true', help=u'Skip forked repositories. [false]')
return parser
def make_github_agent(self, args):
""" Create github agent to auth """
if args.token:
g = Github(args.token)
else:
user = args.user
password = args.password
if not user:
user = input(u'Username: ')
if not password:
password = getpass('Password: ')
if not args.dest:
args.dest = input(u'Destination: ')
g = Github(user, password)
return g
def clone_main(self):
""" Clone all repos """
parser = self.set_args()
args = parser.parse_args()
g = self.make_github_agent(args)
user = g.get_user().login
# (BadCredentialsException, TwoFactorException, RateLimitExceededException)
join = path.join
if args.dest:
if not path.exists(args.dest):
makedirs(args.dest)
print(u'mkdir -p "{}"'.format(args.dest))
join = partial(path.join, args.dest)
get_repos = g.get_organization(args.org).get_repos if args.org else g.get_user().get_repos
for repo in get_repos():
if args.noforks and repo.fork:
print(u'Repo "{repo.full_name}" is a fork, skipping'.format(repo=repo))
elif not path.exists(join(repo.full_name)):
clone_url = repo.clone_url
if args.ssh:
clone_url = repo.ssh_url
elif not args.token:
if user != "":
clone_url = clone_url.replace("://github.com/","://"+user+"@github.com/")
if args.shallow:
print(u'Shallow cloning "{repo.full_name}"'.format(repo=repo))
call([u'git', u'clone', '--depth=1', clone_url, join(repo.full_name)])
else:
print(u'Cloning "{repo.full_name}"'.format(repo=repo))
call([u'git', u'clone', clone_url, join(repo.full_name)])
elif not args.nopull:
print(u'Updating "{repo.name}"'.format(repo=repo))
call([u'git', u'pull'], env=dict(environ, GIT_DIR=join(repo.full_name, '.git').encode('utf8')))
else:
print(u'Already cloned, skipping...\t"{repo.full_name}"'.format(repo=repo))
print(u'FIN')
if __name__ == '__main__':
gitim = Gitim()
gitim.clone_main()