You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
701 B
21 lines
701 B
from django.utils.deprecation import MiddlewareMixin
|
|
import logging
|
|
|
|
logger = logging.getLogger(__file__)
|
|
|
|
|
|
class CorsMiddleWare(MiddlewareMixin):
|
|
|
|
def process_response(self, request, response):
|
|
if request.method == "OPTIONS":
|
|
response["Access-Control-Allow-Methods"] = "GET,POST,DELETE,PUT"
|
|
response["Access-Control-Allow-Headers"] = "Content-Type,AUTHORIZATION"
|
|
|
|
try:
|
|
response["Access-Control-Allow-Origin"] = request.META.get("HTTP_ORIGIN")
|
|
response["Access-Control-Allow-Credentials"] = 'true'
|
|
|
|
response["Cache-Control"] = "no-cache"
|
|
except Exception as e:
|
|
logger.error(e)
|
|
return response
|
|
|