2016-09-13 19:18:22 +02:00
|
|
|
from __future__ import absolute_import
|
2016-09-11 23:57:44 +02:00
|
|
|
from typing import Optional, Any, Dict
|
2016-07-29 15:06:41 +02:00
|
|
|
from collections import OrderedDict
|
|
|
|
from django.views.generic import TemplateView
|
2016-08-14 03:32:11 +02:00
|
|
|
from django.conf import settings
|
2016-09-13 19:18:22 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2016-07-29 15:06:41 +02:00
|
|
|
|
2016-09-13 19:18:22 +02:00
|
|
|
import ujson
|
|
|
|
|
|
|
|
from zerver.lib import bugdown
|
2016-07-29 15:06:41 +02:00
|
|
|
from zerver.lib.integrations import INTEGRATIONS
|
2016-09-13 19:18:22 +02:00
|
|
|
from zproject.jinja2 import render_to_response
|
2016-07-29 15:06:41 +02:00
|
|
|
|
2016-09-14 07:07:21 +02:00
|
|
|
def add_api_uri_context(context, request):
|
|
|
|
# type: (Dict[str, Any], HttpRequest) -> None
|
|
|
|
external_api_path_subdomain = settings.EXTERNAL_API_PATH
|
|
|
|
external_api_uri_subdomain = settings.EXTERNAL_API_URI
|
|
|
|
|
|
|
|
context['external_api_path_subdomain'] = external_api_path_subdomain
|
|
|
|
context['external_api_uri_subdomain'] = external_api_uri_subdomain
|
|
|
|
|
2016-09-13 19:09:03 +02:00
|
|
|
class ApiURLView(TemplateView):
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
# type: (Optional[Dict[str, Any]]) -> Dict[str, str]
|
|
|
|
context = super(ApiURLView, self).get_context_data(**kwargs)
|
2016-09-14 07:07:21 +02:00
|
|
|
add_api_uri_context(context, self.request)
|
2016-09-13 19:09:03 +02:00
|
|
|
return context
|
|
|
|
|
|
|
|
class IntegrationView(ApiURLView):
|
2016-07-29 15:06:41 +02:00
|
|
|
template_name = 'zerver/integrations.html'
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2016-09-13 19:09:03 +02:00
|
|
|
# type: (Optional[Dict[str, Any]]) -> Dict[str, Any]
|
|
|
|
context = super(IntegrationView, self).get_context_data(**kwargs) # type: Dict[str, Any]
|
2016-07-29 15:06:41 +02:00
|
|
|
alphabetical_sorted_integration = OrderedDict(sorted(INTEGRATIONS.items()))
|
|
|
|
context['integrations_dict'] = alphabetical_sorted_integration
|
2016-08-14 03:32:11 +02:00
|
|
|
|
|
|
|
settings_html = '<a href="../#settings">Zulip settings page</a>'
|
|
|
|
subscriptions_html = '<a target="_blank" href="../#subscriptions">subscriptions page</a>'
|
|
|
|
|
|
|
|
context['settings_html'] = settings_html
|
|
|
|
context['subscriptions_html'] = subscriptions_html
|
|
|
|
|
2016-07-29 15:06:41 +02:00
|
|
|
return context
|
2016-09-13 19:18:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
def api_endpoint_docs(request):
|
|
|
|
# type: (HttpRequest) -> HttpResponse
|
|
|
|
raw_calls = open('templates/zerver/api_content.json', 'r').read()
|
|
|
|
calls = ujson.loads(raw_calls)
|
|
|
|
langs = set()
|
|
|
|
for call in calls:
|
|
|
|
call["endpoint"] = "%s/v1/%s" % (settings.EXTERNAL_API_URI, call["endpoint"])
|
|
|
|
call["example_request"]["curl"] = call["example_request"]["curl"].replace("https://api.zulip.com",
|
|
|
|
settings.EXTERNAL_API_URI)
|
|
|
|
response = call['example_response']
|
|
|
|
if '\n' not in response:
|
|
|
|
# For 1-line responses, pretty-print them
|
|
|
|
extended_response = response.replace(", ", ",\n ")
|
|
|
|
else:
|
|
|
|
extended_response = response
|
|
|
|
call['rendered_response'] = bugdown.convert("~~~ .py\n" + extended_response + "\n~~~\n", "default")
|
|
|
|
for example_type in ('request', 'response'):
|
|
|
|
for lang in call.get('example_' + example_type, []):
|
|
|
|
langs.add(lang)
|
|
|
|
return render_to_response(
|
|
|
|
'zerver/api_endpoints.html', {
|
|
|
|
'content': calls,
|
|
|
|
'langs': langs,
|
|
|
|
},
|
|
|
|
request=request)
|