mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Make all strings passing through `json_error` and `JsonableError` translatable. Fixes #727
		
			
				
	
	
		
			246 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			246 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
Taiga integration for Zulip.
 | 
						|
 | 
						|
Tips for notification output:
 | 
						|
 | 
						|
*Emojis*: most of the events have specific emojis e.g.
 | 
						|
- :notebook: - change of subject/name/description
 | 
						|
- :chart_with_upwards_trend: - change of status
 | 
						|
etc. If no there's no meaningful emoji for certain event, the defaults are used:
 | 
						|
- :thought_balloon: - event connected to commenting
 | 
						|
- :busts_in_silhouette: - event connected to a certain user
 | 
						|
- :package: - all other events connected to user story
 | 
						|
- :calendar: - all other events connected to milestones
 | 
						|
- :clipboard: - all other events connected to tasks
 | 
						|
- :bulb: - all other events connected to issues
 | 
						|
 | 
						|
*Text formatting*: if there has been a change of a property, the new value should always be in bold; otherwise the
 | 
						|
subject of US/task should be in bold.
 | 
						|
"""
 | 
						|
 | 
						|
from __future__ import absolute_import
 | 
						|
 | 
						|
from django.utils.translation import ugettext as _
 | 
						|
 | 
						|
from zerver.lib.actions import check_send_message
 | 
						|
from zerver.lib.response import json_success, json_error
 | 
						|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
 | 
						|
 | 
						|
import ujson
 | 
						|
from six.moves import range
 | 
						|
 | 
						|
 | 
						|
@api_key_only_webhook_view('Taiga')
 | 
						|
@has_request_variables
 | 
						|
def api_taiga_webhook(request, user_profile, client, message=REQ(argument_type='body'),
 | 
						|
                      stream=REQ(default='taiga'), topic=REQ(default='General')):
 | 
						|
    parsed_events = parse_message(message)
 | 
						|
 | 
						|
    content = ""
 | 
						|
    for event in parsed_events:
 | 
						|
        content += generate_content(event) + '\n'
 | 
						|
 | 
						|
    check_send_message(user_profile, client, 'stream', [stream], topic, content)
 | 
						|
 | 
						|
    return json_success()
 | 
						|
 | 
						|
templates = {
 | 
						|
    'userstory': {
 | 
						|
        'create': u':package: %(user)s created user story **%(subject)s**.',
 | 
						|
        'set_assigned_to': u':busts_in_silhouette: %(user)s assigned user story **%(subject)s** to %(new)s.',
 | 
						|
        'changed_assigned_to': u':busts_in_silhouette: %(user)s reassigned user story **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'points': u':game_die: %(user)s changed estimation of user story **%(subject)s**.',
 | 
						|
        'blocked': u':lock: %(user)s blocked user story **%(subject)s**.',
 | 
						|
        'unblocked': u':unlock: %(user)s unblocked user story **%(subject)s**.',
 | 
						|
        'set_milestone': u':calendar: %(user)s added user story **%(subject)s** to sprint %(new)s.',
 | 
						|
        'changed_milestone': u':calendar: %(user)s changed sprint of user story **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_status': u':chart_with_upwards_trend: %(user)s changed status of user story **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'closed': u':checkered_flag: %(user)s closed user story **%(subject)s**.',
 | 
						|
        'reopened': u':package: %(user)s reopened user story **%(subject)s**.',
 | 
						|
        'renamed': u':notebook: %(user)s renamed user story from %(old)s to **%(new)s**.',
 | 
						|
        'description': u':notebook: %(user)s updated description of user story **%(subject)s**.',
 | 
						|
        'commented': u':thought_balloon: %(user)s commented on user story **%(subject)s**.',
 | 
						|
        'delete': u':x: %(user)s deleted user story **%(subject)s**.'
 | 
						|
    },
 | 
						|
    'milestone': {
 | 
						|
        'create': u':calendar: %(user)s created sprint **%(subject)s**.',
 | 
						|
        'renamed': u':notebook: %(user)s renamed sprint from %(old)s to **%(new)s**.',
 | 
						|
        'estimated_start': u':calendar: %(user)s changed estimated start of sprint **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'estimated_finish': u':calendar: %(user)s changed estimated finish of sprint **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'delete': u':x: %(user)s deleted sprint **%(subject)s**.'
 | 
						|
    },
 | 
						|
    'task': {
 | 
						|
        'create': u':clipboard: %(user)s created task **%(subject)s**.',
 | 
						|
        'set_assigned_to': u':busts_in_silhouette: %(user)s assigned task **%(subject)s** to %(new)s.',
 | 
						|
        'changed_assigned_to': u':busts_in_silhouette: %(user)s reassigned task **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'blocked': u':lock: %(user)s blocked task **%(subject)s**.',
 | 
						|
        'unblocked': u':unlock: %(user)s unblocked task **%(subject)s**.',
 | 
						|
        'set_milestone': u':calendar: %(user)s added task **%(subject)s** to sprint %(new)s.',
 | 
						|
        'changed_milestone': u':calendar: %(user)s changed sprint of task **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_status': u':chart_with_upwards_trend: %(user)s changed status of task **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'renamed': u':notebook: %(user)s renamed task %(old)s to **%(new)s**.',
 | 
						|
        'description': u':notebook: %(user)s updated description of task **%(subject)s**.',
 | 
						|
        'commented': u':thought_balloon: %(user)s commented on task **%(subject)s**.',
 | 
						|
        'delete': u':x: %(user)s deleted task **%(subject)s**.',
 | 
						|
        'changed_us': u':clipboard: %(user)s moved task **%(subject)s** from user story %(old)s to %(new)s.'
 | 
						|
    },
 | 
						|
    'issue': {
 | 
						|
        'create': u':bulb: %(user)s created issue **%(subject)s**.',
 | 
						|
        'set_assigned_to': u':busts_in_silhouette: %(user)s assigned issue **%(subject)s** to %(new)s.', #
 | 
						|
        'changed_assigned_to': u':busts_in_silhouette: %(user)s reassigned issue **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_priority': u':rocket: %(user)s changed priority of issue **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_severity': u':warning: %(user)s changed severity of issue **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_status': u':chart_with_upwards_trend: %(user)s changed status of issue **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'changed_type': u':bulb: %(user)s changed type of issue **%(subject)s** from %(old)s to %(new)s.',
 | 
						|
        'renamed': u':notebook: %(user)s renamed issue %(old)s to **%(new)s**.',
 | 
						|
        'description': u':notebook: %(user)s updated description of issue **%(subject)s**.',
 | 
						|
        'commented': u':thought_balloon: %(user)s commented on issue **%(subject)s**.',
 | 
						|
        'delete': u':x: %(user)s deleted issue **%(subject)s**.'
 | 
						|
    },
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
def get_old_and_new_values(change_type, message):
 | 
						|
    """ Parses the payload and finds previous and current value of change_type."""
 | 
						|
    values_map = {
 | 
						|
        'assigned_to': 'users',
 | 
						|
        'status': 'status',
 | 
						|
        'severity': 'severity',
 | 
						|
        'priority': 'priority',
 | 
						|
        'milestone': 'milestone',
 | 
						|
        'type': 'type',
 | 
						|
        'user_story': 'user_story'
 | 
						|
    }
 | 
						|
 | 
						|
    if change_type in ['subject', 'name', 'estimated_finish', 'estimated_start']:
 | 
						|
        old = message["change"]["diff"][change_type]["from"]
 | 
						|
        new = message["change"]["diff"][change_type]["to"]
 | 
						|
        return old, new
 | 
						|
 | 
						|
    try:
 | 
						|
        old_id = message["change"]["diff"][change_type]["from"]
 | 
						|
        old = message["change"]["values"][values_map[change_type]][str(old_id)]
 | 
						|
    except KeyError:
 | 
						|
        old = None
 | 
						|
 | 
						|
    try:
 | 
						|
        new_id = message["change"]["diff"][change_type]["to"]
 | 
						|
        new = message["change"]["values"][values_map[change_type]][str(new_id)]
 | 
						|
    except KeyError:
 | 
						|
        new = None
 | 
						|
 | 
						|
    return old, new
 | 
						|
 | 
						|
 | 
						|
def parse_comment(message):
 | 
						|
    """ Parses the comment to issue, task or US. """
 | 
						|
    return {
 | 
						|
        'event': 'commented',
 | 
						|
        'type': message["type"],
 | 
						|
        'values': {
 | 
						|
            'user': message["change"]["user"]["name"],
 | 
						|
            'subject': message["data"]["subject"] if "subject" in list(message["data"].keys()) else message["data"]["name"]
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
def parse_create_or_delete(message):
 | 
						|
    """ Parses create or delete event. """
 | 
						|
    return {
 | 
						|
        'type': message["type"],
 | 
						|
        'event': message["action"],
 | 
						|
        'values':
 | 
						|
            {
 | 
						|
                'user': message["data"]["owner"]["name"],
 | 
						|
                'subject': message["data"]["subject"] if "subject" in list(message["data"].keys()) else message["data"]["name"]
 | 
						|
            }
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
def parse_change_event(change_type, message):
 | 
						|
    """ Parses change event. """
 | 
						|
    evt = {}
 | 
						|
    values = {
 | 
						|
        'user': message["change"]["user"]["name"],
 | 
						|
        'subject': message["data"]["subject"] if "subject" in list(message["data"].keys()) else message["data"]["name"]
 | 
						|
    }
 | 
						|
 | 
						|
    if change_type in ["description", "points"]:
 | 
						|
        event_type = change_type
 | 
						|
 | 
						|
    elif change_type in ["milestone", "assigned_to"]:
 | 
						|
        old, new = get_old_and_new_values(change_type, message)
 | 
						|
        if not old:
 | 
						|
            event_type = "set_" + change_type
 | 
						|
            values["new"] = new
 | 
						|
        else:
 | 
						|
            event_type = "changed_" + change_type
 | 
						|
            values.update({'old': old, 'new': new})
 | 
						|
 | 
						|
 | 
						|
    elif change_type == "is_blocked":
 | 
						|
        if message["change"]["diff"]["is_blocked"]["to"]:
 | 
						|
            event_type = "blocked"
 | 
						|
        else:
 | 
						|
            event_type = "unblocked"
 | 
						|
 | 
						|
    elif change_type == "is_closed":
 | 
						|
        if message["change"]["diff"]["is_closed"]["to"]:
 | 
						|
            event_type = "closed"
 | 
						|
        else:
 | 
						|
            event_type = "reopened"
 | 
						|
 | 
						|
    elif change_type == "user_story":
 | 
						|
        old, new = get_old_and_new_values(change_type, message)
 | 
						|
        event_type = "changed_us"
 | 
						|
        values.update({'old': old, 'new': new})
 | 
						|
 | 
						|
    elif change_type in ["subject", 'name']:
 | 
						|
        event_type = 'renamed'
 | 
						|
        old, new = get_old_and_new_values(change_type, message)
 | 
						|
        values.update({'old': old, 'new': new})
 | 
						|
 | 
						|
 | 
						|
    elif change_type in ["estimated_finish", "estimated_start"]:
 | 
						|
        old, new = get_old_and_new_values(change_type, message)
 | 
						|
        if not old == new:
 | 
						|
            event_type = change_type
 | 
						|
            values.update({'old': old, 'new': new})
 | 
						|
        else:
 | 
						|
            # date hasn't changed
 | 
						|
            return None
 | 
						|
 | 
						|
    elif change_type in ["priority", "severity", "type", "status"]:
 | 
						|
        event_type = 'changed_' + change_type
 | 
						|
        old, new = get_old_and_new_values(change_type, message)
 | 
						|
        values.update({'old': old, 'new': new})
 | 
						|
 | 
						|
    else:
 | 
						|
        # we are not supporting this type of event
 | 
						|
        return None
 | 
						|
 | 
						|
    evt.update({"type": message["type"], "event": event_type, "values": values})
 | 
						|
    return evt
 | 
						|
 | 
						|
 | 
						|
def parse_message(message):
 | 
						|
    """ Parses the payload by delegating to specialized functions. """
 | 
						|
    events = []
 | 
						|
    if message["action"] in ['create', 'delete']:
 | 
						|
        events.append(parse_create_or_delete(message))
 | 
						|
    elif message["action"] == 'change':
 | 
						|
        if message["change"]["diff"]:
 | 
						|
            for value in message["change"]["diff"]:
 | 
						|
                parsed_event = parse_change_event(value, message)
 | 
						|
                if parsed_event: events.append(parsed_event)
 | 
						|
        if message["change"]["comment"]:
 | 
						|
            events.append(parse_comment(message))
 | 
						|
 | 
						|
    return events
 | 
						|
 | 
						|
def generate_content(data):
 | 
						|
    """ Gets the template string and formats it with parsed data. """
 | 
						|
    try:
 | 
						|
        return templates[data['type']][data['event']] % data['values']
 | 
						|
    except KeyError:
 | 
						|
        return json_error(_("Unknown message"))
 |