gns3-server/gns3server/api/routes/controller/symbols.py

108 lines
3.0 KiB
Python
Raw Normal View History

2020-10-02 09:37:50 +03:00
#!/usr/bin/env python
#
# Copyright (C) 2020 GNS3 Technologies Inc.
2020-10-02 09:37:50 +03:00
#
# 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/>.
"""
API routes for symbols.
2020-10-02 09:37:50 +03:00
"""
import os
from fastapi import APIRouter, Request, status
2020-10-02 09:37:50 +03:00
from fastapi.responses import FileResponse
from typing import List
2020-10-02 09:37:50 +03:00
from gns3server.controller import Controller
2020-10-31 07:32:21 +02:00
from gns3server import schemas
2020-10-02 09:37:50 +03:00
from gns3server.controller.controller_error import ControllerError, ControllerNotFoundError
import logging
2021-04-13 12:16:50 +03:00
2020-10-02 09:37:50 +03:00
log = logging.getLogger(__name__)
router = APIRouter()
@router.get("")
def get_symbols() -> List[str]:
2020-10-02 09:37:50 +03:00
controller = Controller.instance()
return controller.symbols.list()
2021-04-13 12:16:50 +03:00
@router.get(
"/{symbol_id:path}/raw", responses={404: {"model": schemas.ErrorMessage, "description": "Could not find symbol"}}
)
async def get_symbol(symbol_id: str) -> FileResponse:
"""
Download a symbol file.
"""
2020-10-02 09:37:50 +03:00
controller = Controller.instance()
try:
symbol = controller.symbols.get_path(symbol_id)
return FileResponse(symbol)
except (KeyError, OSError) as e:
2021-04-13 12:07:58 +03:00
return ControllerNotFoundError(f"Could not get symbol file: {e}")
2020-10-02 09:37:50 +03:00
2021-04-13 12:16:50 +03:00
@router.get(
"/{symbol_id:path}/dimensions",
responses={404: {"model": schemas.ErrorMessage, "description": "Could not find symbol"}},
)
async def get_symbol_dimensions(symbol_id: str) -> dict:
"""
Get a symbol dimensions.
"""
controller = Controller.instance()
try:
width, height, _ = controller.symbols.get_size(symbol_id)
2021-04-13 12:16:50 +03:00
symbol_dimensions = {"width": width, "height": height}
return symbol_dimensions
except (KeyError, OSError, ValueError) as e:
2021-04-13 12:07:58 +03:00
return ControllerNotFoundError(f"Could not get symbol file: {e}")
2021-04-13 12:16:50 +03:00
@router.post("/{symbol_id:path}/raw", status_code=status.HTTP_204_NO_CONTENT)
async def upload_symbol(symbol_id: str, request: Request) -> None:
2020-10-02 09:37:50 +03:00
"""
Upload a symbol file.
"""
controller = Controller.instance()
path = os.path.join(controller.symbols.symbols_path(), os.path.basename(symbol_id))
try:
with open(path, "wb") as f:
f.write(await request.body())
except (UnicodeEncodeError, OSError) as e:
2021-04-13 12:07:58 +03:00
raise ControllerError(f"Could not write symbol file '{path}': {e}")
2020-10-02 09:37:50 +03:00
# Reset the symbol list
controller.symbols.list()
@router.get("/default_symbols")
def get_default_symbols() -> dict:
2020-10-02 09:37:50 +03:00
"""
Return all default symbols.
2020-10-02 09:37:50 +03:00
"""
controller = Controller.instance()
return controller.symbols.default_symbols()