py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2017-01-30 10:24:18 +01:00
|
|
|
|
|
|
|
import requests
|
|
|
|
import re
|
|
|
|
import argparse
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
2017-11-06 03:10:47 +01:00
|
|
|
import ConfigParser
|
2017-07-10 00:34:47 +02:00
|
|
|
from typing import Any, Dict, MutableMapping, Optional, Text
|
2017-01-30 10:24:18 +01:00
|
|
|
|
|
|
|
# Scans zulip repositary for issues that don't have any `area` labels.
|
|
|
|
# GitHub API token is required as GitHub limits unauthenticated
|
|
|
|
# requests to 60/hour. There is a good chance that this limit is
|
|
|
|
# bypassed in consecutive attempts.
|
|
|
|
# The api token can be generated here
|
|
|
|
# https://github.com/settings/tokens/new?description=Zulip%20Issue%20Label%20Checker
|
|
|
|
#
|
|
|
|
# Copy conf.ini-template to conf.ini and populate with your api token.
|
|
|
|
#
|
|
|
|
# usage: python check-issue-labels
|
|
|
|
# Pass --force as an argument to run without a token.
|
|
|
|
|
|
|
|
def get_config():
|
|
|
|
# type: () -> ConfigParser
|
|
|
|
config = ConfigParser()
|
|
|
|
config.read(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'conf.ini'))
|
|
|
|
return config
|
|
|
|
|
|
|
|
def area_labeled(issue):
|
|
|
|
# type: (Dict[str, Any]) -> bool
|
|
|
|
for label in issue["labels"]:
|
|
|
|
label_name = str(label["name"])
|
|
|
|
if "area:" in label_name:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def is_issue(item):
|
|
|
|
# type: (Dict[str, Any]) -> bool
|
|
|
|
return "issues" in item["html_url"]
|
|
|
|
|
|
|
|
def get_next_page_url(link_header):
|
2017-07-10 00:34:47 +02:00
|
|
|
# type: (str) -> Optional[str]
|
2017-01-30 10:24:18 +01:00
|
|
|
matches = re.findall(r'\<(\S+)\>; rel=\"next\"', link_header)
|
|
|
|
try:
|
|
|
|
return matches[0]
|
|
|
|
except IndexError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def check_issue_labels():
|
|
|
|
# type: () -> None
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('--force', action="store_true", dest="force", default=False)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if not args.force:
|
|
|
|
config = get_config()
|
|
|
|
try:
|
|
|
|
token = config.get('github', 'api_token')
|
|
|
|
except KeyError:
|
|
|
|
print("Error fetching GitHub api token. Copy conf.ini-template to conf.ini and populate with "
|
|
|
|
"your api token. If you want to continue without using a token use --force.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
2017-07-10 00:34:47 +02:00
|
|
|
next_page_url = 'https://api.github.com/repos/zulip/zulip/issues' # type: Optional[Text]
|
2017-01-30 10:24:18 +01:00
|
|
|
unlabeled_issue_urls = []
|
|
|
|
while next_page_url:
|
|
|
|
try:
|
|
|
|
if args.force:
|
|
|
|
response = requests.get(next_page_url)
|
|
|
|
else:
|
|
|
|
response = requests.get(next_page_url, headers={'Authorization': 'token %s' % token})
|
|
|
|
if response.status_code == 401:
|
|
|
|
sys.exit("Error. Please check the token.")
|
|
|
|
if response.status_code == 403:
|
|
|
|
sys.exit("403 Error. This is generally caused when API limit is exceeded. You use an api "
|
|
|
|
"token to overcome this limit.")
|
|
|
|
except requests.exceptions.RequestException as e:
|
|
|
|
print(e)
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
next_page_url = get_next_page_url(response.headers["Link"])
|
|
|
|
for item in response.json():
|
|
|
|
if is_issue(item) and not area_labeled(item):
|
|
|
|
unlabeled_issue_urls.append(item["html_url"])
|
|
|
|
|
|
|
|
if len(unlabeled_issue_urls):
|
|
|
|
print("The following issues don't have any area labels associated with it")
|
|
|
|
print("\n".join(unlabeled_issue_urls))
|
|
|
|
else:
|
|
|
|
print("No GitHub issues found with missing area labels.")
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
check_issue_labels()
|