2020-10-02 09:37:50 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""
|
2020-11-19 06:51:03 +02:00
|
|
|
API routes for controller notifications.
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
|
2021-04-26 09:48:18 +03:00
|
|
|
from fastapi import APIRouter, Depends, Query, WebSocket, WebSocketDisconnect, HTTPException
|
2020-10-19 07:30:41 +03:00
|
|
|
from fastapi.responses import StreamingResponse
|
2020-11-11 08:48:41 +02:00
|
|
|
from websockets.exceptions import ConnectionClosed, WebSocketException
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-26 09:48:18 +03:00
|
|
|
from gns3server.services import auth_service
|
2020-10-19 07:30:41 +03:00
|
|
|
from gns3server.controller import Controller
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-26 09:48:18 +03:00
|
|
|
from .dependencies.authentication import get_current_active_user
|
|
|
|
|
2020-10-02 09:37:50 +03:00
|
|
|
import logging
|
2021-04-13 12:16:50 +03:00
|
|
|
|
2020-10-02 09:37:50 +03:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2020-10-19 07:30:41 +03:00
|
|
|
router = APIRouter()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2020-10-19 07:30:41 +03:00
|
|
|
|
2021-04-26 09:48:18 +03:00
|
|
|
@router.get("", dependencies=[Depends(get_current_active_user)])
|
2021-04-18 09:10:38 +03:00
|
|
|
async def http_notification() -> StreamingResponse:
|
2020-10-19 07:30:41 +03:00
|
|
|
"""
|
|
|
|
Receive controller notifications about the controller from HTTP stream.
|
|
|
|
"""
|
|
|
|
|
|
|
|
async def event_stream():
|
|
|
|
with Controller.instance().notification.controller_queue() as queue:
|
|
|
|
while True:
|
|
|
|
msg = await queue.get_json(5)
|
2021-04-26 09:48:18 +03:00
|
|
|
yield f"{msg}\n".encode("utf-8")
|
2020-10-19 07:30:41 +03:00
|
|
|
|
|
|
|
return StreamingResponse(event_stream(), media_type="application/json")
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2020-11-11 08:48:41 +02:00
|
|
|
@router.websocket("/ws")
|
2021-04-26 09:48:18 +03:00
|
|
|
async def notification_ws(websocket: WebSocket, token: str = Query(None)) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
2020-11-11 08:48:41 +02:00
|
|
|
Receive project notifications about the controller from WebSocket.
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
2020-11-11 08:48:41 +02:00
|
|
|
await websocket.accept()
|
2021-04-26 09:48:18 +03:00
|
|
|
|
|
|
|
if token:
|
|
|
|
try:
|
|
|
|
username = auth_service.get_username_from_token(token)
|
|
|
|
except HTTPException:
|
|
|
|
log.error("Invalid token received")
|
|
|
|
await websocket.close(code=1008)
|
|
|
|
return
|
|
|
|
|
2020-11-11 08:48:41 +02:00
|
|
|
log.info(f"New client {websocket.client.host}:{websocket.client.port} has connected to controller WebSocket")
|
|
|
|
try:
|
|
|
|
with Controller.instance().notification.controller_queue() as queue:
|
2020-10-02 09:37:50 +03:00
|
|
|
while True:
|
|
|
|
notification = await queue.get_json(5)
|
|
|
|
await websocket.send_text(notification)
|
2020-11-11 08:48:41 +02:00
|
|
|
except (ConnectionClosed, WebSocketDisconnect):
|
|
|
|
log.info(f"Client {websocket.client.host}:{websocket.client.port} has disconnected from controller WebSocket")
|
|
|
|
except WebSocketException as e:
|
2021-04-13 12:07:58 +03:00
|
|
|
log.warning(f"Error while sending to controller event to WebSocket client: {e}")
|
2020-11-11 08:48:41 +02:00
|
|
|
finally:
|
|
|
|
await websocket.close()
|