in api/pages/bio/bio.py [0:0]
def run(API, environ, indata, session):
# We need to be logged in for this!
if not session.user:
raise API.exception(403, "You must be logged in to use this API endpoint! %s")
now = time.time()
# First, fetch the view if we have such a thing enabled
viewList = []
if indata.get('view'):
viewList = session.getView(indata.get('view'))
if indata.get('subfilter'):
viewList = session.subFilter(indata.get('subfilter'), view = viewList)
dOrg = session.user['defaultOrganisation'] or "apache"
pid = hashlib.sha1( ("%s%s" % (dOrg, indata.get('email', '???'))).encode('ascii', errors='replace')).hexdigest()
person = {}
if session.DB.ES.exists(index=session.DB.dbname, doc_type="person", id = pid):
person = session.DB.ES.get(index=session.DB.dbname, doc_type="person", id = pid)['_source']
else:
raise API.exception(404, "No such biography!")
query = {
'query': {
'bool': {
'must': [
{
'term': {
'organisation': dOrg
}
}
]
}
},
'size': 1,
'sort': [{ 'ts': 'asc' }]
}
# Source-specific or view-specific??
if indata.get('source'):
query['query']['bool']['must'].append({'term': {'sourceID': indata.get('source')}})
elif viewList:
query['query']['bool']['must'].append({'terms': {'sourceID': viewList}})
if indata.get('email'):
codeKey = 'committer_email'
query['query']['bool']['should'] = [
{'term': {'issueCreator': indata.get('email')}},
{'term': {'issueCloser': indata.get('email')}},
{'term': {'sender': indata.get('email')}},
{'term': {codeKey: indata.get('email')}},
]
query['query']['bool']['minimum_should_match'] = 1
# FIRST EMAIL
res = session.DB.ES.search(
index=session.DB.dbname,
doc_type="email",
body = query
)
firstEmail = None
if res['hits']['hits']:
firstEmail = res['hits']['hits'][0]['_source']['ts']
# FIRST COMMIT
res = session.DB.ES.search(
index=session.DB.dbname,
doc_type="code_commit",
body = query
)
firstCommit = None
if res['hits']['hits']:
firstCommit = res['hits']['hits'][0]['_source']['ts']
# FIRST AUTHORSHIP
query['query']['bool']['should'][3] = {'term': {'author_email': indata.get('email')}}
res = session.DB.ES.search(
index=session.DB.dbname,
doc_type="code_commit",
body = query
)
firstAuthor = None
if res['hits']['hits']:
firstAuthor = res['hits']['hits'][0]['_source']['ts']
# COUNT EMAIL, CODE, LINES CHANGED
del query['sort']
del query['size']
no_emails = session.DB.ES.count(
index=session.DB.dbname,
doc_type="email",
body = query
)['count']
no_commits = session.DB.ES.count(
index=session.DB.dbname,
doc_type="code_commit",
body = query
)['count']
JSON_OUT = {
'found': True,
'bio': {
'organisation': dOrg,
'name': person['name'],
'email': person['email'],
'id': pid,
'gravatar': hashlib.md5(person['email'].lower().encode('utf-8')).hexdigest(),
'firstEmail': firstEmail,
'firstCommit': firstCommit,
'firstAuthor': firstAuthor,
'tags': person.get('tags', []),
'alts': person.get('alts', []),
'emails': no_emails,
'commits': no_commits
},
'okay': True,
'responseTime': time.time() - now
}
yield json.dumps(JSON_OUT)