troggle-unchained/core/view_surveys.py

96 lines
4.1 KiB
Python
Raw Normal View History

import os, stat
import re
from pathlib import Path
from urllib.parse import urljoin, unquote as urlunquote
from urllib.request import urlopen
2011-07-11 02:10:22 +01:00
from django.conf import settings
from django.shortcuts import render
2011-07-11 02:10:22 +01:00
from django.http import HttpResponse, Http404
2020-06-24 00:18:01 +01:00
from troggle.core.models_survex import ScansFolder, SingleScan, SurvexBlock, TunnelFile
from troggle.flatpages import views as flatviews
2011-07-11 02:10:22 +01:00
import parsers.surveys
'''Some of these views serve files as binary blobs, and simply set the mime type based on the file extension,
as does the urls.py dispatcher which sends them here. Here they should actually have the filetype checked
by looking inside the file before being served.
need to check if inavlid query string is invalid, or produces multiple replies
and render a user-friendly error page.
'''
2011-07-11 02:10:22 +01:00
def surveyscansfolder(request, path):
#print [ s.walletname for s in ScansFolder.objects.all() ]
scansfolder = ScansFolder.objects.get(walletname=urlunquote(path)) # need to check if inavlid query string and produce friendly error
return render(request, 'scansfolder.html', { 'scansfolder':scansfolder, 'settings': settings })
2011-07-11 02:10:22 +01:00
def surveyscansingle(request, path, file):
'''sends a single binary file to the user,
'''
scansfolder = ScansFolder.objects.get(walletname=urlunquote(path)) # need to check if inavlid query string and produce friendly error
2020-06-24 00:18:01 +01:00
singlescan = SingleScan.objects.get(scansfolder=scansfolder, name=file)
# print(" - surveyscansingle {}:{}:{}:".format(path, file, flatviews.getmimetype(file)))
return HttpResponse(content=open(singlescan.ffile,"rb"), content_type=flatviews.getmimetype(file)) # any type of image
2020-06-18 21:50:16 +01:00
2011-07-11 02:10:22 +01:00
def surveyscansfolders(request):
manyscansfolders = ScansFolder.objects.all()
return render(request, 'manyscansfolders.html', { 'manyscansfolders':manyscansfolders, 'settings': settings })
2011-07-11 02:10:22 +01:00
def tunneldata(request):
tunnelfiles = TunnelFile.objects.all()
return render(request, 'tunnelfiles.html', { 'tunnelfiles':tunnelfiles, 'settings': settings })
2011-07-11 02:10:22 +01:00
def tunnelfilesingle(request, path):
'''sends a single binary file to the user, We should have a renderer that syntax-colours this Tunnel xml
'''
tunnelfile = TunnelFile.objects.get(tunnelpath=urlunquote(path)) # need to check if inavlid query string and produce friendly error
tfile = Path(settings.TUNNEL_DATA, tunnelfile.tunnelpath)
return HttpResponse(content=open(tfile), content_type="text/xhtml") # for display not download
2011-07-11 02:10:22 +01:00
def tunnelfileupload(request, path):
tunnelfile = TunnelFile.objects.get(tunnelpath=urlunquote(path)) # need to check if inavlid query string and produce friendly error
tfile = Path(settings.TUNNEL_DATA, tunnelfile.tunnelpath)
2011-07-11 02:10:22 +01:00
project, user, password, tunnelversion = request.POST["tunnelproject"], request.POST["tunneluser"], request.POST["tunnelpassword"], request.POST["tunnelversion"]
2020-05-24 01:57:06 +01:00
print((project, user, tunnelversion))
2011-07-11 02:10:22 +01:00
2020-05-24 01:57:06 +01:00
assert len(list(request.FILES.values())) == 1, "only one file to upload"
2011-07-11 02:10:22 +01:00
2020-05-24 01:57:06 +01:00
uploadedfile = list(request.FILES.values())[0]
2011-07-11 02:10:22 +01:00
if uploadedfile.field_name != "sketch":
return HttpResponse(content="Error: non-sketch file uploaded", content_type="text/plain")
2011-07-11 02:10:22 +01:00
if uploadedfile.content_type != "text/plain":
return HttpResponse(content="Error: non-plain content type", content_type="text/plain")
2011-07-11 02:10:22 +01:00
# could use this to add new files
if os.path.split(path)[1] != uploadedfile.name:
return HttpResponse(content="Error: name disagrees", content_type="text/plain")
2011-07-11 02:10:22 +01:00
orgsize = tunnelfile.filesize # = os.stat(tfile)[stat.ST_SIZE]
ttext = uploadedfile.read()
# could check that the user and projects agree here
fout = open(tfile, "w")
fout.write(ttext)
fout.close()
# redo its settings of
parsers.surveys.SetTunnelfileInfo(tunnelfile)
tunnelfile.save()
uploadedfile.close()
message = "File size %d overwritten with size %d" % (orgsize, tunnelfile.filesize)
return HttpResponse(content=message, content_type="text/plain")
2011-07-11 02:10:22 +01:00