mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-03 11:51:31 +00:00
Import with images
This commit is contained in:
parent
0f85fbd5f2
commit
487e99bea5
@ -116,6 +116,15 @@ class Controller:
|
|||||||
except OSError as e:
|
except OSError as e:
|
||||||
log.error(str(e))
|
log.error(str(e))
|
||||||
|
|
||||||
|
def images_path(self):
|
||||||
|
"""
|
||||||
|
Get the image storage directory
|
||||||
|
"""
|
||||||
|
server_config = Config.instance().get_section_config("Server")
|
||||||
|
images_path = os.path.expanduser(server_config.get("images_path", "~/GNS3/projects"))
|
||||||
|
os.makedirs(images_path, exist_ok=True)
|
||||||
|
return images_path
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def _import_gns3_gui_conf(self):
|
def _import_gns3_gui_conf(self):
|
||||||
"""
|
"""
|
||||||
@ -290,7 +299,7 @@ class Controller:
|
|||||||
"""
|
"""
|
||||||
Generate a free project name base on the base name
|
Generate a free project name base on the base name
|
||||||
"""
|
"""
|
||||||
names = [ p.name for p in self._projects.values() ]
|
names = [p.name for p in self._projects.values()]
|
||||||
if base_name not in names:
|
if base_name not in names:
|
||||||
return base_name
|
return base_name
|
||||||
i = 1
|
i = 1
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
import uuid
|
import uuid
|
||||||
|
import shutil
|
||||||
import asyncio
|
import asyncio
|
||||||
import zipfile
|
import zipfile
|
||||||
import aiohttp
|
import aiohttp
|
||||||
@ -29,8 +30,9 @@ from ..config import Config
|
|||||||
Handle the import of project from a .gns3project
|
Handle the import of project from a .gns3project
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def import_project(controller, project_id, stream, gns3vm=True):
|
def import_project(controller, project_id, stream):
|
||||||
"""
|
"""
|
||||||
Import a project contain in a zip file
|
Import a project contain in a zip file
|
||||||
|
|
||||||
@ -64,6 +66,24 @@ def import_project(controller, project_id, stream, gns3vm=True):
|
|||||||
json.dump(topology, f, indent=4)
|
json.dump(topology, f, indent=4)
|
||||||
os.remove(os.path.join(path, "project.gns3"))
|
os.remove(os.path.join(path, "project.gns3"))
|
||||||
|
|
||||||
project = yield from controller.load_project(dot_gns3_path)
|
if os.path.exists(os.path.join(path, "images")):
|
||||||
|
_import_images(controller, path)
|
||||||
|
|
||||||
|
project = yield from controller.load_project(dot_gns3_path, load=False)
|
||||||
return project
|
return project
|
||||||
|
|
||||||
|
|
||||||
|
def _import_images(controller, path):
|
||||||
|
"""
|
||||||
|
Copy images to the images directory or delete them if they
|
||||||
|
already exists.
|
||||||
|
"""
|
||||||
|
image_dir = controller.images_path()
|
||||||
|
|
||||||
|
root = os.path.join(path, "images")
|
||||||
|
for (dirpath, dirnames, filenames) in os.walk(root):
|
||||||
|
for filename in filenames:
|
||||||
|
path = os.path.join(dirpath, filename)
|
||||||
|
dst = os.path.join(image_dir, os.path.relpath(path, root))
|
||||||
|
os.makedirs(os.path.dirname(dst), exist_ok=True)
|
||||||
|
shutil.move(path, dst)
|
||||||
|
@ -279,7 +279,7 @@ class ProjectHandler:
|
|||||||
if not packet:
|
if not packet:
|
||||||
break
|
break
|
||||||
temp.write(packet)
|
temp.write(packet)
|
||||||
project = yield from import_project(controller, request.match_info["project_id"], temp, gns3vm=bool(int(request.GET.get("gns3vm", "1"))))
|
project = yield from import_project(controller, request.match_info["project_id"], temp)
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
raise aiohttp.web.HTTPInternalServerError(text="Could not import the project: {}".format(e))
|
raise aiohttp.web.HTTPInternalServerError(text="Could not import the project: {}".format(e))
|
||||||
|
|
||||||
@ -367,5 +367,3 @@ class ProjectHandler:
|
|||||||
raise aiohttp.web.HTTPNotFound()
|
raise aiohttp.web.HTTPNotFound()
|
||||||
except PermissionError:
|
except PermissionError:
|
||||||
raise aiohttp.web.HTTPForbidden()
|
raise aiohttp.web.HTTPForbidden()
|
||||||
|
|
||||||
|
|
||||||
|
@ -66,4 +66,35 @@ def test_import_project(async_run, tmpdir, controller):
|
|||||||
assert project.name != "test"
|
assert project.name != "test"
|
||||||
|
|
||||||
|
|
||||||
|
def test_import_with_images(tmpdir, async_run, controller):
|
||||||
|
|
||||||
|
project_id = str(uuid.uuid4())
|
||||||
|
|
||||||
|
topology = {
|
||||||
|
"project_id": str(uuid.uuid4()),
|
||||||
|
"name": "test",
|
||||||
|
"topology": {
|
||||||
|
},
|
||||||
|
"version": "2.0.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
with open(str(tmpdir / "project.gns3"), 'w+') as f:
|
||||||
|
json.dump(topology, f)
|
||||||
|
|
||||||
|
with open(str(tmpdir / "test.image"), 'w+') as f:
|
||||||
|
f.write("B")
|
||||||
|
|
||||||
|
zip_path = str(tmpdir / "project.zip")
|
||||||
|
with zipfile.ZipFile(zip_path, 'w') as myzip:
|
||||||
|
myzip.write(str(tmpdir / "project.gns3"), "project.gns3")
|
||||||
|
myzip.write(str(tmpdir / "test.image"), "images/IOS/test.image")
|
||||||
|
|
||||||
|
with open(zip_path, "rb") as f:
|
||||||
|
project = async_run(import_project(controller, project_id, f))
|
||||||
|
|
||||||
|
print(project._config().get("images_path"))
|
||||||
|
# TEST import images
|
||||||
|
assert not os.path.exists(os.path.join(project.path, "images/IOS/test.image"))
|
||||||
|
|
||||||
|
path = os.path.join(project._config().get("images_path"), "IOS", "test.image")
|
||||||
|
assert os.path.exists(path), path
|
||||||
|
Loading…
Reference in New Issue
Block a user