本文整理汇总了Python中github.GitHub.hasPushAccess方法的典型用法代码示例。如果您正苦于以下问题:Python GitHub.hasPushAccess方法的具体用法?Python GitHub.hasPushAccess怎么用?Python GitHub.hasPushAccess使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.GitHub
的用法示例。
在下文中一共展示了GitHub.hasPushAccess方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from github import GitHub [as 别名]
# 或者: from github.GitHub import hasPushAccess [as 别名]
def get(self):
user = users.get_current_user()
if not user:
self.redirect(users.create_login_url(self.request.uri))
else:
if validAdmin(user):
creds = get_githubcredentials()
self.response.write("""
<form action='%s' method="POST">
Github Repository Owner: <input name="github_owner" type="text" value="%s" /><br>
Github Repository Name: <input name="github_repo" type="text" value="%s" /><br>
Github Access Token (always hidden): <input name="github_token" type="text" placeholder="access token" /><br>
<input type="submit" />
</form>
"""%(self.request.uri, creds.owner, creds.repo))
hasAccess = False
ghcreds = get_githubcredentials()
gh = GitHub(creds.owner, creds.repo, creds.token)
try:
hasAccess = gh.hasPushAccess()
except:
pass
if hasAccess:
self.response.write("<p>Push Access Granted by GitHub.com</p>")
else:
self.response.write("<p>WARNING: No push access with the stored token and repo information. Please provide valid information</p>")
else:
self.response.headers['Content-Type'] = 'text/plain; charset=utf-8'
self.response.write("No write access for user %s"%user.email())