2016-05-20 19:38:46 +02:00
|
|
|
# Webhooks for external integrations.
|
|
|
|
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
|
|
|
|
from zerver.lib.validator import check_dict, check_string
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-05-20 19:38:46 +02:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
2016-12-04 18:45:46 +01:00
|
|
|
from typing import Dict, Any, Iterable, Optional, Text
|
2016-05-20 19:38:46 +02:00
|
|
|
|
|
|
|
@api_key_only_webhook_view('HelloWorld')
|
|
|
|
@has_request_variables
|
2017-05-02 01:00:50 +02:00
|
|
|
def api_helloworld_webhook(request, user_profile,
|
2016-05-20 19:38:46 +02:00
|
|
|
payload=REQ(argument_type='body'), stream=REQ(default='test'),
|
|
|
|
topic=REQ(default='Hello World')):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Dict[str, Iterable[Dict[str, Any]]], Text, Optional[Text]) -> HttpResponse
|
2016-05-20 19:38:46 +02:00
|
|
|
|
|
|
|
# construct the body of the message
|
|
|
|
body = 'Hello! I am happy to be here! :smile:'
|
|
|
|
|
|
|
|
# try to add the Wikipedia article of the day
|
2017-08-24 17:31:04 +02:00
|
|
|
body_template = '\nThe Wikipedia featured article for today is **[{featured_title}]({featured_url})**'
|
|
|
|
body += body_template.format(**payload)
|
2016-05-20 19:38:46 +02:00
|
|
|
|
|
|
|
# send the message
|
2017-05-02 01:00:50 +02:00
|
|
|
check_send_message(user_profile, request.client, 'stream', [stream], topic, body)
|
2016-05-20 19:38:46 +02:00
|
|
|
|
|
|
|
return json_success()
|