2020-02-12 23:15:00 +01:00
|
|
|
import asyncio
|
2017-02-18 01:45:34 +01:00
|
|
|
from http import HTTPStatus
|
|
|
|
|
2020-09-07 13:33:47 +02:00
|
|
|
from django.core.exceptions import BadRequest, SuspiciousOperation
|
2013-05-19 17:55:12 +02:00
|
|
|
from django.db import connection, transaction
|
2013-03-06 11:12:24 +01:00
|
|
|
from django.http import HttpResponse, StreamingHttpResponse
|
2014-11-21 21:47:46 +01:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2013-03-06 11:12:24 +01:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2013-03-06 11:12:24 +01:00
|
|
|
def regular(request):
|
|
|
|
return HttpResponse(b"regular content")
|
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2018-11-24 01:19:02 +01:00
|
|
|
def no_response(request):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NoResponse:
|
|
|
|
def __call__(self, request):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-03-06 11:12:24 +01:00
|
|
|
def streaming(request):
|
|
|
|
return StreamingHttpResponse([b"streaming", b" ", b"content"])
|
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2013-03-06 11:12:24 +01:00
|
|
|
def in_transaction(request):
|
|
|
|
return HttpResponse(str(connection.in_atomic_block))
|
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2013-05-19 17:55:12 +02:00
|
|
|
@transaction.non_atomic_requests
|
2013-03-06 11:12:24 +01:00
|
|
|
def not_in_transaction(request):
|
|
|
|
return HttpResponse(str(connection.in_atomic_block))
|
2013-05-16 01:14:28 +02:00
|
|
|
|
2013-11-03 05:36:09 +01:00
|
|
|
|
2020-09-07 13:33:47 +02:00
|
|
|
def bad_request(request):
|
|
|
|
raise BadRequest()
|
|
|
|
|
|
|
|
|
2013-05-16 01:14:28 +02:00
|
|
|
def suspicious(request):
|
|
|
|
raise SuspiciousOperation('dubious')
|
2014-11-21 21:47:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
@csrf_exempt
|
|
|
|
def malformed_post(request):
|
|
|
|
request.POST
|
|
|
|
return HttpResponse()
|
2016-04-26 19:43:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
def httpstatus_enum(request):
|
|
|
|
return HttpResponse(status=HTTPStatus.OK)
|
2020-02-12 23:15:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
async def async_regular(request):
|
|
|
|
return HttpResponse(b'regular content')
|
|
|
|
|
|
|
|
|
2020-04-07 20:32:54 +02:00
|
|
|
class CoroutineClearingView:
|
|
|
|
def __call__(self, request):
|
|
|
|
"""Return an unawaited coroutine (common error for async views)."""
|
|
|
|
# Store coroutine to suppress 'unawaited' warning message
|
|
|
|
self._unawaited_coroutine = asyncio.sleep(0)
|
|
|
|
return self._unawaited_coroutine
|
|
|
|
|
2020-04-09 11:56:01 +02:00
|
|
|
def __del__(self):
|
|
|
|
self._unawaited_coroutine.close()
|
|
|
|
|
2020-04-07 20:32:54 +02:00
|
|
|
|
|
|
|
async_unawaited = CoroutineClearingView()
|