mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-21 22:53:56 +08:00
25 lines
883 B
Python
25 lines
883 B
Python
from aiohttp import web
|
|
from config.logger import setup_logging
|
|
|
|
|
|
class BaseHandler:
|
|
def __init__(self, config: dict):
|
|
self.config = config
|
|
self.logger = setup_logging()
|
|
|
|
def _add_cors_headers(self, response):
|
|
"""添加CORS头信息"""
|
|
response.headers["Access-Control-Allow-Headers"] = (
|
|
"client-id, content-type, device-id, authorization"
|
|
)
|
|
response.headers["Access-Control-Allow-Credentials"] = "true"
|
|
response.headers["Access-Control-Allow-Origin"] = "*"
|
|
|
|
async def handle_options(self, request):
|
|
"""处理OPTIONS请求,添加CORS头信息"""
|
|
response = web.Response(body=b"", content_type="text/plain")
|
|
self._add_cors_headers(response)
|
|
# 添加允许的方法
|
|
response.headers["Access-Control-Allow-Methods"] = "GET, POST, OPTIONS"
|
|
return response
|