mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-14 04:19:00 +00:00
f041697311
Fix #234
94 lines
3.3 KiB
Python
94 lines
3.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2015 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 os
|
|
import aiohttp
|
|
import stat
|
|
|
|
from ..config import Config
|
|
from ..web.route import Route
|
|
from ..utils.images import remove_checksum, md5sum
|
|
|
|
|
|
class UploadHandler:
|
|
|
|
@classmethod
|
|
@Route.get(
|
|
r"/upload",
|
|
description="Manage upload of GNS3 images",
|
|
api_version=None
|
|
)
|
|
def index(request, response):
|
|
uploaded_files = []
|
|
try:
|
|
for root, _, files in os.walk(UploadHandler.image_directory()):
|
|
for filename in files:
|
|
if not filename.startswith(".") and not filename.endswith(".md5sum"):
|
|
image_file = os.path.join(root, filename)
|
|
uploaded_files.append(image_file)
|
|
except OSError:
|
|
pass
|
|
iourc_path = os.path.join(os.path.expanduser("~/"), ".iourc")
|
|
if os.path.exists(iourc_path):
|
|
uploaded_files.append(iourc_path)
|
|
response.template("upload.html", files=uploaded_files)
|
|
|
|
@classmethod
|
|
@Route.post(
|
|
r"/upload",
|
|
description="Manage upload of GNS3 images",
|
|
api_version=None
|
|
)
|
|
def upload(request, response):
|
|
data = yield from request.post()
|
|
|
|
if not data["file"]:
|
|
response.redirect("/upload")
|
|
return
|
|
|
|
if data["type"] not in ["IOU", "IOURC", "QEMU", "IOS"]:
|
|
raise aiohttp.web.HTTPForbidden("You are not authorized to upload this kind of image {}".format(data["type"]))
|
|
|
|
if data["type"] == "IOURC":
|
|
destination_dir = os.path.expanduser("~/")
|
|
destination_path = os.path.join(destination_dir, ".iourc")
|
|
else:
|
|
destination_dir = os.path.join(UploadHandler.image_directory(), data["type"])
|
|
destination_path = os.path.join(destination_dir, data["file"].filename)
|
|
try:
|
|
os.makedirs(destination_dir, exist_ok=True)
|
|
remove_checksum(destination_path)
|
|
with open(destination_path, "wb+") as f:
|
|
while True:
|
|
chunk = data["file"].file.read(512)
|
|
if not chunk:
|
|
break
|
|
f.write(chunk)
|
|
md5sum(destination_path)
|
|
st = os.stat(destination_path)
|
|
os.chmod(destination_path, st.st_mode | stat.S_IXUSR)
|
|
except OSError as e:
|
|
response.html("Could not upload file: {}".format(e))
|
|
response.set_status(200)
|
|
return
|
|
response.redirect("/upload")
|
|
|
|
@staticmethod
|
|
def image_directory():
|
|
server_config = Config.instance().get_section_config("Server")
|
|
return os.path.expanduser(server_config.get("images_path", "~/GNS3/images"))
|