2016-03-13 13:25:04 +01:00
|
|
|
# Webhooks for external integrations.
|
2017-11-16 00:43:10 +01:00
|
|
|
|
2016-06-05 19:54:31 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-10-31 04:25:48 +01:00
|
|
|
|
|
|
|
from zerver.decorator import authenticated_rest_api_view
|
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.lib.response import json_success
|
2018-03-13 23:43:02 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2017-11-16 00:43:10 +01:00
|
|
|
from zerver.models import UserProfile, get_client
|
2016-03-13 13:25:04 +01:00
|
|
|
|
|
|
|
# Desk.com's integrations all make the user supply a template, where it fills
|
|
|
|
# in stuff like {{customer.name}} and posts the result as a "data" parameter.
|
|
|
|
# There's no raw JSON for us to work from. Thus, it makes sense to just write
|
|
|
|
# a template Zulip message within Desk.com and have the webhook extract that
|
|
|
|
# from the "data" param and post it, which this does.
|
2018-03-16 23:37:32 +01:00
|
|
|
@authenticated_rest_api_view(webhook_client_name="Desk")
|
2016-03-13 13:25:04 +01:00
|
|
|
@has_request_variables
|
2018-03-13 23:43:02 +01:00
|
|
|
def api_deskdotcom_webhook(request: HttpRequest, user_profile: UserProfile,
|
2018-05-10 19:34:01 +02:00
|
|
|
data: str=REQ()) -> HttpResponse:
|
2018-03-13 23:43:02 +01:00
|
|
|
topic = "Desk.com notification"
|
|
|
|
check_send_webhook_message(request, user_profile, topic, data)
|
2016-03-13 13:25:04 +01:00
|
|
|
return json_success()
|