912a9424eb
Ensure that we translate '_' characters to ' ' for matchin the keys in projects.yaml Change-Id: Ibfe24e2cdadc773fb69bdd4dd52df2bc0de6cb27
82 lines
2.3 KiB
Python
Executable File
82 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import yaml
|
|
import os
|
|
import sys
|
|
import urllib
|
|
import re
|
|
import datetime
|
|
|
|
DATE_MIN = '2015-03-04'
|
|
DATE_MAX = '2016-01-03'
|
|
|
|
BASE_URL = 'https://git.openstack.org/cgit'
|
|
PROJECTS_TAG = 'march-2016-elections'
|
|
PROJECTS_URL = ('%s/openstack/governance/plain/reference/projects.yaml?%s' %
|
|
(BASE_URL, PROJECTS_TAG))
|
|
|
|
date_min = datetime.datetime.strptime(DATE_MIN, '%Y-%m-%d').strftime('%s')
|
|
date_max = datetime.datetime.strptime(DATE_MAX, '%Y-%m-%d').strftime('%s')
|
|
|
|
|
|
def check_date(date):
|
|
epoch = datetime.datetime.strptime(date, '%Y-%m-%d').strftime('%s')
|
|
if epoch > date_min and epoch < date_max:
|
|
return True
|
|
return False
|
|
|
|
|
|
def escape_author(author):
|
|
author = author.replace(' ', '+')
|
|
author = author.replace('_', '+')
|
|
|
|
return author
|
|
|
|
try:
|
|
project_name = os.path.basename(os.path.dirname(sys.argv[1]))
|
|
author = os.path.basename(sys.argv[1])[:-4]
|
|
except:
|
|
print "usage: %s candidacy_file" % sys.argv[0]
|
|
exit(1)
|
|
|
|
project_name = project_name.replace('_', ' ')
|
|
author = escape_author(author)
|
|
|
|
if not os.path.isfile('.projects.yaml'):
|
|
open('.projects.yaml', 'w').write(
|
|
urllib.urlopen(PROJECTS_URL).read()
|
|
)
|
|
projects = yaml.load(open('.projects.yaml'))
|
|
|
|
if project_name == "TC":
|
|
project_list = projects.values()
|
|
else:
|
|
try:
|
|
project_list = [projects[project_name]]
|
|
except:
|
|
print "Can't find project [%s] in %s" % (project_name, projects.keys())
|
|
exit(1)
|
|
|
|
for project in project_list:
|
|
for deliverable in project['deliverables'].values():
|
|
for repo_name in deliverable["repos"]:
|
|
url = '%s/%s/log/?qt=author&q=%s' % (BASE_URL, repo_name, author)
|
|
print "Querying: %s" % url
|
|
found = False
|
|
for l in urllib.urlopen(url).read().split('\n'):
|
|
if "commit/?id=" not in l:
|
|
continue
|
|
try:
|
|
url = ('http://git.openstack.org%s' %
|
|
re.search("href='([^']*)'", l).groups()[0])
|
|
date = re.search('<td>([^<]*)</td>', l).groups()[0]
|
|
if not check_date(date):
|
|
continue
|
|
except:
|
|
continue
|
|
print "[%s]: %s" % (date, url)
|
|
found = True
|
|
if found:
|
|
exit(0)
|
|
exit(1)
|