2016-04-07 15:03:22 +02:00
|
|
|
#!/usr/bin/env python
|
2013-10-01 21:38:07 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Zulip mirror of Codebase HQ activity
|
2014-02-04 20:15:02 +01:00
|
|
|
# Copyright © 2014 Zulip, Inc.
|
2013-10-01 21:38:07 +02:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
#
|
2014-03-12 18:34:28 +01:00
|
|
|
# The "zulip_codebase_mirror" script is run continuously, possibly on a work
|
|
|
|
# computer or preferably on a server.
|
2013-10-01 21:38:07 +02:00
|
|
|
#
|
|
|
|
# When restarted, it will attempt to pick up where it left off.
|
|
|
|
#
|
2014-03-12 18:34:28 +01:00
|
|
|
# python-dateutil is a dependency for this script.
|
2013-10-01 21:38:07 +02:00
|
|
|
|
2016-03-10 17:15:34 +01:00
|
|
|
from __future__ import print_function
|
2016-03-10 18:13:01 +01:00
|
|
|
from __future__ import absolute_import
|
2013-10-01 21:38:07 +02:00
|
|
|
import requests
|
|
|
|
import logging
|
|
|
|
import time
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
|
|
|
from datetime import datetime, timedelta
|
2014-03-12 18:34:28 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
import dateutil.parser
|
2016-03-10 13:53:26 +01:00
|
|
|
except ImportError as e:
|
2016-03-10 17:15:34 +01:00
|
|
|
print(e, file=sys.stderr)
|
|
|
|
print("Please install the python-dateutil package.", file=sys.stderr)
|
2014-03-12 18:34:28 +01:00
|
|
|
exit(1)
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
import zulip_codebase_config as config
|
2013-12-05 23:42:33 +01:00
|
|
|
VERSION = "0.9"
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
if config.ZULIP_API_PATH is not None:
|
|
|
|
sys.path.append(config.ZULIP_API_PATH)
|
2017-01-04 05:24:03 +01:00
|
|
|
import six
|
2013-10-01 21:38:07 +02:00
|
|
|
import zulip
|
2017-01-04 05:24:03 +01:00
|
|
|
from typing import Any, List, Dict, Optional
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
client = zulip.Client(
|
|
|
|
email=config.ZULIP_USER,
|
|
|
|
site=config.ZULIP_SITE,
|
2013-12-05 23:42:33 +01:00
|
|
|
api_key=config.ZULIP_API_KEY,
|
2013-12-06 23:50:55 +01:00
|
|
|
client="ZulipCodebase/" + VERSION)
|
2015-09-29 06:17:08 +02:00
|
|
|
user_agent = "Codebase To Zulip Mirroring script (zulip-devel@googlegroups.com)"
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
# find some form of JSON loader/dumper, with a preference order for speed.
|
|
|
|
json_implementations = ['ujson', 'cjson', 'simplejson', 'json']
|
|
|
|
|
|
|
|
while len(json_implementations):
|
|
|
|
try:
|
|
|
|
json = __import__(json_implementations.pop(0))
|
|
|
|
break
|
|
|
|
except ImportError:
|
|
|
|
continue
|
|
|
|
|
|
|
|
def make_api_call(path):
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: (str) -> Optional[List[Dict[str, Any]]]
|
2013-10-01 21:38:07 +02:00
|
|
|
response = requests.get("https://api3.codebasehq.com/%s" % (path,),
|
2016-11-30 14:17:35 +01:00
|
|
|
auth=(config.CODEBASE_API_USERNAME, config.CODEBASE_API_KEY),
|
|
|
|
params={'raw': True},
|
|
|
|
headers = {"User-Agent": user_agent,
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
"Accept": "application/json"})
|
2013-10-01 21:38:07 +02:00
|
|
|
if response.status_code == 200:
|
|
|
|
return json.loads(response.text)
|
|
|
|
|
|
|
|
if response.status_code >= 500:
|
2017-01-03 20:03:45 +01:00
|
|
|
logging.error(str(response.status_code))
|
2013-10-01 21:38:07 +02:00
|
|
|
return None
|
|
|
|
if response.status_code == 403:
|
|
|
|
logging.error("Bad authorization from Codebase. Please check your credentials")
|
|
|
|
sys.exit(-1)
|
|
|
|
else:
|
|
|
|
logging.warn("Found non-success response status code: %s %s" % (response.status_code, response.text))
|
|
|
|
return None
|
|
|
|
|
|
|
|
def make_url(path):
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: (str) -> str
|
2013-10-01 21:38:07 +02:00
|
|
|
return "%s/%s" % (config.CODEBASE_ROOT_URL, path)
|
|
|
|
|
|
|
|
def handle_event(event):
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: (Dict[str, Any]) -> None
|
2013-10-01 21:38:07 +02:00
|
|
|
event = event['event']
|
|
|
|
event_type = event['type']
|
|
|
|
actor_name = event['actor_name']
|
|
|
|
|
|
|
|
raw_props = event.get('raw_properties', {})
|
|
|
|
|
|
|
|
project_link = raw_props.get('project_permalink')
|
|
|
|
|
|
|
|
subject = None
|
|
|
|
content = None
|
|
|
|
if event_type == 'repository_creation':
|
|
|
|
stream = config.ZULIP_COMMITS_STREAM_NAME
|
|
|
|
|
|
|
|
project_name = raw_props.get('name')
|
|
|
|
project_repo_type = raw_props.get('scm_type')
|
|
|
|
|
2015-12-01 17:11:16 +01:00
|
|
|
url = make_url("projects/%s" % (project_link,))
|
2013-10-01 21:38:07 +02:00
|
|
|
scm = "of type %s" % (project_repo_type,) if project_repo_type else ""
|
|
|
|
|
|
|
|
subject = "Repository %s Created" % (project_name,)
|
|
|
|
content = "%s created a new repository %s [%s](%s)" % (actor_name, scm, project_name, url)
|
|
|
|
elif event_type == 'push':
|
|
|
|
stream = config.ZULIP_COMMITS_STREAM_NAME
|
|
|
|
|
|
|
|
num_commits = raw_props.get('commits_count')
|
|
|
|
branch = raw_props.get('ref_name')
|
|
|
|
project = raw_props.get('project_name')
|
|
|
|
repo_link = raw_props.get('repository_permalink')
|
|
|
|
deleted_ref = raw_props.get('deleted_ref')
|
|
|
|
new_ref = raw_props.get('new_ref')
|
|
|
|
|
|
|
|
subject = "Push to %s on %s" % (branch, project)
|
|
|
|
|
|
|
|
if deleted_ref:
|
|
|
|
content = "%s deleted branch %s from %s" % (actor_name, branch, project)
|
|
|
|
else:
|
|
|
|
if new_ref:
|
2016-05-04 23:16:27 +02:00
|
|
|
branch = "new branch %s" % (branch,)
|
2016-11-30 14:17:35 +01:00
|
|
|
content = ("%s pushed %s commit(s) to %s in project %s:\n\n" %
|
|
|
|
(actor_name, num_commits, branch, project))
|
2013-10-01 21:38:07 +02:00
|
|
|
for commit in raw_props.get('commits'):
|
|
|
|
ref = commit.get('ref')
|
|
|
|
url = make_url("projects/%s/repositories/%s/commit/%s" % (project_link, repo_link, ref))
|
|
|
|
message = commit.get('message')
|
|
|
|
content += "* [%s](%s): %s\n" % (ref, url, message)
|
|
|
|
elif event_type == 'ticketing_ticket':
|
|
|
|
stream = config.ZULIP_TICKETS_STREAM_NAME
|
|
|
|
|
|
|
|
num = raw_props.get('number')
|
|
|
|
name = raw_props.get('subject')
|
|
|
|
assignee = raw_props.get('assignee')
|
|
|
|
priority = raw_props.get('priority')
|
2013-10-09 00:53:42 +02:00
|
|
|
url = make_url("projects/%s/tickets/%s" % (project_link, num))
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
if assignee is None:
|
|
|
|
assignee = "no one"
|
|
|
|
subject = "#%s: %s" % (num, name)
|
2016-11-30 14:17:35 +01:00
|
|
|
content = ("""%s created a new ticket [#%s](%s) priority **%s** assigned to %s:\n\n~~~ quote\n %s""" %
|
|
|
|
(actor_name, num, url, priority, assignee, name))
|
2013-10-01 21:38:07 +02:00
|
|
|
elif event_type == 'ticketing_note':
|
|
|
|
stream = config.ZULIP_TICKETS_STREAM_NAME
|
|
|
|
|
|
|
|
num = raw_props.get('number')
|
|
|
|
name = raw_props.get('subject')
|
|
|
|
body = raw_props.get('content')
|
|
|
|
changes = raw_props.get('changes')
|
|
|
|
|
2013-10-09 00:53:42 +02:00
|
|
|
url = make_url("projects/%s/tickets/%s" % (project_link, num))
|
2013-10-01 21:38:07 +02:00
|
|
|
subject = "#%s: %s" % (num, name)
|
|
|
|
|
|
|
|
content = ""
|
|
|
|
if body is not None and len(body) > 0:
|
|
|
|
content = "%s added a comment to ticket [#%s](%s):\n\n~~~ quote\n%s\n\n" % (actor_name, num, url, body)
|
|
|
|
|
|
|
|
if 'status_id' in changes:
|
|
|
|
status_change = changes.get('status_id')
|
|
|
|
content += "Status changed from **%s** to **%s**\n\n" % (status_change[0], status_change[1])
|
|
|
|
elif event_type == 'ticketing_milestone':
|
|
|
|
stream = config.ZULIP_TICKETS_STREAM_NAME
|
|
|
|
|
|
|
|
name = raw_props.get('name')
|
|
|
|
identifier = raw_props.get('identifier')
|
2013-10-09 00:53:42 +02:00
|
|
|
url = make_url("projects/%s/milestone/%s" % (project_link, identifier))
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
subject = name
|
|
|
|
content = "%s created a new milestone [%s](%s)" % (actor_name, name, url)
|
|
|
|
elif event_type == 'comment':
|
|
|
|
stream = config.ZULIP_COMMITS_STREAM_NAME
|
|
|
|
|
|
|
|
comment = raw_props.get('content')
|
|
|
|
commit = raw_props.get('commit_ref')
|
|
|
|
|
2013-10-14 14:05:11 +02:00
|
|
|
# If there's a commit id, it's a comment to a commit
|
|
|
|
if commit:
|
|
|
|
repo_link = raw_props.get('repository_permalink')
|
|
|
|
|
|
|
|
url = make_url('projects/%s/repositories/%s/commit/%s' % (project_link, repo_link, commit))
|
|
|
|
|
|
|
|
subject = "%s commented on %s" % (actor_name, commit)
|
|
|
|
content = "%s commented on [%s](%s):\n\n~~~ quote\n%s" % (actor_name, commit, url, comment)
|
|
|
|
else:
|
|
|
|
# Otherwise, this is a Discussion item, and handle it
|
|
|
|
subj = raw_props.get("subject")
|
|
|
|
category = raw_props.get("category")
|
|
|
|
comment_content = raw_props.get("content")
|
|
|
|
|
|
|
|
subject = "Discussion: %s" % (subj,)
|
|
|
|
|
|
|
|
if category:
|
2016-07-02 19:53:19 +02:00
|
|
|
format_str = "%s started a new discussion in %s:\n\n~~~ quote\n%s\n~~~"
|
|
|
|
content = format_str % (actor_name, category, comment_content)
|
2013-10-14 14:05:11 +02:00
|
|
|
else:
|
|
|
|
content = "%s posted:\n\n~~~ quote\n%s\n~~~" % (actor_name, comment_content)
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
elif event_type == 'deployment':
|
|
|
|
stream = config.ZULIP_COMMITS_STREAM_NAME
|
|
|
|
|
|
|
|
start_ref = raw_props.get('start_ref')
|
|
|
|
end_ref = raw_props.get('end_ref')
|
|
|
|
environment = raw_props.get('environment')
|
|
|
|
servers = raw_props.get('servers')
|
|
|
|
repo_link = raw_props.get('repository_permalink')
|
|
|
|
|
|
|
|
start_ref_url = make_url("projects/%s/repositories/%s/commit/%s" % (project_link, repo_link, start_ref))
|
|
|
|
end_ref_url = make_url("projects/%s/repositories/%s/commit/%s" % (project_link, repo_link, end_ref))
|
2016-07-02 19:53:19 +02:00
|
|
|
between_url = make_url("projects/%s/repositories/%s/compare/%s...%s" % (
|
|
|
|
project_link, repo_link, start_ref, end_ref))
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
subject = "Deployment to %s" % (environment,)
|
|
|
|
|
2016-11-30 14:17:35 +01:00
|
|
|
content = ("%s deployed [%s](%s) [through](%s) [%s](%s) to the **%s** environment." %
|
|
|
|
(actor_name, start_ref, start_ref_url, between_url, end_ref, end_ref_url, environment))
|
2013-10-01 21:38:07 +02:00
|
|
|
if servers is not None:
|
|
|
|
content += "\n\nServers deployed to: %s" % (", ".join(["`%s`" % (server,) for server in servers]))
|
|
|
|
|
|
|
|
elif event_type == 'named_tree':
|
|
|
|
# Docs say named_tree type used for new/deleting branches and tags,
|
|
|
|
# but experimental testing showed that they were all sent as 'push' events
|
|
|
|
pass
|
|
|
|
elif event_type == 'wiki_page':
|
|
|
|
logging.warn("Wiki page notifications not yet implemented")
|
|
|
|
elif event_type == 'sprint_creation':
|
|
|
|
logging.warn("Sprint notifications not yet implemented")
|
|
|
|
elif event_type == 'sprint_ended':
|
|
|
|
logging.warn("Sprint notifications not yet implemented")
|
|
|
|
else:
|
|
|
|
logging.info("Unknown event type %s, ignoring!" % (event_type,))
|
|
|
|
|
|
|
|
if subject and content:
|
2013-10-09 00:54:03 +02:00
|
|
|
if len(subject) > 60:
|
|
|
|
subject = subject[:57].rstrip() + '...'
|
|
|
|
|
2013-10-01 21:38:07 +02:00
|
|
|
res = client.send_message({"type": "stream",
|
|
|
|
"to": stream,
|
|
|
|
"subject": subject,
|
|
|
|
"content": content})
|
|
|
|
if res['result'] == 'success':
|
|
|
|
logging.info("Successfully sent Zulip with id: %s" % (res['id']))
|
|
|
|
else:
|
|
|
|
logging.warn("Failed to send Zulip: %s %s" % (res['result'], res['msg']))
|
|
|
|
|
|
|
|
|
|
|
|
# the main run loop for this mirror script
|
|
|
|
def run_mirror():
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: () -> None
|
2013-10-01 21:38:07 +02:00
|
|
|
# we should have the right (write) permissions on the resume file, as seen
|
|
|
|
# in check_permissions, but it may still be empty or corrupted
|
|
|
|
def default_since():
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: () -> datetime
|
2013-10-01 21:38:07 +02:00
|
|
|
return datetime.utcnow() - timedelta(hours=config.CODEBASE_INITIAL_HISTORY_HOURS)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(config.RESUME_FILE) as f:
|
|
|
|
timestamp = f.read()
|
|
|
|
if timestamp == '':
|
|
|
|
since = default_since()
|
|
|
|
else:
|
2017-01-03 20:03:45 +01:00
|
|
|
since = datetime.fromtimestamp(float(timestamp))
|
2016-03-10 16:33:07 +01:00
|
|
|
except (ValueError, IOError) as e:
|
2017-01-03 20:03:45 +01:00
|
|
|
logging.warn("Could not open resume file: %s" % (str(e)))
|
2013-10-01 21:38:07 +02:00
|
|
|
since = default_since()
|
|
|
|
|
|
|
|
try:
|
|
|
|
sleepInterval = 1
|
2016-03-10 14:52:28 +01:00
|
|
|
while True:
|
2013-10-01 21:38:07 +02:00
|
|
|
events = make_api_call("activity")[::-1]
|
|
|
|
if events is not None:
|
|
|
|
sleepInterval = 1
|
|
|
|
for event in events:
|
|
|
|
timestamp = event.get('event', {}).get('timestamp', '')
|
|
|
|
event_date = dateutil.parser.parse(timestamp).replace(tzinfo=None)
|
|
|
|
if event_date > since:
|
|
|
|
handle_event(event)
|
|
|
|
since = event_date
|
|
|
|
else:
|
|
|
|
# back off a bit
|
|
|
|
if sleepInterval < 22:
|
|
|
|
sleepInterval += 4
|
|
|
|
time.sleep(sleepInterval)
|
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
2016-11-09 13:44:29 +01:00
|
|
|
open(config.RESUME_FILE, 'w').write(since.strftime("%s"))
|
2013-10-01 21:38:07 +02:00
|
|
|
logging.info("Shutting down Codebase mirror")
|
|
|
|
|
|
|
|
# void function that checks the permissions of the files this script needs.
|
|
|
|
def check_permissions():
|
2017-01-03 20:03:45 +01:00
|
|
|
# type: () -> None
|
2013-10-01 21:38:07 +02:00
|
|
|
# check that the log file can be written
|
|
|
|
if config.LOG_FILE:
|
|
|
|
try:
|
|
|
|
open(config.LOG_FILE, "w")
|
|
|
|
except IOError as e:
|
2017-01-03 20:03:45 +01:00
|
|
|
sys.stderr.write("Could not open up log for writing:")
|
|
|
|
sys.stderr.write(str(e))
|
2013-10-01 21:38:07 +02:00
|
|
|
# check that the resume file can be written (this creates if it doesn't exist)
|
|
|
|
try:
|
|
|
|
open(config.RESUME_FILE, "a+")
|
|
|
|
except IOError as e:
|
2017-01-03 20:03:45 +01:00
|
|
|
sys.stderr.write("Could not open up the file %s for reading and writing" % (config.RESUME_FILE,))
|
|
|
|
sys.stderr.write(str(e))
|
2013-10-01 21:38:07 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2016-03-10 18:13:01 +01:00
|
|
|
if not isinstance(config.RESUME_FILE, six.string_types):
|
2017-01-03 20:03:45 +01:00
|
|
|
sys.stderr.write("RESUME_FILE path not given; refusing to continue")
|
2013-10-01 21:38:07 +02:00
|
|
|
check_permissions()
|
|
|
|
if config.LOG_FILE:
|
|
|
|
logging.basicConfig(filename=config.LOG_FILE, level=logging.WARNING)
|
|
|
|
else:
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
run_mirror()
|