2020-06-20 23:08:34 +01:00
|
|
|
import os, stat
|
|
|
|
import re
|
2021-03-28 03:48:04 +01:00
|
|
|
from pathlib import Path
|
|
|
|
from urllib.parse import urljoin, unquote as urlunquote
|
|
|
|
from urllib.request import urlopen
|
2020-06-20 23:08:34 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
from django.conf import settings
|
2021-03-28 03:48:04 +01:00
|
|
|
from django.shortcuts import render
|
2011-07-11 02:10:22 +01:00
|
|
|
from django.http import HttpResponse, Http404
|
2020-06-20 23:08:34 +01:00
|
|
|
|
2021-04-13 00:50:12 +01:00
|
|
|
from troggle.core.models.survex import ScansFolder, SingleScan, SurvexBlock, TunnelFile
|
2021-03-31 21:51:17 +01:00
|
|
|
from troggle.core.views.expo import getmimetype
|
2011-07-11 02:10:22 +01:00
|
|
|
import parsers.surveys
|
2020-07-28 01:22:06 +01:00
|
|
|
|
2021-03-28 03:48:04 +01:00
|
|
|
'''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.
|
2021-03-28 23:47:47 +01:00
|
|
|
|
2021-04-20 23:57:19 +01:00
|
|
|
need to check if inavlid query string is invalid, or produces multiple replies
|
|
|
|
and render a user-friendly error page.
|
2021-03-28 03:48:04 +01:00
|
|
|
'''
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2021-04-26 17:46:23 +01:00
|
|
|
def scanswallet(request, path):
|
2020-06-23 23:34:08 +01:00
|
|
|
#print [ s.walletname for s in ScansFolder.objects.all() ]
|
2021-04-20 23:57:19 +01:00
|
|
|
try:
|
|
|
|
scansfolder = ScansFolder.objects.get(walletname=urlunquote(path))
|
|
|
|
return render(request, 'scansfolder.html', { 'scansfolder':scansfolder, 'settings': settings })
|
|
|
|
except:
|
|
|
|
message = f'Scan folder error or not found \'{path}\' .'
|
|
|
|
return render(request, 'errors/generic.html', {'message': message})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2021-04-26 17:40:48 +01:00
|
|
|
def scansingle(request, path, file):
|
2021-04-20 23:57:19 +01:00
|
|
|
'''sends a single binary file to the user for display - browser decides how using mimetype
|
2021-03-28 03:48:04 +01:00
|
|
|
'''
|
2021-04-20 23:57:19 +01:00
|
|
|
try:
|
|
|
|
scansfolder = ScansFolder.objects.get(walletname=urlunquote(path))
|
|
|
|
singlescan = SingleScan.objects.get(scansfolder=scansfolder, name=file)
|
2021-04-26 17:40:48 +01:00
|
|
|
# print(" - scansingle {}:{}:{}:".format(path, file, getmimetype(file)))
|
2021-04-20 23:57:19 +01:00
|
|
|
return HttpResponse(content=open(singlescan.ffile,"rb"), content_type=getmimetype(file)) # any type of image
|
|
|
|
except:
|
|
|
|
message = f'Scan folder or scan item error or not found \'{path}\' and \'{file}\'.'
|
|
|
|
return render(request, 'errors/generic.html', {'message': message})
|
2020-06-18 21:50:16 +01:00
|
|
|
|
|
|
|
|
2021-04-26 17:46:23 +01:00
|
|
|
def scanswallets(request):
|
2020-06-23 23:34:08 +01:00
|
|
|
manyscansfolders = ScansFolder.objects.all()
|
2021-03-28 03:48:04 +01:00
|
|
|
return render(request, 'manyscansfolders.html', { 'manyscansfolders':manyscansfolders, 'settings': settings })
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
2021-04-20 23:57:19 +01:00
|
|
|
def dwgdata(request):
|
|
|
|
'''Report on all the drawing files in the system. These were loaded by parsing the entire directory tree
|
|
|
|
'''
|
2011-07-11 02:10:22 +01:00
|
|
|
tunnelfiles = TunnelFile.objects.all()
|
2021-04-20 23:57:19 +01:00
|
|
|
return render(request, 'dwgfiles.html', { 'tunnelfiles':tunnelfiles, 'settings': settings })
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
2021-04-08 01:09:06 +01:00
|
|
|
def dwgfilesingle(request, path):
|
2021-03-28 03:48:04 +01:00
|
|
|
'''sends a single binary file to the user, We should have a renderer that syntax-colours this Tunnel xml
|
2021-04-08 01:09:06 +01:00
|
|
|
but it might be a Therion file
|
2021-03-28 03:48:04 +01:00
|
|
|
'''
|
2021-04-20 23:57:19 +01:00
|
|
|
try:
|
|
|
|
tunnelfile = TunnelFile.objects.get(tunnelpath=urlunquote(path))
|
|
|
|
except:
|
|
|
|
message = f'Drawing file error or not found \'{path}\' .'
|
|
|
|
return render(request, 'errors/generic.html', {'message': message})
|
|
|
|
|
2021-03-28 03:48:04 +01:00
|
|
|
tfile = Path(settings.TUNNEL_DATA, tunnelfile.tunnelpath)
|
2021-04-08 01:09:06 +01:00
|
|
|
try: # for display not download
|
|
|
|
return HttpResponse(content=open(tfile, errors='strict'), content_type="text/xhtml")
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
try:
|
|
|
|
return HttpResponse(content=open(tfile,encoding='iso-8859-1'), content_type="text/xhtml")
|
|
|
|
except:
|
|
|
|
return HttpResponse(content=open(tfile,mode='rb'), content_type="text/xhtml")
|
|
|
|
else:
|
|
|
|
return HttpResponse(content=open(tfile, errors='ignore'), content_type="text/xhtml")
|
|
|
|
else:
|
|
|
|
return HttpResponse(content="Unable to understand the encoding for this file: not UTF-8 nor iso-8859-1, or some other read error happened.")
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2021-04-20 23:57:19 +01:00
|
|
|
def dwgfileupload(request, path):
|
|
|
|
'''uploads a drawing file, but where is the Form? This just processes POST info. Apparently unfinished?
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
tunnelfile = TunnelFile.objects.get(tunnelpath=urlunquote(path)) # need to check if inavlid query string and produce friendly error
|
|
|
|
except:
|
|
|
|
message = f'Drawing file error or not found \'{path}\' .'
|
|
|
|
return render(request, 'errors/generic.html', {'message': message})
|
2021-03-28 03:48:04 +01:00
|
|
|
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"]
|
2021-04-20 23:57:19 +01:00
|
|
|
print(project, user, tunnelversion)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
2021-03-29 02:06:19 +01:00
|
|
|
if not (len(list(request.FILES.values())) == 1): # "only one file to upload"
|
|
|
|
return HttpResponse(content="Error: more than one file selected for upload", content_type="text/plain")
|
|
|
|
|
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":
|
2019-02-24 16:46:02 +00:00
|
|
|
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":
|
2019-02-24 16:46:02 +00:00
|
|
|
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:
|
2019-02-24 16:46:02 +00:00
|
|
|
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)
|
2019-02-24 16:46:02 +00:00
|
|
|
return HttpResponse(content=message, content_type="text/plain")
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|