2016-03-13 15:10:12 +01:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
from __future__ import absolute_import
|
2016-06-05 23:41:44 +02:00
|
|
|
from zerver.models import get_client, UserProfile
|
2016-03-13 15:10:12 +01:00
|
|
|
from zerver.lib.actions import check_send_message
|
2016-05-07 20:07:48 +02:00
|
|
|
from zerver.lib.response import json_success
|
|
|
|
from zerver.decorator import authenticated_rest_api_view, REQ, has_request_variables
|
2016-06-05 23:41:44 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2016-03-13 15:10:12 +01:00
|
|
|
|
|
|
|
def truncate(string, length):
|
|
|
|
if len(string) > length:
|
|
|
|
string = string[:length-3] + '...'
|
|
|
|
return string
|
|
|
|
|
|
|
|
@authenticated_rest_api_view
|
2016-05-07 20:07:48 +02:00
|
|
|
@has_request_variables
|
|
|
|
def api_zendesk_webhook(request, user_profile, ticket_title=REQ(), ticket_id=REQ(),
|
|
|
|
message=REQ(), stream=REQ(default="zendesk")):
|
2016-06-05 23:41:44 +02:00
|
|
|
# type: (HttpRequest, UserProfile, str, str, str, str) -> HttpResponse
|
2016-03-13 15:10:12 +01:00
|
|
|
"""
|
|
|
|
Zendesk uses trigers with message templates. This webhook uses the
|
|
|
|
ticket_id and ticket_title to create a subject. And passes with zendesk
|
|
|
|
user's configured message to zulip.
|
|
|
|
"""
|
|
|
|
subject = truncate('#%s: %s' % (ticket_id, ticket_title), 60)
|
|
|
|
check_send_message(user_profile, get_client('ZulipZenDeskWebhook'), 'stream',
|
|
|
|
[stream], subject, message)
|
|
|
|
return json_success()
|