Polish Humbug Trac bot for external distribution

This change adds a copyright notice and moves our site-specific bits
to global constants at the top of the file.

(imported from commit ccc8cf10f2d0d70c7500b12c7849406268313bae)
This commit is contained in:
Zev Benjamin 2013-02-06 11:06:43 -05:00
parent 0b6fb97aad
commit dac71342f4

View file

@ -1,33 +1,61 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright © 2012 Humbug, Inc.
# #
# 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.
# Humbug trac plugin -- sends humbugs when tickets change. # Humbug trac plugin -- sends humbugs when tickets change.
# #
# Install by placing in the plugins/ subdirectory and then adding # Install by copying this file to the trac plugins/ subdirectory,
# "humbug_trac" to the [components] section of the conf/trac.ini file, # customizing the constants below this comment, and then adding
# like so: # "humbug_trac" to the [components] section of the conf/trac.ini
# file, like so:
# #
# [components] # [components]
# humbug_trac = enabled # humbug_trac = enabled
# #
# You may then need to restart trac (or restart Apache) for the bot # You may then need to restart trac (or restart Apache) for the bot
# (or changes to the bot) to actually be loaded by trac. # (or changes to the bot) to actually be loaded by trac.
#
# Our install is trac.humbughq.com:/home/humbug/trac/ # Change these constants:
HUMBUG_API_PATH = "/home/humbug/humbug/api"
HUMBUG_SITE = "https://staging.humbughq.com"
HUMBUG_USER = "humbug+trac@humbughq.com"
HUMBUG_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
TRAC_BASE_TICKET_URL = "https://trac.humbughq.com/ticket"
from trac.core import Component, implements from trac.core import Component, implements
from trac.ticket import ITicketChangeListener from trac.ticket import ITicketChangeListener
import sys import sys
# This script lives on one machine, so an absolute path is fine. sys.path.append(HUMBUG_API_PATH)
sys.path.append("/home/humbug/humbug/api")
import humbug import humbug
client = humbug.Client( client = humbug.Client(
email="humbug+trac@humbughq.com", email=HUMBUG_USER,
site="https://staging.humbughq.com", site=HUMBUG_SITE,
api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") api_key=HUMBUG_API_KEY)
def markdown_ticket_url(ticket, heading="ticket"): def markdown_ticket_url(ticket, heading="ticket"):
return "[%s #%s](https://trac.humbughq.com/ticket/%s)" % (heading, ticket.id, ticket.id) return "[%s #%s](%s/%s)" % (heading, ticket.id, TRAC_BASE_TICKET_URL, ticket.id)
def markdown_block(desc): def markdown_block(desc):
return "\n\n>" + "\n> ".join(desc.split("\n")) + "\n" return "\n\n>" + "\n> ".join(desc.split("\n")) + "\n"