mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
69 lines
2.2 KiB
Python
69 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2016 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/>.
|
|
|
|
import pathlib
|
|
import uuid
|
|
|
|
|
|
from ..controller import Controller
|
|
from ..qt import QtCore
|
|
|
|
|
|
class ImportProjectWorker(QtCore.QObject):
|
|
"""
|
|
Import project shipped in the portable format
|
|
"""
|
|
|
|
# signals to update the progress dialog.
|
|
error = QtCore.Signal(str, bool)
|
|
finished = QtCore.Signal()
|
|
updated = QtCore.Signal(int)
|
|
imported = QtCore.Signal(str)
|
|
|
|
def __init__(self, source, name=None, path=None):
|
|
"""
|
|
:param source: The project file
|
|
:param name: Name of the project
|
|
:param path: Path to the project location
|
|
"""
|
|
super().__init__()
|
|
self._source = source
|
|
self._project_uuid = str(uuid.uuid4())
|
|
self._name = name
|
|
self._path = path
|
|
|
|
def run(self):
|
|
Controller.instance().post("/projects/{}/import".format(self._project_uuid), self._importProjectCallback, body=pathlib.Path(self._source), timeout=None, params={"name": self._name, "path": self._path})
|
|
self.updated.emit(25)
|
|
|
|
def _importProjectCallback(self, content, error=False, server=None, context={}, **kwargs):
|
|
if error:
|
|
if content:
|
|
self.error.emit(content["message"], True)
|
|
else:
|
|
self.error.emit("Can't import the project on the server", True)
|
|
self.finished.emit()
|
|
return
|
|
|
|
self.updated.emit(50)
|
|
|
|
self.finished.emit()
|
|
self.imported.emit(self._project_uuid)
|
|
|
|
def cancel(self):
|
|
pass
|