diff --git a/gns3server/handlers/index_handler.py b/gns3server/handlers/index_handler.py index 7c674cef..6dfd6c15 100644 --- a/gns3server/handlers/index_handler.py +++ b/gns3server/handlers/index_handler.py @@ -68,7 +68,7 @@ class IndexHandler: project=controller.get_project(request.match_info["project_id"])) @Route.get( - r"/static/{filename:.+}", + r"/static/web-ui/{filename:.+}", parameters={ "filename": "Static filename" }, @@ -78,9 +78,10 @@ class IndexHandler: }, raw=True, description="Get static resource") - def static(request, response): + def webui(request, response): filename = request.match_info["filename"] filename = os.path.normpath(filename).strip("/") + filename = os.path.join('web-ui', filename) # Raise error if user try to escape if filename[0] == ".": @@ -88,6 +89,9 @@ class IndexHandler: static = get_static_path(filename) + if not os.path.exists(static): + static = get_static_path('web-ui/index.html') + yield from response.file(static) @Route.get( diff --git a/gns3server/static/nested/nested.txt b/gns3server/static/nested/nested.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/gns3server/templates/index.html b/gns3server/templates/index.html index e013d37d..1aef0dad 100644 --- a/gns3server/templates/index.html +++ b/gns3server/templates/index.html @@ -6,6 +6,7 @@
If you are looking for uploading the IOU. You can since 1.4 upload them directly from the client see: this documentation.
{% endblock %} diff --git a/gns3server/utils/static.py b/gns3server/utils/static.py index 83e1bc40..004794ef 100644 --- a/gns3server/utils/static.py +++ b/gns3server/utils/static.py @@ -24,6 +24,15 @@ def get_static_path(filename): :param filename: relative filename :return: absolute path """ - current_dir = os.path.dirname(os.path.abspath(__file__)) - static_directory = os.path.abspath(os.path.join(current_dir, '..', 'static')) + + static_directory = get_static_dir() return os.path.join(static_directory, filename) + + +def get_static_dir(): + """ + Returns location of static directory + :return: absolute path + """ + current_dir = os.path.dirname(os.path.abspath(__file__)) + return os.path.abspath(os.path.join(current_dir, '..', 'static')) \ No newline at end of file diff --git a/gns3server/web/web_server.py b/gns3server/web/web_server.py index 7cad075b..5c9b3248 100644 --- a/gns3server/web/web_server.py +++ b/gns3server/web/web_server.py @@ -29,6 +29,7 @@ import functools import time import atexit +from gns3server.utils.static import get_static_dir from .route import Route from ..config import Config from ..compute import MODULES @@ -274,6 +275,13 @@ class WebServer: m = module.instance() m.port_manager = PortManager.instance() + # adding static route + self._app.router.add_static( + '/static/', + path=get_static_dir(), + name='static' + ) + log.info("Starting server on {}:{}".format(self._host, self._port)) self._handler = self._app.make_handler() diff --git a/scripts/update-bundled-web-ui.sh b/scripts/update-bundled-web-ui.sh old mode 100644 new mode 100755 index 20d602bd..e48e45d6 --- a/scripts/update-bundled-web-ui.sh +++ b/scripts/update-bundled-web-ui.sh @@ -1,2 +1,67 @@ #!/usr/bin/env bash +# +# Copyright (C) 2018 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