From bca99d42fe4f0ff221bf03b21bac8d370492c1cc Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Thu, 9 Apr 2020 20:19:32 +0200 Subject: [PATCH] chore: Indent, phrasing --- client/src/App.vue | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------- client/src/ListenToSockets.vue | 55 ------------------------------------------------------- client/src/Sockets.vue | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ client/src/components/HelloWorld.vue | 75 ++++++++++++++++++++++++++------------------------------------------------- server/app.py | 10 +++++++++- server/ws.py | 3 ++- 6 files changed, 148 insertions(+), 165 deletions(-) delete mode 100644 client/src/ListenToSockets.vue create mode 100644 client/src/Sockets.vue diff --git a/client/src/App.vue b/client/src/App.vue index 8f77245..dbcd62a 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -1,75 +1,72 @@ diff --git a/client/src/ListenToSockets.vue b/client/src/ListenToSockets.vue deleted file mode 100644 index d373f09..0000000 --- a/client/src/ListenToSockets.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - \ No newline at end of file diff --git a/client/src/Sockets.vue b/client/src/Sockets.vue new file mode 100644 index 0000000..d373f09 --- /dev/null +++ b/client/src/Sockets.vue @@ -0,0 +1,55 @@ + + + \ No newline at end of file diff --git a/client/src/components/HelloWorld.vue b/client/src/components/HelloWorld.vue index 0de6538..6860020 100644 --- a/client/src/components/HelloWorld.vue +++ b/client/src/components/HelloWorld.vue @@ -1,58 +1,35 @@ diff --git a/server/app.py b/server/app.py index e3142eb..966e34d 100644 --- a/server/app.py +++ b/server/app.py @@ -3,8 +3,8 @@ from http.client import HTTPException import socketio from fastapi import FastAPI, APIRouter from fastapi.exceptions import RequestValidationError -from starlette.responses import PlainTextResponse from starlette.exceptions import HTTPException +from starlette.responses import PlainTextResponse from server.model.data import Game # Game state @@ -16,6 +16,14 @@ game = Game() # Server app = FastAPI() router = APIRouter() +# +# app.add_middleware( +# CORSMiddleware, +# allow_origins=["*"], +# allow_credentials=True, +# allow_methods=["*"], +# allow_headers=["*"], +# ) # Create and mount SocketIO app sio_asgi_app = socketio.ASGIApp( diff --git a/server/ws.py b/server/ws.py index 0709529..4c59aa4 100644 --- a/server/ws.py +++ b/server/ws.py @@ -3,9 +3,10 @@ import socketio sio = socketio.AsyncServer( async_mode='asgi', logger=True, - cors_allowed_origins="*" # FIXME: CSRF Vulnerability + cors_allowed_origins="*" # FIXME: CSRF Vulnerability ) + @sio.event def connect(sid, environ): print("connect ", sid, environ) -- libgit2 0.27.0