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
|
from MgaRepo import Error, config
from MgaRepo.rpmutil import detectVCS, get_pkg_tag, clone
from MgaRepo import layout
from MgaRepo.git import GIT
from MgaRepo.svn import SVN
from rpm import RPMTAG_SUMMARY, RPMTAG_URL
import github
import os
class GitHub(object):
def __init__(self, username = config.get("github", "login"), password = config.get("github", "password")):
self._github = github.Github(login_or_token=username, password=password)
self._organization = self._github.get_organization(config.get("github", "organization", "mdkcauldron"))
self._repos = self._organization.get_repos()
def repository_exists(self, name):
for repo in self._repos:
if repo.name == name:
return repo
return None
def create_repository(self, pkgname, **kwargs):
repository = self._organization.create_repo(pkgname, **kwargs)
return repository
def delete_repository(self, pkgname, **kwargs):
repository = self.repository_exists(pkgname)
if repository:
print("deleting repository %s" % repository.full_name)
repository.delete()
return True
raise Error("repository %s doesn't exist!" % (self._organization.login+"/"+pkgname))
# workaround pygithub bug
@staticmethod
def __get_stats_commit_activity(self):
"""
:calls: `GET /repos/:owner/:repo/stats/commit_activity <developer.github.com/v3/repos/statistics/#get-the-number-of-commits-per-hour-in-each-day>`_
:rtype: None or list of :class:`github.StatsCommitActivity.StatsCommitActivity`
"""
headers, data = self._requester.requestJsonAndCheck(
"GET",
self.url + "/stats/commit_activity"
)
if data == None:
return None
else:
return [
github.StatsCommitActivity.StatsCommitActivity(self._requester, headers, attributes, completed=True)
for attributes in data
]
def import_package(self, target):
if not os.path.exists(target):
target = layout.checkout_url(layout.package_url(target))
vcs = detectVCS(target)
top_dir = vcs.get_topdir()
pkgname = layout.package_name(layout.remove_current(vcs.url))
repository = self.repository_exists(pkgname)
#if not repository or not repository.get_stats_commit_activity():
if not repository or self.__get_stats_commit_activity(repository) is None:
if not repository:
if os.path.exists(vcs.path):
summary = get_pkg_tag(RPMTAG_SUMMARY, path=top_dir)
url = get_pkg_tag(RPMTAG_URL, path=top_dir)
repository = self.create_repository(pkgname, description=summary, homepage=url)
print("GitHub repository created at " + repository.html_url)
else:
print("Empty GitHub repository already created at %s, using" % repository.html_url)
if isinstance(vcs, GIT):
status, output = vcs.remote("add", repository.full_name, repository.ssh_url, noerror=True)
if status:
if status == 128 and ("fatal: remote %s already exists." % repository.full_name) \
in output:
pass
else:
raise Error(output)
status, output = vcs.push(repository.full_name, "master", show=True)
if status == 0:
print("Success!")
return True
elif isinstance(vcs, SVN):
clone(vcs.url, bindownload=False)
return self.import_package(pkgname)
else:
raise Error("GitHub repository already exists at " + repository.html_url)
raise Error("GitHub import failed...")
|