2013-02-06 11:14:00 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
# Copyright © 2012 Zulip, Inc.
|
2013-02-06 11:14:00 -05: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.
|
|
|
|
|
|
|
|
|
2013-08-07 12:01:49 -04:00
|
|
|
# Zulip trac plugin -- sends zulips when tickets change.
|
2013-02-06 11:14:00 -05:00
|
|
|
#
|
2013-08-07 11:55:22 -04:00
|
|
|
# Install by copying this file and zulip_trac_config.py to the trac
|
2013-02-13 13:47:23 -05:00
|
|
|
# plugins/ subdirectory, customizing the constants in
|
2013-08-07 12:01:49 -04:00
|
|
|
# zulip_trac_config.py, and then adding "zulip_trac" to the
|
2013-02-13 13:47:23 -05:00
|
|
|
# components section of the conf/trac.ini file, like so:
|
2013-02-06 11:14:00 -05:00
|
|
|
#
|
|
|
|
# [components]
|
2013-08-07 12:01:49 -04:00
|
|
|
# zulip_trac = enabled
|
2013-02-06 11:14:00 -05:00
|
|
|
#
|
|
|
|
# You may then need to restart trac (or restart Apache) for the bot
|
|
|
|
# (or changes to the bot) to actually be loaded by trac.
|
|
|
|
|
|
|
|
from trac.core import Component, implements
|
|
|
|
from trac.ticket import ITicketChangeListener
|
|
|
|
import sys
|
2013-02-13 17:48:06 -05:00
|
|
|
import os.path
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
2013-08-07 11:55:22 -04:00
|
|
|
import zulip_trac_config as config
|
2013-02-06 11:14:00 -05:00
|
|
|
|
2013-08-07 12:01:49 -04:00
|
|
|
if config.ZULIP_API_PATH is not None:
|
|
|
|
sys.path.append(config.ZULIP_API_PATH)
|
2013-02-06 16:44:03 -05:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
import zulip
|
|
|
|
client = zulip.Client(
|
2013-08-07 12:01:49 -04:00
|
|
|
email=config.ZULIP_USER,
|
|
|
|
site=config.ZULIP_SITE,
|
|
|
|
api_key=config.ZULIP_API_KEY)
|
2013-02-06 11:14:00 -05:00
|
|
|
|
|
|
|
def markdown_ticket_url(ticket, heading="ticket"):
|
2013-02-13 13:47:23 -05:00
|
|
|
return "[%s #%s](%s/%s)" % (heading, ticket.id, config.TRAC_BASE_TICKET_URL, ticket.id)
|
2013-02-06 11:14:00 -05:00
|
|
|
|
|
|
|
def markdown_block(desc):
|
|
|
|
return "\n\n>" + "\n> ".join(desc.split("\n")) + "\n"
|
|
|
|
|
|
|
|
def truncate(string, length):
|
|
|
|
if len(string) <= length:
|
|
|
|
return string
|
|
|
|
return string[:length - 3] + "..."
|
|
|
|
|
|
|
|
def trac_subject(ticket):
|
|
|
|
return truncate("#%s: %s" % (ticket.id, ticket.values.get("summary")), 60)
|
|
|
|
|
|
|
|
def send_update(ticket, content):
|
|
|
|
client.send_message({
|
|
|
|
"type": "stream",
|
2013-02-13 13:47:23 -05:00
|
|
|
"to": config.STREAM_FOR_NOTIFICATIONS,
|
2013-02-06 11:14:00 -05:00
|
|
|
"content": content,
|
|
|
|
"subject": trac_subject(ticket)
|
|
|
|
})
|
|
|
|
|
2013-08-07 12:01:49 -04:00
|
|
|
class ZulipPlugin(Component):
|
2013-02-06 11:14:00 -05:00
|
|
|
implements(ITicketChangeListener)
|
|
|
|
|
|
|
|
def ticket_created(self, ticket):
|
|
|
|
"""Called when a ticket is created."""
|
|
|
|
content = "%s created %s in component **%s**, priority **%s**:\n" % \
|
|
|
|
(ticket.values.get("reporter"), markdown_ticket_url(ticket),
|
|
|
|
ticket.values.get("component"), ticket.values.get("priority"))
|
|
|
|
if ticket.values.get("description") != "":
|
|
|
|
content += "%s" % markdown_block(ticket.values.get("description"))
|
|
|
|
send_update(ticket, content)
|
|
|
|
|
|
|
|
def ticket_changed(self, ticket, comment, author, old_values):
|
|
|
|
"""Called when a ticket is modified.
|
|
|
|
|
|
|
|
`old_values` is a dictionary containing the previous values of the
|
|
|
|
fields that have changed.
|
|
|
|
"""
|
2013-02-13 16:28:19 -05:00
|
|
|
if not (set(old_values.keys()).intersection(set(config.TRAC_NOTIFY_FIELDS)) or
|
|
|
|
(comment and "comment" in set(config.TRAC_NOTIFY_FIELDS))):
|
2013-02-06 11:14:00 -05:00
|
|
|
return
|
|
|
|
|
|
|
|
content = "%s updated %s" % (author, markdown_ticket_url(ticket))
|
|
|
|
if comment:
|
|
|
|
content += ' with comment: %s\n\n' % (markdown_block(comment,))
|
|
|
|
else:
|
|
|
|
content += ":\n\n"
|
|
|
|
field_changes = []
|
|
|
|
for key in old_values.keys():
|
|
|
|
if key == "description":
|
|
|
|
content += '- Changed %s from %s to %s' % (key, markdown_block(old_values.get(key)),
|
|
|
|
markdown_block(ticket.values.get(key)))
|
|
|
|
elif old_values.get(key) == "":
|
|
|
|
field_changes.append('%s: => **%s**' % (key, ticket.values.get(key)))
|
|
|
|
elif ticket.values.get(key) == "":
|
|
|
|
field_changes.append('%s: **%s** => ""' % (key, old_values.get(key)))
|
|
|
|
else:
|
|
|
|
field_changes.append('%s: **%s** => **%s**' % (key, old_values.get(key),
|
|
|
|
ticket.values.get(key)))
|
|
|
|
content += ", ".join(field_changes)
|
|
|
|
|
|
|
|
send_update(ticket, content)
|
|
|
|
|
|
|
|
def ticket_deleted(self, ticket):
|
|
|
|
"""Called when a ticket is deleted."""
|
|
|
|
content = "%s was deleted." % markdown_ticket_url(ticket, heading="Ticket")
|
|
|
|
send_update(ticket, content)
|