chaloBEST/chaloBEST/cors/middleware.py

16 lines
562 B
Python
Raw Normal View History

from django.http import HttpResponse
class AllowOriginMiddleware(object):
def process_request(self, request):
if request.method == 'OPTIONS':
return HttpResponse()
def process_response(self, request, response):
origin = request.META.get('HTTP_ORIGIN')
if origin:
response['Access-Control-Allow-Origin'] = origin
response['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS, DELETE, PUT'
response['Access-Control-Allow-Headers'] = 'Content-Type, Accept'
return response