1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

Catch error when a file is deleted during the compression of project

Fix #860
This commit is contained in:
Julien Duponchelle 2017-01-10 10:16:45 +01:00
parent 666461277d
commit e0071f5b59
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -696,13 +696,16 @@ class Project:
if self._status == "closed": if self._status == "closed":
yield from self.open() yield from self.open()
with tempfile.TemporaryDirectory() as tmpdir: try:
zipstream = yield from export_project(self, tmpdir, keep_compute_id=True, allow_all_nodes=True) with tempfile.TemporaryDirectory() as tmpdir:
with open(os.path.join(tmpdir, "project.gns3p"), "wb+") as f: zipstream = yield from export_project(self, tmpdir, keep_compute_id=True, allow_all_nodes=True)
for data in zipstream: with open(os.path.join(tmpdir, "project.gns3p"), "wb+") as f:
f.write(data) for data in zipstream:
with open(os.path.join(tmpdir, "project.gns3p"), "rb") as f: f.write(data)
project = yield from import_project(self._controller, str(uuid.uuid4()), f, location=location, name=name, keep_compute_id=True) with open(os.path.join(tmpdir, "project.gns3p"), "rb") as f:
project = yield from import_project(self._controller, str(uuid.uuid4()), f, location=location, name=name, keep_compute_id=True)
except OSError as e:
raise aiohttp.web.HTTPConflict(text="Can not duplicate project: {}".format(str(e)))
if previous_status == "closed": if previous_status == "closed":
yield from self.close() yield from self.close()