mirror of https://github.com/zulip/zulip.git
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
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
|
|
|
|
from zerver.models import UserProfile
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
from typing import Text
|
|
from typing import Dict, Any, Optional
|
|
|
|
BODY_TEMPLATE = '[{website_name}]({website_url}) has {user_num} visitors online.'
|
|
|
|
@api_key_only_webhook_view('GoSquared')
|
|
@has_request_variables
|
|
def api_gosquared_webhook(request, user_profile,
|
|
payload=REQ(argument_type='body'),
|
|
stream=REQ(default='gosquared'),
|
|
topic=REQ(default=None)):
|
|
# type: (HttpRequest, UserProfile, Dict[str, Dict[str, Any]], Text, Text) -> HttpResponse
|
|
try:
|
|
domain_name = payload['siteDetails']['domain']
|
|
user_num = payload['concurrents']
|
|
user_acc = payload['siteDetails']['acct']
|
|
acc_url = 'https://www.gosquared.com/now/' + user_acc
|
|
except KeyError as e:
|
|
return json_error(_("Missing key {} in JSON").format(str(e)))
|
|
|
|
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)
|
|
|
|
check_send_message(user_profile, request.client, 'stream', [stream],
|
|
topic, body)
|
|
return json_success()
|