switch to uv and add cors headers
This commit is contained in:
@@ -2,18 +2,6 @@ from urllib.parse import urlparse
|
||||
|
||||
from django.forms import ModelForm
|
||||
from django.http import HttpRequest, HttpResponse, HttpResponseForbidden
|
||||
from pyrogram.types import Chat as PyrogramChat
|
||||
from pyrogram.raw.types.chat import Chat as MTProtoChat
|
||||
from pyrogram.raw.types.user import User as MTProtoUser
|
||||
from pyrogram.raw.types.channel import Channel as MTProtoChannel
|
||||
|
||||
|
||||
def parse_mtproto_chat(client, chat):
|
||||
if isinstance(chat, MTProtoChat):
|
||||
return PyrogramChat._parse_chat_chat(client, chat)
|
||||
elif isinstance(chat, MTProtoUser):
|
||||
return PyrogramChat._parse_user_chat(client, chat)
|
||||
return PyrogramChat._parse_channel_chat(client, chat)
|
||||
|
||||
|
||||
def same_origin(current_uri, redirect_uri):
|
||||
@@ -66,16 +54,3 @@ def get_config_form(mdl):
|
||||
exclude = mdl.EXCLUDE_FIELDS if hasattr(mdl, 'EXCLUDE_FIELDS') else ()
|
||||
widgets = mdl.CUSTOM_WIDGETS if hasattr(mdl, 'CUSTOM_WIDGETS') else {}
|
||||
return ConfigForm
|
||||
|
||||
|
||||
class AllowCORSMixin(object):
|
||||
def add_access_control_headers(self, response):
|
||||
response["Access-Control-Allow-Origin"] = "*"
|
||||
response["Access-Control-Allow-Methods"] = "GET, POST, OPTIONS"
|
||||
response["Access-Control-Max-Age"] = "1000"
|
||||
response["Access-Control-Allow-Headers"] = "X-Requested-With, Content-Type"
|
||||
|
||||
def options(self, request, *args, **kwargs):
|
||||
response = HttpResponse()
|
||||
self.add_access_control_headers(response)
|
||||
return response
|
||||
|
Reference in New Issue
Block a user