troggle-unchained/core/views/drawings.py

99 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
2011-07-11 02:10:22 +01:00
from django.conf import settings
from django.shortcuts import render
2021-05-03 20:36:29 +01:00
from django.http import HttpResponse
2021-05-03 20:36:29 +01:00
from troggle.core.models.survex import DrawingFile
2021-03-31 21:51:17 +01:00
from troggle.core.views.expo import getmimetype
2021-05-03 20:36:29 +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.
2021-05-03 20:36:29 +01:00
need to check if invalid query string is invalid, or produces multiple replies
and render a user-friendly error page.
'''
2011-07-11 02:10:22 +01:00
def dwgdata(request):
'''Report on all the drawing files in the system. These were loaded by parsing the entire directory tree
'''
2021-04-26 18:08:42 +01:00
dwgfiles = DrawingFile.objects.all()
return render(request, 'dwgfiles.html', { 'dwgfiles':dwgfiles, 'settings': settings })
2011-07-11 02:10:22 +01:00
2021-04-08 01:09:06 +01:00
def dwgfilesingle(request, path):
'''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
'''
try:
2021-04-26 18:11:14 +01:00
dwgfile = DrawingFile.objects.get(dwgpath=urlunquote(path))
except:
message = f'Drawing file error or not found \'{path}\' .'
return render(request, 'errors/generic.html', {'message': message})
2021-04-26 18:42:10 +01:00
tfile = Path(settings.DRAWINGS_DATA, dwgfile.dwgpath)
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
def dwgfileupload(request, path):
2021-05-04 02:46:56 +01:00
'''Use bits of this to REGISTEr a recently uploaded dwg file which used dwgupload
'''
try:
2021-04-26 18:11:14 +01:00
dwgfile = DrawingFile.objects.get(dwgpath=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-04-26 18:42:10 +01:00
tfile = Path(settings.DRAWINGS_DATA, dwgfile.dwgpath)
2011-07-11 02:10:22 +01:00
project, user, password, tunnelversion = request.POST["tunnelproject"], request.POST["tunneluser"], request.POST["tunnelpassword"], request.POST["tunnelversion"]
print(project, user, tunnelversion)
2011-07-11 02:10:22 +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":
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
2021-04-26 18:08:42 +01:00
orgsize = dwgfile.filesize # = os.stat(tfile)[stat.ST_SIZE]
2011-07-11 02:10:22 +01:00
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
2021-04-26 18:08:42 +01:00
parsers.surveys.SetTunnelfileInfo(dwgfile) # commented out
dwgfile.save()
2011-07-11 02:10:22 +01:00
uploadedfile.close()
2021-04-26 18:08:42 +01:00
message = "File size %d overwritten with size %d" % (orgsize, dwgfile.filesize)
return HttpResponse(content=message, content_type="text/plain")
2011-07-11 02:10:22 +01:00