2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-10-22 15:39:39 +02:00
|
|
|
from django.http import HttpResponseRedirect
|
2016-04-21 23:48:34 +02:00
|
|
|
from django.contrib.auth import REDIRECT_FIELD_NAME
|
2012-11-06 20:27:55 +01:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2013-11-08 02:02:48 +01:00
|
|
|
from django.http import QueryDict, HttpResponseNotAllowed
|
2013-03-21 20:18:44 +01:00
|
|
|
from django.http.multipartparser import MultiPartParser
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.models import UserProfile, get_client, get_user_profile_by_email
|
|
|
|
from zerver.lib.response import json_error, json_unauthorized
|
2016-04-21 23:48:34 +02:00
|
|
|
from django.shortcuts import resolve_url
|
|
|
|
from django.utils.decorators import available_attrs
|
2012-11-08 23:02:16 +01:00
|
|
|
from django.utils.timezone import now
|
2012-11-28 05:37:13 +01:00
|
|
|
from django.conf import settings
|
2013-06-18 23:55:55 +02:00
|
|
|
import ujson
|
2016-01-24 04:22:35 +01:00
|
|
|
from six.moves import cStringIO as StringIO
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.queue import queue_json_publish
|
|
|
|
from zerver.lib.timestamp import datetime_to_timestamp
|
|
|
|
from zerver.lib.utils import statsd
|
|
|
|
from zerver.exceptions import RateLimited
|
|
|
|
from zerver.lib.rate_limiter import incr_ratelimit, is_ratelimited, \
|
2013-05-29 23:58:07 +02:00
|
|
|
api_calls_left
|
2013-10-17 16:33:04 +02:00
|
|
|
|
2012-11-02 00:23:26 +01:00
|
|
|
from functools import wraps
|
2013-03-21 20:15:27 +01:00
|
|
|
import base64
|
2013-05-29 23:58:07 +02:00
|
|
|
import logging
|
2013-07-02 17:30:04 +02:00
|
|
|
import cProfile
|
2013-10-07 17:35:22 +02:00
|
|
|
from zerver.lib.mandrill_client import get_mandrill_client
|
2016-04-21 23:48:34 +02:00
|
|
|
from six.moves import zip, urllib
|
2013-04-16 22:52:32 +02:00
|
|
|
|
2015-08-21 18:49:56 +02:00
|
|
|
if settings.ZULIP_COM:
|
2015-08-21 18:37:30 +02:00
|
|
|
from zilencer.models import get_deployment_by_domain, Deployment
|
|
|
|
else:
|
2013-11-12 23:37:00 +01:00
|
|
|
from mock import Mock
|
|
|
|
get_deployment_by_domain = Mock()
|
2016-01-28 01:14:13 +01:00
|
|
|
Deployment = Mock() # type: ignore # https://github.com/JukkaL/mypy/issues/1188
|
2013-11-12 23:37:00 +01:00
|
|
|
|
2013-10-17 16:33:04 +02:00
|
|
|
def get_deployment_or_userprofile(role):
|
|
|
|
return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)
|
|
|
|
|
2012-11-28 06:16:28 +01:00
|
|
|
class _RespondAsynchronously(object):
|
|
|
|
pass
|
2012-08-28 22:56:21 +02:00
|
|
|
|
2012-11-28 06:16:28 +01:00
|
|
|
# Return RespondAsynchronously from an @asynchronous view if the
|
2013-08-06 22:21:12 +02:00
|
|
|
# response will be provided later by calling handler.zulip_finish(),
|
2013-03-15 17:28:03 +01:00
|
|
|
# or has already been provided this way. We use this for longpolling
|
|
|
|
# mode.
|
2012-11-28 06:16:28 +01:00
|
|
|
RespondAsynchronously = _RespondAsynchronously()
|
2012-08-28 22:56:21 +02:00
|
|
|
|
|
|
|
def asynchronous(method):
|
2012-11-02 00:23:26 +01:00
|
|
|
@wraps(method)
|
2012-08-28 22:56:21 +02:00
|
|
|
def wrapper(request, *args, **kwargs):
|
2012-11-28 06:16:28 +01:00
|
|
|
return method(request, handler=request._tornado_handler, *args, **kwargs)
|
2012-10-27 23:56:01 +02:00
|
|
|
if getattr(method, 'csrf_exempt', False):
|
2016-01-27 20:38:00 +01:00
|
|
|
wrapper.csrf_exempt = True # type: ignore # https://github.com/JukkaL/mypy/issues/1170
|
2012-08-28 22:56:21 +02:00
|
|
|
return wrapper
|
2012-11-06 20:27:55 +01:00
|
|
|
|
2013-03-26 20:29:47 +01:00
|
|
|
def update_user_activity(request, user_profile):
|
2013-03-25 20:37:00 +01:00
|
|
|
# update_active_status also pushes to rabbitmq, and it seems
|
|
|
|
# redundant to log that here as well.
|
2016-04-03 07:58:06 +02:00
|
|
|
if request.META["PATH_INFO"] == '/json/users/me/presence':
|
2013-03-25 20:37:00 +01:00
|
|
|
return
|
2013-10-03 19:48:03 +02:00
|
|
|
|
|
|
|
if hasattr(request, '_query'):
|
|
|
|
query = request._query
|
|
|
|
else:
|
|
|
|
query = request.META['PATH_INFO']
|
|
|
|
|
|
|
|
event={'query': query,
|
2013-03-25 20:37:00 +01:00
|
|
|
'user_profile_id': user_profile.id,
|
|
|
|
'time': datetime_to_timestamp(now()),
|
2013-03-26 20:29:47 +01:00
|
|
|
'client': request.client.name}
|
2013-03-25 20:37:00 +01:00
|
|
|
queue_json_publish("user_activity", event, lambda event: None)
|
2013-01-11 21:16:42 +01:00
|
|
|
|
2013-11-08 02:02:48 +01:00
|
|
|
# Based on django.views.decorators.http.require_http_methods
|
|
|
|
def require_post(func):
|
|
|
|
@wraps(func)
|
|
|
|
def wrapper(request, *args, **kwargs):
|
|
|
|
if (request.method != "POST"
|
|
|
|
and not (request.method == "SOCKET"
|
|
|
|
and request.META['zulip.emulated_method'] == "POST")):
|
|
|
|
if request.method == "SOCKET":
|
|
|
|
err_method = "SOCKET/%s" % (request.META['zulip.emulated_method'],)
|
|
|
|
else:
|
|
|
|
err_method = request.method
|
|
|
|
logging.warning('Method Not Allowed (%s): %s', err_method, request.path,
|
|
|
|
extra={'status_code': 405, 'request': request})
|
|
|
|
return HttpResponseNotAllowed(["POST"])
|
|
|
|
return func(request, *args, **kwargs)
|
|
|
|
return wrapper
|
2012-11-06 20:27:55 +01:00
|
|
|
|
2013-12-09 22:12:18 +01:00
|
|
|
def require_realm_admin(func):
|
|
|
|
@wraps(func)
|
|
|
|
def wrapper(request, user_profile, *args, **kwargs):
|
2016-02-08 03:59:38 +01:00
|
|
|
if not user_profile.is_realm_admin:
|
2013-12-09 22:12:18 +01:00
|
|
|
raise JsonableError("Must be a realm administrator")
|
|
|
|
return func(request, user_profile, *args, **kwargs)
|
|
|
|
return wrapper
|
|
|
|
|
2013-12-19 18:10:30 +01:00
|
|
|
from zerver.lib.user_agent import parse_user_agent
|
2013-06-27 20:21:21 +02:00
|
|
|
|
2014-01-08 17:36:54 +01:00
|
|
|
def get_client_name(request, is_json_view):
|
2013-12-19 18:10:30 +01:00
|
|
|
# If the API request specified a client in the request content,
|
|
|
|
# that has priority. Otherwise, extract the client from the
|
|
|
|
# User-Agent.
|
2013-06-27 20:21:21 +02:00
|
|
|
if 'client' in request.REQUEST:
|
2014-01-08 17:36:54 +01:00
|
|
|
return request.REQUEST['client']
|
2014-01-08 17:25:49 +01:00
|
|
|
elif "HTTP_USER_AGENT" in request.META:
|
2013-12-19 18:10:30 +01:00
|
|
|
user_agent = parse_user_agent(request.META["HTTP_USER_AGENT"])
|
|
|
|
# We could check for a browser's name being "Mozilla", but
|
|
|
|
# e.g. Opera and MobileSafari don't set that, and it seems
|
|
|
|
# more robust to just key off whether it was a json view
|
|
|
|
if user_agent["name"] != "ZulipDesktop" and is_json_view:
|
|
|
|
# Avoid changing the client string for browsers Once this
|
|
|
|
# is out to prod, we can name the field to something like
|
|
|
|
# Browser for consistency.
|
2014-01-08 17:36:54 +01:00
|
|
|
return "website"
|
2013-12-19 18:10:30 +01:00
|
|
|
else:
|
2014-01-08 17:36:54 +01:00
|
|
|
return user_agent["name"]
|
2014-01-08 17:25:49 +01:00
|
|
|
else:
|
|
|
|
# In the future, we will require setting USER_AGENT, but for
|
|
|
|
# now we just want to tag these requests so we can review them
|
|
|
|
# in logs and figure out the extent of the problem
|
|
|
|
if is_json_view:
|
2014-01-08 17:36:54 +01:00
|
|
|
return "website"
|
2014-01-08 17:25:49 +01:00
|
|
|
else:
|
2014-01-08 17:36:54 +01:00
|
|
|
return "Unspecified"
|
2013-03-21 19:21:46 +01:00
|
|
|
|
2014-01-08 17:36:54 +01:00
|
|
|
def process_client(request, user_profile, is_json_view=False):
|
|
|
|
client_name = get_client_name(request, is_json_view)
|
2014-01-08 17:52:36 +01:00
|
|
|
|
|
|
|
# Transitional hack for early 2014. Eventually the ios clients
|
|
|
|
# will all report ZulipiOS, and we can remove the next couple lines.
|
|
|
|
if client_name == 'ios':
|
|
|
|
client_name = 'ZulipiOS'
|
|
|
|
|
2014-01-08 17:36:54 +01:00
|
|
|
request.client = get_client(client_name)
|
2013-03-21 19:21:46 +01:00
|
|
|
update_user_activity(request, user_profile)
|
|
|
|
|
2013-10-17 16:33:04 +02:00
|
|
|
def validate_api_key(role, api_key):
|
2013-08-21 00:36:45 +02:00
|
|
|
# Remove whitespace to protect users from trivial errors.
|
2013-10-17 16:33:04 +02:00
|
|
|
role, api_key = role.strip(), api_key.strip()
|
2013-08-21 00:36:45 +02:00
|
|
|
|
2013-03-21 19:21:46 +01:00
|
|
|
try:
|
2013-10-17 16:33:04 +02:00
|
|
|
profile = get_deployment_or_userprofile(role)
|
2013-03-21 19:21:46 +01:00
|
|
|
except UserProfile.DoesNotExist:
|
2013-10-17 16:33:04 +02:00
|
|
|
raise JsonableError("Invalid user: %s" % (role,))
|
|
|
|
except Deployment.DoesNotExist:
|
|
|
|
raise JsonableError("Invalid deployment: %s" % (role,))
|
2013-08-21 00:36:45 +02:00
|
|
|
|
2013-10-17 16:33:04 +02:00
|
|
|
if api_key != profile.api_key:
|
2013-08-21 00:09:49 +02:00
|
|
|
if len(api_key) != 32:
|
|
|
|
reason = "Incorrect API key length (keys should be 32 characters long)"
|
|
|
|
else:
|
|
|
|
reason = "Invalid API key"
|
2013-10-17 16:33:04 +02:00
|
|
|
raise JsonableError(reason + " for role '%s'" % (role,))
|
|
|
|
if not profile.is_active:
|
|
|
|
raise JsonableError("Account not active")
|
2014-03-05 19:20:26 +01:00
|
|
|
try:
|
|
|
|
if profile.realm.deactivated:
|
|
|
|
raise JsonableError("Realm for account has been deactivated")
|
|
|
|
except AttributeError:
|
|
|
|
# Deployment objects don't have realms
|
|
|
|
pass
|
2013-10-17 16:33:04 +02:00
|
|
|
return profile
|
2013-03-21 19:21:46 +01:00
|
|
|
|
2013-10-03 01:12:57 +02:00
|
|
|
# Use this for webhook views that don't get an email passed in.
|
|
|
|
def api_key_only_webhook_view(view_func):
|
|
|
|
@csrf_exempt
|
|
|
|
@has_request_variables
|
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, api_key=REQ,
|
|
|
|
*args, **kwargs):
|
|
|
|
|
|
|
|
try:
|
2016-04-21 21:10:46 +02:00
|
|
|
user_profile = UserProfile.objects.get(api_key=api_key)
|
2013-10-03 01:12:57 +02:00
|
|
|
except UserProfile.DoesNotExist:
|
2013-10-03 20:38:37 +02:00
|
|
|
raise JsonableError("Invalid API key")
|
2016-04-21 21:10:46 +02:00
|
|
|
if not user_profile.is_active:
|
|
|
|
raise JsonableError("Account not active")
|
|
|
|
if user_profile.realm.deactivated:
|
|
|
|
raise JsonableError("Realm for account has been deactivated")
|
2013-10-03 01:12:57 +02:00
|
|
|
|
|
|
|
request.user = user_profile
|
|
|
|
request._email = user_profile.email
|
2013-12-19 18:10:30 +01:00
|
|
|
process_client(request, user_profile)
|
2016-04-27 22:16:25 +02:00
|
|
|
if settings.RATE_LIMITING:
|
|
|
|
rate_limit_user(request, user_profile, domain='all')
|
2013-10-03 01:12:57 +02:00
|
|
|
return view_func(request, user_profile, *args, **kwargs)
|
|
|
|
return _wrapped_view_func
|
|
|
|
|
2016-04-21 23:41:28 +02:00
|
|
|
# From Django 1.8, modified to leave off ?next=/
|
2016-04-21 23:48:34 +02:00
|
|
|
def redirect_to_login(next, login_url=None,
|
|
|
|
redirect_field_name=REDIRECT_FIELD_NAME):
|
|
|
|
"""
|
|
|
|
Redirects the user to the login page, passing the given 'next' page
|
|
|
|
"""
|
|
|
|
resolved_url = resolve_url(login_url or settings.LOGIN_URL)
|
|
|
|
|
|
|
|
login_url_parts = list(urllib.parse.urlparse(resolved_url))
|
|
|
|
if redirect_field_name:
|
|
|
|
querystring = QueryDict(login_url_parts[4], mutable=True)
|
|
|
|
querystring[redirect_field_name] = next
|
2016-04-21 23:41:28 +02:00
|
|
|
# Don't add ?next=/, to keep our URLs clean
|
|
|
|
if next != '/':
|
|
|
|
login_url_parts[4] = querystring.urlencode(safe='/')
|
2016-04-21 23:48:34 +02:00
|
|
|
|
|
|
|
return HttpResponseRedirect(urllib.parse.urlunparse(login_url_parts))
|
|
|
|
|
|
|
|
# From Django 1.8
|
|
|
|
def user_passes_test(test_func, login_url=None, redirect_field_name=REDIRECT_FIELD_NAME):
|
|
|
|
"""
|
|
|
|
Decorator for views that checks that the user passes the given test,
|
|
|
|
redirecting to the log-in page if necessary. The test should be a callable
|
|
|
|
that takes the user object and returns True if the user passes.
|
|
|
|
"""
|
|
|
|
def decorator(view_func):
|
|
|
|
@wraps(view_func, assigned=available_attrs(view_func))
|
|
|
|
def _wrapped_view(request, *args, **kwargs):
|
|
|
|
if test_func(request.user):
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
path = request.build_absolute_uri()
|
|
|
|
resolved_login_url = resolve_url(login_url or settings.LOGIN_URL)
|
|
|
|
# If the login url is the same scheme and net location then just
|
|
|
|
# use the path as the "next" url.
|
|
|
|
login_scheme, login_netloc = urllib.parse.urlparse(resolved_login_url)[:2]
|
|
|
|
current_scheme, current_netloc = urllib.parse.urlparse(path)[:2]
|
|
|
|
if ((not login_scheme or login_scheme == current_scheme) and
|
|
|
|
(not login_netloc or login_netloc == current_netloc)):
|
|
|
|
path = request.get_full_path()
|
|
|
|
return redirect_to_login(
|
|
|
|
path, resolved_login_url, redirect_field_name)
|
|
|
|
return _wrapped_view
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
# Based on Django 1.8's @login_required
|
|
|
|
def zulip_login_required(function=None,
|
|
|
|
redirect_field_name=REDIRECT_FIELD_NAME,
|
|
|
|
login_url=settings.HOME_NOT_LOGGED_IN):
|
|
|
|
actual_decorator = user_passes_test(
|
|
|
|
lambda u: u.is_authenticated(),
|
|
|
|
login_url=login_url,
|
|
|
|
redirect_field_name=redirect_field_name
|
|
|
|
)
|
|
|
|
if function:
|
|
|
|
return actual_decorator(function)
|
|
|
|
return actual_decorator
|
|
|
|
|
2013-10-22 15:39:39 +02:00
|
|
|
def zulip_internal(view_func):
|
2016-04-21 23:48:34 +02:00
|
|
|
@zulip_login_required
|
2013-11-01 18:43:38 +01:00
|
|
|
@wraps(view_func)
|
2013-10-22 15:39:39 +02:00
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
2013-11-01 18:43:38 +01:00
|
|
|
request._query = view_func.__name__
|
2013-10-22 15:39:39 +02:00
|
|
|
if request.user.realm.domain != 'zulip.com':
|
|
|
|
return HttpResponseRedirect(settings.HOME_NOT_LOGGED_IN)
|
2013-10-22 21:03:34 +02:00
|
|
|
|
|
|
|
request._email = request.user.email
|
2013-12-19 18:10:30 +01:00
|
|
|
process_client(request, request.user)
|
2013-10-22 15:39:39 +02:00
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
return _wrapped_view_func
|
2013-10-03 01:12:57 +02:00
|
|
|
|
2013-12-11 20:50:49 +01:00
|
|
|
# authenticated_api_view will add the authenticated user's
|
|
|
|
# user_profile to the view function's arguments list, since we have to
|
|
|
|
# look it up anyway. It is deprecated in favor on the REST API
|
|
|
|
# versions.
|
2012-11-06 20:27:55 +01:00
|
|
|
def authenticated_api_view(view_func):
|
|
|
|
@csrf_exempt
|
|
|
|
@require_post
|
2012-11-14 19:45:13 +01:00
|
|
|
@has_request_variables
|
2012-11-06 20:27:55 +01:00
|
|
|
@wraps(view_func)
|
2013-12-13 20:37:15 +01:00
|
|
|
def _wrapped_view_func(request, email=REQ, api_key=REQ('api_key', default=None),
|
|
|
|
api_key_legacy=REQ('api-key', default=None),
|
2012-11-14 19:45:13 +01:00
|
|
|
*args, **kwargs):
|
2013-12-13 20:37:15 +01:00
|
|
|
if not api_key and not api_key_legacy:
|
|
|
|
raise RequestVariableMissingError("api_key")
|
|
|
|
elif not api_key:
|
|
|
|
api_key = api_key_legacy
|
2013-03-21 19:21:46 +01:00
|
|
|
user_profile = validate_api_key(email, api_key)
|
2013-05-14 16:40:24 +02:00
|
|
|
request.user = user_profile
|
|
|
|
request._email = user_profile.email
|
2013-12-19 18:10:30 +01:00
|
|
|
process_client(request, user_profile)
|
2013-05-29 23:58:07 +02:00
|
|
|
# Apply rate limiting
|
|
|
|
limited_func = rate_limit()(view_func)
|
|
|
|
return limited_func(request, user_profile, *args, **kwargs)
|
2012-11-06 20:27:55 +01:00
|
|
|
return _wrapped_view_func
|
|
|
|
|
2013-08-29 20:47:04 +02:00
|
|
|
# A more REST-y authentication decorator, using, in particular, HTTP Basic
|
|
|
|
# authentication.
|
2013-03-21 20:15:27 +01:00
|
|
|
def authenticated_rest_api_view(view_func):
|
2013-08-16 00:41:35 +02:00
|
|
|
@csrf_exempt
|
2013-03-21 20:15:27 +01:00
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
# First try block attempts to get the credentials we need to do authentication
|
|
|
|
try:
|
|
|
|
# Grab the base64-encoded authentication string, decode it, and split it into
|
|
|
|
# the email and API key
|
|
|
|
auth_type, encoded_value = request.META['HTTP_AUTHORIZATION'].split()
|
|
|
|
# case insensitive per RFC 1945
|
|
|
|
if auth_type.lower() != "basic":
|
|
|
|
return json_error("Only Basic authentication is supported.")
|
2013-10-17 16:33:04 +02:00
|
|
|
role, api_key = base64.b64decode(encoded_value).split(":")
|
2013-03-21 20:15:27 +01:00
|
|
|
except ValueError:
|
|
|
|
return json_error("Invalid authorization header for basic auth")
|
|
|
|
except KeyError:
|
2013-07-30 23:20:16 +02:00
|
|
|
return json_unauthorized("Missing authorization header for basic auth")
|
2013-03-21 20:15:27 +01:00
|
|
|
|
|
|
|
# Now we try to do authentication or die
|
|
|
|
try:
|
2013-10-17 16:33:04 +02:00
|
|
|
# Could be a UserProfile or a Deployment
|
|
|
|
profile = validate_api_key(role, api_key)
|
2015-11-01 17:08:33 +01:00
|
|
|
except JsonableError as e:
|
2013-07-30 23:20:16 +02:00
|
|
|
return json_unauthorized(e.error)
|
2013-10-17 16:33:04 +02:00
|
|
|
request.user = profile
|
2013-12-19 18:10:30 +01:00
|
|
|
process_client(request, profile)
|
2013-10-17 16:33:04 +02:00
|
|
|
if isinstance(profile, UserProfile):
|
|
|
|
request._email = profile.email
|
|
|
|
else:
|
|
|
|
request._email = "deployment:" + role
|
|
|
|
profile.rate_limits = ""
|
2013-05-29 23:58:07 +02:00
|
|
|
# Apply rate limiting
|
2013-10-17 16:33:04 +02:00
|
|
|
return rate_limit()(view_func)(request, profile, *args, **kwargs)
|
2013-03-21 20:15:27 +01:00
|
|
|
return _wrapped_view_func
|
|
|
|
|
2013-04-03 21:44:12 +02:00
|
|
|
def process_as_post(view_func):
|
2013-03-21 20:18:44 +01:00
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
# Adapted from django/http/__init__.py.
|
|
|
|
# So by default Django doesn't populate request.POST for anything besides
|
2013-04-03 21:44:12 +02:00
|
|
|
# POST requests. We want this dict populated for PATCH/PUT, so we have to
|
2013-03-21 20:18:44 +01:00
|
|
|
# do it ourselves.
|
|
|
|
#
|
|
|
|
# This will not be required in the future, a bug will be filed against
|
|
|
|
# Django upstream.
|
2013-04-03 22:01:58 +02:00
|
|
|
|
|
|
|
if not request.POST:
|
|
|
|
# Only take action if POST is empty.
|
|
|
|
if request.META.get('CONTENT_TYPE', '').startswith('multipart'):
|
2013-08-01 19:33:30 +02:00
|
|
|
# Note that request._files is just the private attribute that backs the
|
|
|
|
# FILES property, so we are essentially setting request.FILES here. (In
|
|
|
|
# Django 1.5 FILES was still a read-only property.)
|
|
|
|
request.POST, request._files = MultiPartParser(request.META, StringIO(request.body),
|
|
|
|
request.upload_handlers, request.encoding).parse()
|
2013-04-03 22:01:58 +02:00
|
|
|
else:
|
|
|
|
request.POST = QueryDict(request.body, encoding=request.encoding)
|
2013-03-21 20:18:44 +01:00
|
|
|
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
|
|
|
|
return _wrapped_view_func
|
|
|
|
|
2013-06-27 20:21:21 +02:00
|
|
|
def authenticate_log_and_execute_json(request, view_func, *args, **kwargs):
|
2012-12-02 20:51:51 +01:00
|
|
|
if not request.user.is_authenticated():
|
|
|
|
return json_error("Not logged in", status=401)
|
2013-03-29 17:39:53 +01:00
|
|
|
user_profile = request.user
|
2016-04-21 21:12:55 +02:00
|
|
|
if not user_profile.is_active:
|
|
|
|
raise JsonableError("Account not active")
|
|
|
|
if user_profile.realm.deactivated:
|
|
|
|
raise JsonableError("Realm for account has been deactivated")
|
2013-12-19 18:10:30 +01:00
|
|
|
process_client(request, user_profile, True)
|
2013-03-28 20:43:34 +01:00
|
|
|
request._email = user_profile.email
|
2012-12-02 20:51:51 +01:00
|
|
|
return view_func(request, user_profile, *args, **kwargs)
|
|
|
|
|
2012-11-06 20:27:55 +01:00
|
|
|
# Checks if the request is a POST request and that the user is logged
|
|
|
|
# in. If not, return an error (the @login_required behavior of
|
|
|
|
# redirecting to a login page doesn't make sense for json views)
|
2012-12-02 20:51:51 +01:00
|
|
|
def authenticated_json_post_view(view_func):
|
2012-11-06 20:27:55 +01:00
|
|
|
@require_post
|
2012-11-28 21:15:50 +01:00
|
|
|
@has_request_variables
|
2012-11-06 20:27:55 +01:00
|
|
|
@wraps(view_func)
|
2012-11-28 21:15:50 +01:00
|
|
|
def _wrapped_view_func(request,
|
|
|
|
*args, **kwargs):
|
2013-06-27 20:21:21 +02:00
|
|
|
return authenticate_log_and_execute_json(request, view_func, *args, **kwargs)
|
2012-12-02 20:51:51 +01:00
|
|
|
return _wrapped_view_func
|
|
|
|
|
|
|
|
def authenticated_json_view(view_func):
|
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request,
|
|
|
|
*args, **kwargs):
|
2013-06-27 20:21:21 +02:00
|
|
|
return authenticate_log_and_execute_json(request, view_func, *args, **kwargs)
|
2012-11-06 20:27:55 +01:00
|
|
|
return _wrapped_view_func
|
2012-11-01 23:21:12 +01:00
|
|
|
|
2012-11-28 05:37:13 +01:00
|
|
|
# These views are used by the main Django server to notify the Tornado server
|
|
|
|
# of events. We protect them from the outside world by checking a shared
|
|
|
|
# secret, and also the originating IP (for now).
|
|
|
|
def authenticate_notify(request):
|
|
|
|
return (request.META['REMOTE_ADDR'] in ('127.0.0.1', '::1')
|
|
|
|
and request.POST.get('secret') == settings.SHARED_SECRET)
|
|
|
|
|
|
|
|
def internal_notify_view(view_func):
|
|
|
|
@csrf_exempt
|
|
|
|
@require_post
|
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
if not authenticate_notify(request):
|
|
|
|
return json_error('Access denied', status=403)
|
2012-11-28 05:55:59 +01:00
|
|
|
if not hasattr(request, '_tornado_handler'):
|
|
|
|
# We got called through the non-Tornado server somehow.
|
|
|
|
# This is not a security check; it's an internal assertion
|
|
|
|
# to help us find bugs.
|
2015-11-01 17:11:12 +01:00
|
|
|
raise RuntimeError('notify view called with no Tornado handler')
|
2013-02-11 23:15:34 +01:00
|
|
|
request._email = "internal"
|
2012-11-28 05:37:13 +01:00
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
return _wrapped_view_func
|
|
|
|
|
2013-01-09 19:46:30 +01:00
|
|
|
class JsonableError(Exception):
|
2016-04-21 21:47:01 +02:00
|
|
|
def __init__(self, error, status_code=400):
|
2013-01-09 19:46:30 +01:00
|
|
|
self.error = error
|
2016-04-21 21:47:01 +02:00
|
|
|
self.status_code = status_code
|
2013-01-09 19:46:30 +01:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.to_json_error_msg()
|
|
|
|
|
|
|
|
def to_json_error_msg(self):
|
|
|
|
return self.error
|
|
|
|
|
|
|
|
class RequestVariableMissingError(JsonableError):
|
2016-04-21 21:47:01 +02:00
|
|
|
def __init__(self, var_name, status_code=400):
|
2012-12-19 20:19:46 +01:00
|
|
|
self.var_name = var_name
|
2016-04-21 21:47:01 +02:00
|
|
|
self.status_code = status_code
|
2012-12-19 20:19:46 +01:00
|
|
|
|
|
|
|
def to_json_error_msg(self):
|
|
|
|
return "Missing '%s' argument" % (self.var_name,)
|
|
|
|
|
2013-01-09 19:46:30 +01:00
|
|
|
class RequestVariableConversionError(JsonableError):
|
2016-04-21 21:47:01 +02:00
|
|
|
def __init__(self, var_name, bad_value, status_code=400):
|
2012-12-19 20:19:46 +01:00
|
|
|
self.var_name = var_name
|
|
|
|
self.bad_value = bad_value
|
2016-04-21 21:47:01 +02:00
|
|
|
self.status_code = status_code
|
2012-12-19 20:19:46 +01:00
|
|
|
|
|
|
|
def to_json_error_msg(self):
|
|
|
|
return "Bad value for '%s': %s" % (self.var_name, self.bad_value)
|
|
|
|
|
2012-11-01 23:21:12 +01:00
|
|
|
# Used in conjunction with @has_request_variables, below
|
2013-05-08 20:16:16 +02:00
|
|
|
class REQ(object):
|
2012-11-01 23:21:12 +01:00
|
|
|
# NotSpecified is a sentinel value for determining whether a
|
|
|
|
# default value was specified for a request variable. We can't
|
|
|
|
# use None because that could be a valid, user-specified default
|
|
|
|
class _NotSpecified(object):
|
|
|
|
pass
|
|
|
|
NotSpecified = _NotSpecified()
|
|
|
|
|
2013-12-13 19:51:18 +01:00
|
|
|
def __init__(self, whence=None, converter=None, default=NotSpecified, validator=None):
|
2012-11-01 23:21:12 +01:00
|
|
|
"""
|
|
|
|
whence: the name of the request variable that should be used
|
|
|
|
for this parameter. Defaults to a request variable of the
|
|
|
|
same name as the parameter.
|
|
|
|
|
|
|
|
converter: a function that takes a string and returns a new
|
|
|
|
value. If specified, this will be called on the request
|
|
|
|
variable value before passing to the function
|
|
|
|
|
|
|
|
default: a value to be used for the argument if the parameter
|
|
|
|
is missing in the request
|
2013-12-13 19:51:18 +01:00
|
|
|
|
|
|
|
validator: similar to converter, but takes an already parsed JSON
|
|
|
|
data structure. If specified, we will parse the JSON request
|
|
|
|
variable value before passing to the function
|
2012-11-01 23:21:12 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
self.post_var_name = whence
|
2016-01-26 03:10:17 +01:00
|
|
|
self.func_var_name = None # type: str
|
2012-11-01 23:21:12 +01:00
|
|
|
self.converter = converter
|
2013-12-13 19:51:18 +01:00
|
|
|
self.validator = validator
|
2012-11-01 23:21:12 +01:00
|
|
|
self.default = default
|
|
|
|
|
2013-12-13 19:51:18 +01:00
|
|
|
if converter and validator:
|
|
|
|
raise Exception('converter and validator are mutually exclusive')
|
|
|
|
|
2012-11-01 23:21:12 +01:00
|
|
|
# Extracts variables from the request object and passes them as
|
|
|
|
# named function arguments. The request object must be the first
|
|
|
|
# argument to the function.
|
|
|
|
#
|
|
|
|
# To use, assign a function parameter a default value that is an
|
2013-05-08 20:16:16 +02:00
|
|
|
# instance of the REQ class. That paramter will then be automatically
|
|
|
|
# populated from the HTTP request. The request object must be the
|
|
|
|
# first argument to the decorated function.
|
2012-11-08 22:30:39 +01:00
|
|
|
#
|
2012-12-21 23:03:43 +01:00
|
|
|
# This should generally be the innermost (syntactically bottommost)
|
|
|
|
# decorator applied to a view, since other decorators won't preserve
|
|
|
|
# the default parameter values used by has_request_variables.
|
|
|
|
#
|
2012-11-08 22:30:39 +01:00
|
|
|
# Note that this can't be used in helper functions which are not
|
|
|
|
# expected to call json_error or json_success, as it uses json_error
|
|
|
|
# internally when it encounters an error
|
2012-11-01 23:21:12 +01:00
|
|
|
def has_request_variables(view_func):
|
2015-11-01 17:09:54 +01:00
|
|
|
num_params = view_func.__code__.co_argcount
|
|
|
|
if view_func.__defaults__ is None:
|
2012-11-01 23:21:12 +01:00
|
|
|
num_default_params = 0
|
|
|
|
else:
|
2015-11-01 17:09:54 +01:00
|
|
|
num_default_params = len(view_func.__defaults__)
|
|
|
|
default_param_names = view_func.__code__.co_varnames[num_params - num_default_params:]
|
|
|
|
default_param_values = view_func.__defaults__
|
2013-03-26 18:04:51 +01:00
|
|
|
if default_param_values is None:
|
|
|
|
default_param_values = []
|
2012-11-01 23:21:12 +01:00
|
|
|
|
|
|
|
post_params = []
|
|
|
|
|
|
|
|
for (name, value) in zip(default_param_names, default_param_values):
|
2013-05-08 20:16:16 +02:00
|
|
|
if isinstance(value, REQ):
|
2012-11-01 23:21:12 +01:00
|
|
|
value.func_var_name = name
|
|
|
|
if value.post_var_name is None:
|
|
|
|
value.post_var_name = name
|
|
|
|
post_params.append(value)
|
2013-05-08 20:16:16 +02:00
|
|
|
elif value == REQ:
|
|
|
|
# If the function definition does not actually instantiate
|
|
|
|
# a REQ object but instead uses the REQ class itself as a
|
|
|
|
# value, we instantiate it as a convenience
|
2013-03-22 15:57:31 +01:00
|
|
|
post_var = value(name)
|
2012-11-01 23:21:12 +01:00
|
|
|
post_var.func_var_name = name
|
|
|
|
post_params.append(post_var)
|
|
|
|
|
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
for param in post_params:
|
2012-11-27 00:37:40 +01:00
|
|
|
if param.func_var_name in kwargs:
|
|
|
|
continue
|
|
|
|
|
2012-11-09 17:52:44 +01:00
|
|
|
default_assigned = False
|
2012-11-01 23:21:12 +01:00
|
|
|
try:
|
2013-05-08 20:16:16 +02:00
|
|
|
val = request.REQUEST[param.post_var_name]
|
2012-11-01 23:21:12 +01:00
|
|
|
except KeyError:
|
2013-05-08 20:16:16 +02:00
|
|
|
if param.default is REQ.NotSpecified:
|
2012-12-19 20:19:46 +01:00
|
|
|
raise RequestVariableMissingError(param.post_var_name)
|
2012-11-01 23:21:12 +01:00
|
|
|
val = param.default
|
2012-11-09 17:52:44 +01:00
|
|
|
default_assigned = True
|
2012-11-01 23:21:12 +01:00
|
|
|
|
2012-11-09 17:52:44 +01:00
|
|
|
if param.converter is not None and not default_assigned:
|
2012-11-01 23:21:12 +01:00
|
|
|
try:
|
|
|
|
val = param.converter(val)
|
2014-02-11 16:37:56 +01:00
|
|
|
except JsonableError:
|
|
|
|
raise
|
2012-11-01 23:21:12 +01:00
|
|
|
except:
|
2012-12-19 20:19:46 +01:00
|
|
|
raise RequestVariableConversionError(param.post_var_name, val)
|
2013-12-13 19:51:18 +01:00
|
|
|
|
|
|
|
# Validators are like converters, but they don't handle JSON parsing; we do.
|
|
|
|
if param.validator is not None and not default_assigned:
|
|
|
|
try:
|
|
|
|
val = ujson.loads(val)
|
|
|
|
except:
|
|
|
|
raise JsonableError('argument "%s" is not valid json.' % (param.post_var_name,))
|
|
|
|
|
|
|
|
error = param.validator(param.post_var_name, val)
|
|
|
|
if error:
|
|
|
|
raise JsonableError(error)
|
|
|
|
|
2012-11-01 23:21:12 +01:00
|
|
|
kwargs[param.func_var_name] = val
|
|
|
|
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
|
|
|
|
return _wrapped_view_func
|
2013-01-08 17:44:22 +01:00
|
|
|
|
|
|
|
# Converter functions for use with has_request_variables
|
|
|
|
def to_non_negative_int(x):
|
|
|
|
x = int(x)
|
|
|
|
if x < 0:
|
|
|
|
raise ValueError("argument is negative")
|
|
|
|
return x
|
|
|
|
|
2014-01-07 23:14:13 +01:00
|
|
|
def to_non_negative_float(x):
|
|
|
|
x = float(x)
|
|
|
|
if x < 0:
|
|
|
|
raise ValueError("argument is negative")
|
|
|
|
return x
|
|
|
|
|
2014-07-31 04:54:50 +02:00
|
|
|
def flexible_boolean(boolean):
|
|
|
|
"""Returns True for any of "1", "true", or "True". Returns False otherwise."""
|
|
|
|
if boolean in ("1", "true", "True"):
|
2014-01-09 20:59:05 +01:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2013-04-16 22:52:32 +02:00
|
|
|
def statsd_increment(counter, val=1):
|
|
|
|
"""Increments a statsd counter on completion of the
|
|
|
|
decorated function.
|
|
|
|
|
|
|
|
Pass the name of the counter to this decorator-returning function."""
|
|
|
|
def wrapper(func):
|
|
|
|
@wraps(func)
|
|
|
|
def wrapped_func(*args, **kwargs):
|
2013-05-29 23:58:07 +02:00
|
|
|
ret = func(*args, **kwargs)
|
2013-04-16 22:52:32 +02:00
|
|
|
statsd.incr(counter, val)
|
2013-05-29 23:58:07 +02:00
|
|
|
return ret
|
|
|
|
return wrapped_func
|
|
|
|
return wrapper
|
|
|
|
|
2013-06-06 20:08:02 +02:00
|
|
|
def rate_limit_user(request, user, domain):
|
|
|
|
"""Returns whether or not a user was rate limited. Will raise a RateLimited exception
|
|
|
|
if the user has been rate limited, otherwise returns and modifies request to contain
|
|
|
|
the rate limit information"""
|
|
|
|
|
|
|
|
ratelimited, time = is_ratelimited(user, domain)
|
|
|
|
request._ratelimit_applied_limits = True
|
|
|
|
request._ratelimit_secs_to_freedom = time
|
|
|
|
request._ratelimit_over_limit = ratelimited
|
|
|
|
# Abort this request if the user is over her rate limits
|
|
|
|
if ratelimited:
|
2013-10-17 16:33:04 +02:00
|
|
|
statsd.incr("ratelimiter.limited.%s.%s" % (type(user), user.id))
|
2013-06-06 20:08:02 +02:00
|
|
|
raise RateLimited()
|
|
|
|
|
|
|
|
incr_ratelimit(user, domain)
|
|
|
|
calls_remaining, time_reset = api_calls_left(user, domain)
|
|
|
|
|
|
|
|
request._ratelimit_remaining = calls_remaining
|
|
|
|
request._ratelimit_secs_to_freedom = time_reset
|
|
|
|
|
2013-05-29 23:58:07 +02:00
|
|
|
def rate_limit(domain='all'):
|
|
|
|
"""Rate-limits a view. Takes an optional 'domain' param if you wish to rate limit different
|
|
|
|
types of API calls independently.
|
|
|
|
|
|
|
|
Returns a decorator"""
|
|
|
|
def wrapper(func):
|
|
|
|
@wraps(func)
|
|
|
|
def wrapped_func(request, *args, **kwargs):
|
|
|
|
# Don't rate limit requests from Django that come from our own servers,
|
|
|
|
# and don't rate-limit dev instances
|
|
|
|
no_limits = False
|
|
|
|
if request.client and request.client.name.lower() == 'internal' and \
|
|
|
|
(request.META['REMOTE_ADDR'] in ['::1', '127.0.0.1'] or settings.DEBUG):
|
|
|
|
no_limits = True
|
|
|
|
|
|
|
|
if no_limits:
|
|
|
|
return func(request, *args, **kwargs)
|
|
|
|
|
|
|
|
try:
|
|
|
|
user = request.user
|
|
|
|
except:
|
|
|
|
user = None
|
|
|
|
|
|
|
|
# Rate-limiting data is stored in redis
|
|
|
|
# We also only support rate-limiting authenticated
|
|
|
|
# views right now.
|
|
|
|
# TODO(leo) - implement per-IP non-authed rate limiting
|
|
|
|
if not settings.RATE_LIMITING or not user:
|
|
|
|
if not user:
|
|
|
|
logging.error("Requested rate-limiting on %s but user is not authenticated!" % \
|
|
|
|
func.__name__)
|
|
|
|
return func(request, *args, **kwargs)
|
|
|
|
|
2013-06-06 20:08:02 +02:00
|
|
|
rate_limit_user(request, user, domain)
|
2013-05-29 23:58:07 +02:00
|
|
|
|
|
|
|
return func(request, *args, **kwargs)
|
2013-04-16 22:52:32 +02:00
|
|
|
return wrapped_func
|
|
|
|
return wrapper
|
2013-07-02 17:30:04 +02:00
|
|
|
|
|
|
|
def profiled(func):
|
|
|
|
"""
|
|
|
|
This decorator should obviously be used only in a dev environment.
|
|
|
|
It works best when surrounding a function that you expect to be
|
2016-04-12 07:16:09 +02:00
|
|
|
called once. One strategy is to write a backend test and wrap the
|
|
|
|
test case with the profiled decorator.
|
2013-07-02 17:30:04 +02:00
|
|
|
|
|
|
|
You can run a single test case like this:
|
|
|
|
|
2016-04-12 07:16:09 +02:00
|
|
|
# edit zerver/tests/test_external.py and place @profiled above the test case below
|
|
|
|
./tools/test-backend zerver.tests.test_external.RateLimitTests.test_ratelimit_decrease
|
2013-07-02 17:30:04 +02:00
|
|
|
|
|
|
|
Then view the results like this:
|
|
|
|
|
|
|
|
./tools/show-profile-results.py test_ratelimit_decrease.profile
|
|
|
|
|
|
|
|
"""
|
|
|
|
@wraps(func)
|
|
|
|
def wrapped_func(*args, **kwargs):
|
|
|
|
fn = func.__name__ + ".profile"
|
|
|
|
prof = cProfile.Profile()
|
|
|
|
retval = prof.runcall(func, *args, **kwargs)
|
|
|
|
prof.dump_stats(fn)
|
|
|
|
return retval
|
|
|
|
return wrapped_func
|
2013-10-07 17:35:22 +02:00
|
|
|
|
|
|
|
def uses_mandrill(func):
|
|
|
|
"""
|
|
|
|
This decorator takes a function with keyword argument "mail_client" and
|
|
|
|
fills it in with the mail_client for the Mandrill account.
|
|
|
|
"""
|
|
|
|
@wraps(func)
|
|
|
|
def wrapped_func(*args, **kwargs):
|
|
|
|
kwargs['mail_client'] = get_mandrill_client()
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
return wrapped_func
|
|
|
|
|