OpenSlides/openslides/utils/views.py

48 lines
1.4 KiB
Python
Raw Normal View History

2017-08-24 12:26:55 +02:00
from typing import Any, Dict, List # noqa
2017-08-23 20:51:06 +02:00
from django.views.decorators.csrf import ensure_csrf_cookie
2017-08-24 12:26:55 +02:00
from django.views.generic.base import View
from rest_framework.response import Response
from rest_framework.views import APIView as _APIView
2012-02-20 17:46:45 +01:00
2012-04-13 11:35:53 +02:00
class CSRFMixin:
"""
Adds the csrf cookie to the response.
"""
@classmethod
2017-08-24 12:26:55 +02:00
def as_view(cls, *args: Any, **kwargs: Any) -> View:
view = super().as_view(*args, **kwargs) # type: ignore
return ensure_csrf_cookie(view)
class APIView(_APIView):
"""
The Django Rest framework APIView with improvements for OpenSlides.
"""
2017-08-23 20:51:06 +02:00
http_method_names = [] # type: List[str]
"""
The allowed actions have to be explicitly defined.
Django allowes the following:
http_method_names = ['get', 'post', 'put', 'patch', 'delete', 'head', 'options', 'trace']
"""
2017-08-24 12:26:55 +02:00
def get_context_data(self, **context: Any) -> Dict[str, Any]:
"""
Returns the context for the response.
"""
return context
2017-08-24 12:26:55 +02:00
def method_call(self, request: Any, *args: Any, **kwargs: Any) -> Any:
"""
Http method that returns the response object with the context data.
"""
return Response(self.get_context_data())
# Add the http-methods and delete the method "method_call"
get = post = put = patch = delete = head = options = trace = method_call
del method_call