2016-12-18 02:08:22 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
2017-09-30 04:18:16 +02:00
|
|
|
from zerver.lib.actions import check_send_stream_message
|
2016-12-18 02:08:22 +01:00
|
|
|
from zerver.lib.response import json_success, json_error
|
|
|
|
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
|
|
|
|
2017-05-02 01:00:50 +02:00
|
|
|
from zerver.models import UserProfile
|
2016-12-18 02:08:22 +01:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-07-10 06:10:34 +02:00
|
|
|
from typing import Dict, Any, Optional, Text
|
2016-12-18 02:08:22 +01:00
|
|
|
|
2016-12-20 10:19:29 +01:00
|
|
|
BODY_TEMPLATE = '[{website_name}]({website_url}) has {user_num} visitors online.'
|
2016-12-18 02:08:22 +01:00
|
|
|
|
|
|
|
@api_key_only_webhook_view('GoSquared')
|
|
|
|
@has_request_variables
|
2017-05-02 01:00:50 +02:00
|
|
|
def api_gosquared_webhook(request, user_profile,
|
2016-12-18 02:08:22 +01:00
|
|
|
payload=REQ(argument_type='body'),
|
|
|
|
stream=REQ(default='gosquared'),
|
2016-12-20 10:19:29 +01:00
|
|
|
topic=REQ(default=None)):
|
2017-05-02 01:00:50 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Dict[str, Dict[str, Any]], Text, Text) -> HttpResponse
|
2017-08-24 17:31:04 +02:00
|
|
|
domain_name = payload['siteDetails']['domain']
|
|
|
|
user_num = payload['concurrents']
|
|
|
|
user_acc = payload['siteDetails']['acct']
|
|
|
|
acc_url = 'https://www.gosquared.com/now/' + user_acc
|
2016-12-20 10:19:29 +01:00
|
|
|
body = BODY_TEMPLATE.format(website_name=domain_name, website_url=acc_url, user_num=user_num)
|
|
|
|
# allows for customisable topics
|
|
|
|
if topic is None:
|
|
|
|
topic = 'GoSquared - {website_name}'.format(website_name=domain_name)
|
|
|
|
|
2017-09-30 04:18:16 +02:00
|
|
|
check_send_stream_message(user_profile, request.client, stream,
|
|
|
|
topic, body)
|
2016-12-18 02:08:22 +01:00
|
|
|
return json_success()
|