2012-11-06 20:27:55 +01:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2012-11-20 00:10:37 +01:00
|
|
|
from django.views.decorators.http import require_POST
|
2012-11-08 23:02:16 +01:00
|
|
|
from zephyr.models import UserProfile, UserActivity, get_client
|
2012-11-06 20:27:55 +01:00
|
|
|
from zephyr.lib.response import json_success, json_error
|
2012-11-08 23:02:16 +01:00
|
|
|
from django.utils.timezone import now
|
2012-11-27 00:29:50 +01:00
|
|
|
from django.db import transaction, IntegrityError
|
2012-11-06 20:27:55 +01:00
|
|
|
|
2012-11-02 00:23:26 +01:00
|
|
|
from functools import wraps
|
|
|
|
|
2012-08-28 22:56:21 +02:00
|
|
|
import types
|
|
|
|
|
|
|
|
class TornadoAsyncException(Exception): pass
|
|
|
|
|
|
|
|
class _DefGen_Return(BaseException):
|
|
|
|
def __init__(self, value):
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
def returnResponse(value):
|
|
|
|
raise _DefGen_Return(value)
|
|
|
|
|
|
|
|
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):
|
|
|
|
try:
|
2012-11-15 18:52:46 +01:00
|
|
|
v = method(request, handler=request._tornado_handler, *args, **kwargs)
|
2012-08-28 22:56:21 +02:00
|
|
|
if v == None or type(v) == types.GeneratorType:
|
2012-09-05 17:23:58 +02:00
|
|
|
raise TornadoAsyncException
|
2012-08-28 22:56:21 +02:00
|
|
|
except _DefGen_Return, e:
|
|
|
|
request._tornado_handler.finish(e.value.content)
|
|
|
|
return v
|
2012-10-27 23:56:01 +02:00
|
|
|
if getattr(method, 'csrf_exempt', False):
|
|
|
|
wrapper.csrf_exempt = True
|
2012-08-28 22:56:21 +02:00
|
|
|
return wrapper
|
2012-11-06 20:27:55 +01:00
|
|
|
|
2012-11-20 00:10:37 +01:00
|
|
|
# I like the all-lowercase name better
|
|
|
|
require_post = require_POST
|
2012-11-06 20:27:55 +01:00
|
|
|
|
2012-11-08 23:02:16 +01:00
|
|
|
def parse_client(request, default):
|
|
|
|
client_name = default
|
|
|
|
if 'client' in request.POST:
|
|
|
|
client_name = request.POST['client']
|
|
|
|
return get_client(client_name)
|
|
|
|
|
|
|
|
def update_user_activity(request, user_profile, client):
|
|
|
|
current_time = now()
|
2012-11-27 00:29:50 +01:00
|
|
|
try:
|
|
|
|
(activity, created) = UserActivity.objects.get_or_create(
|
|
|
|
user_profile = user_profile,
|
|
|
|
client = client,
|
|
|
|
query = request.META["PATH_INFO"],
|
|
|
|
defaults={'last_visit': current_time, 'count': 0})
|
|
|
|
except IntegrityError:
|
|
|
|
transaction.commit()
|
|
|
|
activity = UserActivity.objects.get(user_profile = user_profile,
|
|
|
|
client = client,
|
|
|
|
query = request.META["PATH_INFO"])
|
2012-11-08 23:02:16 +01:00
|
|
|
activity.count += 1
|
|
|
|
activity.last_visit = current_time
|
|
|
|
activity.save()
|
|
|
|
|
2012-11-06 20:27:55 +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.
|
|
|
|
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)
|
2012-11-14 19:45:13 +01:00
|
|
|
def _wrapped_view_func(request, email=POST, api_key=POST('api-key'),
|
|
|
|
*args, **kwargs):
|
2012-11-06 20:27:55 +01:00
|
|
|
try:
|
2012-11-14 19:43:32 +01:00
|
|
|
user_profile = UserProfile.objects.get(user__email=email)
|
2012-11-06 20:27:55 +01:00
|
|
|
except UserProfile.DoesNotExist:
|
2012-11-14 19:43:32 +01:00
|
|
|
return json_error("Invalid user: %s" % (email,))
|
|
|
|
if api_key != user_profile.api_key:
|
|
|
|
return json_error("Invalid API key for user '%s'" % (email,))
|
2012-11-08 23:02:16 +01:00
|
|
|
update_user_activity(request, user_profile,
|
|
|
|
parse_client(request, "API"))
|
2012-11-06 20:27:55 +01:00
|
|
|
return view_func(request, user_profile, *args, **kwargs)
|
|
|
|
return _wrapped_view_func
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
def authenticated_json_view(view_func):
|
|
|
|
@require_post
|
|
|
|
@wraps(view_func)
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
if not request.user.is_authenticated():
|
2012-11-21 00:12:53 +01:00
|
|
|
return json_error("Not logged in", status=401)
|
2012-11-08 23:02:16 +01:00
|
|
|
update_user_activity(request, request.user.userprofile,
|
|
|
|
parse_client(request, "website"))
|
2012-11-08 22:43:00 +01:00
|
|
|
return view_func(request, request.user.userprofile, *args, **kwargs)
|
2012-11-06 20:27:55 +01:00
|
|
|
return _wrapped_view_func
|
2012-11-01 23:21:12 +01:00
|
|
|
|
|
|
|
# Used in conjunction with @has_request_variables, below
|
|
|
|
class POST(object):
|
|
|
|
# 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()
|
|
|
|
|
|
|
|
def __init__(self, whence=None, converter=None, default=NotSpecified):
|
|
|
|
"""
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
|
|
|
self.post_var_name = whence
|
|
|
|
self.func_var_name = None
|
|
|
|
self.converter = converter
|
|
|
|
self.default = default
|
|
|
|
|
|
|
|
# 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
|
|
|
|
# instance of the POST 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
|
|
|
#
|
|
|
|
# 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):
|
|
|
|
num_params = view_func.func_code.co_argcount
|
|
|
|
if view_func.func_defaults is None:
|
|
|
|
num_default_params = 0
|
|
|
|
else:
|
|
|
|
num_default_params = len(view_func.func_defaults)
|
|
|
|
default_param_names = view_func.func_code.co_varnames[num_params - num_default_params:]
|
|
|
|
default_param_values = view_func.func_defaults
|
|
|
|
|
|
|
|
post_params = []
|
|
|
|
|
|
|
|
for (name, value) in zip(default_param_names, default_param_values):
|
|
|
|
if isinstance(value, POST):
|
|
|
|
value.func_var_name = name
|
|
|
|
if value.post_var_name is None:
|
|
|
|
value.post_var_name = name
|
|
|
|
post_params.append(value)
|
|
|
|
elif value == POST:
|
|
|
|
# If the function definition does not actually
|
|
|
|
# instantiate a POST object but instead uses the POST
|
|
|
|
# class itself as a value, we instantiate it as a
|
|
|
|
# convenience
|
|
|
|
post_var = POST(name)
|
|
|
|
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:
|
|
|
|
val = request.POST[param.post_var_name]
|
|
|
|
except KeyError:
|
|
|
|
if param.default is POST.NotSpecified:
|
|
|
|
return json_error("Missing '%s' argument" % (param.post_var_name,))
|
|
|
|
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)
|
|
|
|
except:
|
2012-11-09 17:56:07 +01:00
|
|
|
return json_error("Bad value for '%s': %s"
|
|
|
|
% (param.post_var_name, val))
|
2012-11-01 23:21:12 +01:00
|
|
|
kwargs[param.func_var_name] = val
|
|
|
|
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
|
|
|
|
return _wrapped_view_func
|