mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
commit
5b72fe1ba3
1 changed files with 16 additions and 1 deletions
17
app/main.py
17
app/main.py
|
@ -97,10 +97,25 @@ if config.URL_PREFIX != '/':
|
|||
|
||||
routes.static(config.URL_PREFIX + 'favicon/', 'favicon')
|
||||
routes.static(config.URL_PREFIX, 'ui/dist/metube')
|
||||
|
||||
app.add_routes(routes)
|
||||
|
||||
|
||||
# https://github.com/aio-libs/aiohttp/pull/4615 waiting for release
|
||||
# @routes.options(config.URL_PREFIX + 'add')
|
||||
async def add_cors(request):
|
||||
return web.Response(text=serializer.encode({"status": "ok"}))
|
||||
|
||||
app.router.add_route('OPTIONS', config.URL_PREFIX + 'add', add_cors)
|
||||
|
||||
|
||||
async def on_prepare(request, response):
|
||||
if 'Origin' in request.headers:
|
||||
response.headers['Access-Control-Allow-Origin'] = request.headers['Origin']
|
||||
response.headers['Access-Control-Allow-Headers'] = 'Content-Type'
|
||||
|
||||
app.on_response_prepare.append(on_prepare)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
web.run_app(app, port=8081)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue