troggle-unchained/core/views/survex.py

701 lines
28 KiB
Python
Raw Normal View History

2011-07-11 02:10:22 +01:00
import datetime
import difflib
2023-01-19 18:35:56 +00:00
import os
import re
import socket
2023-01-19 18:35:56 +00:00
from pathlib import Path
2023-02-27 16:42:08 +00:00
from collections import namedtuple
2011-07-11 02:10:22 +01:00
from django import forms
from django.db import models
from django.db.models import Q
2023-01-19 18:35:56 +00:00
from django.core.exceptions import MultipleObjectsReturned, ObjectDoesNotExist
2023-01-30 23:04:11 +00:00
from django.http import HttpResponse
2021-03-28 03:48:24 +01:00
from django.shortcuts import render
2021-03-26 19:42:58 +00:00
from django.views.decorators.csrf import ensure_csrf_cookie
2011-07-11 02:10:22 +01:00
2023-01-19 18:35:56 +00:00
import troggle.settings as settings
2023-02-27 16:42:08 +00:00
from troggle.core.models.logbooks import LogbookEntry
2023-01-29 16:47:46 +00:00
from troggle.core.models.caves import Cave
from troggle.core.models.survex import SurvexFile, SurvexBlock
2023-02-27 16:42:08 +00:00
from troggle.core.models.wallets import Wallet
2023-01-30 23:04:11 +00:00
from troggle.core.utils import only_commit
from troggle.parsers.survex import parse_one_file
"""Everything that views survexfiles
2021-04-13 01:37:42 +01:00
but also displays data on a cave or caves when there is ambiguity
"""
2021-04-13 01:37:42 +01:00
todo = """- survexcavesingle is not properly producing any result for Homecoming, 1626-359, 2018-dm-07
2021-05-02 22:48:25 +01:00
even though there are dozens of surveys.
- REFACTOR the very impenetrable code for scanningsubdirectories, replace with modern python pathlib
- filter out the non-public caves from display UNLESS LOGGED IN
- Never actual uses the object for the survexfile, works entirely from the filepath! Make it check and validate
- the primary survex file in each cave directory should be in a configuration, not buried in the code...
- Save and re-parse an edited survexfile which already exists in the db, and update
all its dependencies (work in progress)
"""
2021-05-02 22:48:25 +01:00
survexdatasetpath = Path(settings.SURVEX_DATA)
2023-03-14 16:10:57 +00:00
# NB this template text must be identical to that in :loser:/templates/template.svx
survextemplatefile = """; *** THIS IS A TEMPLATE FILE NOT WHAT YOU MIGHT BE EXPECTING ***
*** DO NOT SAVE THIS FILE WITHOUT RENAMING IT !! ***
2020-06-02 21:38:29 +01:00
;[Stuff in square brackets is example text to be replaced with real data,
; removing the square brackets]
2011-07-11 02:10:22 +01:00
*begin [surveyname]
2020-06-02 21:38:29 +01:00
; stations linked into other surveys (or likely to)
*export [1 8 12 34]
; Cave:
; Area in cave/QM:
*title ""
*date [2040.07.04] ; <-- CHANGE THIS DATE
*team Insts [Fred Fossa]
*team Notes [Brenda Badger]
*team Pics [Luke Lynx]
*team Tape [Albert Aadvark]
2020-06-02 21:38:29 +01:00
*instrument [SAP #+Laser Tape/DistoX/Compass # ; Clino #]
; Calibration: [Where, readings]
*ref [2040#00] ; <-- CHANGE THIS TOO
2020-06-02 21:38:29 +01:00
; the #number is on the clear pocket containing the original notes
; if using a tape:
*calibrate tape +0.0 ; +ve if tape was too short, -ve if too long
; Centreline data
*data normal from to length bearing gradient ignoreall
[ 1 2 5.57 034.5 -12.8 ]
;-----------
;recorded station details (leave commented out)
;(NP=Nail Polish, LHW/RHW=Left/Right Hand Wall)
;Station Left Right Up Down Description
;[Red] nail varnish markings
[;1 0.8 0 5.3 1.6 ; NP on boulder. pt 23 on foo survey ]
[;2 0.3 1.2 6 1.2 ; NP '2' LHW ]
[;3 1.3 0 3.4 0.2 ; Rock on floor - not refindable ]
;LRUDs arranged into passage tubes
;new *data command for each 'passage',
;repeat stations and adjust numbers as needed
*data passage station left right up down
;[ 1 0.8 0 5.3 1.6 ]
;[ 2 0.3 1.2 6 1.2 ]
*data passage station left right up down
;[ 1 1.3 1.5 5.3 1.6 ]
;[ 3 2.4 0 3.4 0.2 ]
;-----------
;Question Mark List ;(leave commented-out)
; The nearest-station is the name of the survey and station which are nearest to
; the QM. The resolution-station is either '-' to indicate that the QM hasn't
; been checked; or the name of the survey and station which push that QM. If a
; QM doesn't go anywhere, set the resolution-station to be the same as the
; nearest-station. Include any relevant details of how to find or push the QM in
; the textual description.
2023-03-17 14:33:30 +00:00
;Serial number grade(A/B/C/D/X) nearest-station resolution-station description
2020-06-02 21:38:29 +01:00
;[ QM1 A surveyname.3 - description of QM ]
;[ QM2 B surveyname.5 - description of QM ]
2023-03-14 16:10:57 +00:00
;TICKed off QMs
; in the past, if another survey existed, the resolution-station
; field was filled in, e.g.
;[ QM2 B surveyname.5 anothersurvey.7 description of QM and description of progress ]
; or we can use the trial format
;Serial number TICK date resolution description
;[QM2 TICK 2022-07-20 This is an example ticked QM]
2020-06-02 21:38:29 +01:00
;------------
;Cave description ;(leave commented-out)
2023-03-14 16:10:57 +00:00
;Freeform text describing this section of the cave
2020-06-02 21:38:29 +01:00
*end [surveyname]
"""
2011-07-11 02:10:22 +01:00
def get_survexfile(filename):
"""Gets the SurvexFile object from the survex path for the file
in a robust way
"""
refs = SurvexFile.objects.filter(path=filename)
if len(refs)==0: # new survex file, not created in db yet
survexfile = False
elif len(refs)==1:
survexfile = SurvexFile.objects.get(path=filename)
else:
survexfile = refs[0]
# OK this is due to a bug in the import file parsing, whoops. Now fixed ?!
print("BUG - to be fixed in the survex parser - not critical..")
print(f"Number of SurvexFile objects found: {len(refs)}")
for s in refs:
print (s.path, s.survexdirectory, s.cave)
# print(type(survexfile), filename)
return survexfile
2011-07-11 02:10:22 +01:00
class SvxForm(forms.Form):
"""Two-pane form, upper half is the raw survex file, lower half (with green background)
2023-03-05 17:46:01 +00:00
is the output : of running 'cavern' on the survex file, of running a 'difference', of
checking that there are no square brackets left.
"""
dirname = forms.CharField(widget=forms.TextInput(attrs={"readonly": True}))
filename = forms.CharField(widget=forms.TextInput(attrs={"readonly": True}))
datetime = forms.DateTimeField(widget=forms.TextInput(attrs={"readonly": True}))
outputtype = forms.CharField(widget=forms.TextInput(attrs={"readonly": True}))
code = forms.CharField(widget=forms.Textarea(attrs={"cols": 140, "rows": 36}))
survexfile = models.ForeignKey(SurvexFile, blank=True, null=True, on_delete=models.SET_NULL) # 1:1 ?
template = False
2011-07-11 02:10:22 +01:00
def GetDiscCode(self):
fname = survexdatasetpath / (self.data["filename"] + ".svx")
2022-03-11 16:22:37 +00:00
if not fname.is_file():
print(">>> >>> WARNING - svx file not found, showing TEMPLATE SVX", fname, flush=True)
self.template = True
2023-03-05 18:20:18 +00:00
self.survexfile = False
2011-07-11 02:10:22 +01:00
return survextemplatefile
if not self.survexfile:
self.survexfile = get_survexfile(self.data["filename"])
try:
fin = open(fname, "r", encoding="utf8", newline="")
svxtext = fin.read()
fin.close()
except:
# hack. Replace this with something better.
fin = open(fname, "r", encoding="iso-8859-1", newline="")
svxtext = fin.read()
fin.close()
2011-07-11 02:10:22 +01:00
return svxtext
2011-07-11 02:10:22 +01:00
def DiffCode(self, rcode):
code = self.GetDiscCode()
difftext = difflib.unified_diff(code.splitlines(), rcode.splitlines())
difflist = [diffline.strip() for diffline in difftext if not re.match(r"\s*$", diffline)]
2011-07-11 02:10:22 +01:00
return difflist
def SaveCode(self, rcode):
fname = survexdatasetpath / (self.data["filename"] + ".svx")
2023-03-05 19:09:28 +00:00
if not fname.is_file():
if re.search(r"\[|\]", rcode):
2023-03-05 19:09:28 +00:00
errmsg = "Error: remove all []s from the text.\nEverything inside [] are only template guidance.\n\n"
errmsg += "All [] must be edited out and replaced with real data before you can save this file.\n"
return errmsg
mbeginend = re.search(r"(?s)\*begin\s+(\w+).*?\*end\s+(\w+)", rcode)
2011-07-11 02:10:22 +01:00
if not mbeginend:
return "Error: no begin/end block here"
if mbeginend.group(1) != mbeginend.group(2):
2020-06-02 21:38:29 +01:00
return "Error: mismatching begin/end labels"
# Make this create new survex folders if needed
try:
fout = open(fname, "w", encoding="utf8", newline="\n")
except FileNotFoundError:
pth = os.path.dirname(self.data["filename"])
newpath = survexdatasetpath / pth
if not os.path.exists(newpath):
os.makedirs(newpath)
fout = open(fname, "w", encoding="utf8", newline="\n")
2021-12-05 17:45:45 +00:00
except PermissionError:
return (
"CANNOT save this file.\nPERMISSIONS incorrectly set on server for this file. Ask a nerd to fix this."
)
# javascript seems to insert CRLF on WSL1 whatever you say. So fix that:
2023-01-30 23:04:11 +00:00
fout.write(rcode.replace("\r", ""))
fout.write("\n")
2011-07-11 02:10:22 +01:00
fout.close()
if socket.gethostname() == "expo":
comment = f"Online survex edit: {self.data['filename']}.svx"
else:
comment = f"Online survex edit: {self.data['filename']}.svx on dev machine '{socket.gethostname()}' "
only_commit(fname, comment)
2023-03-06 16:37:54 +00:00
# should only call this is something changed
parse_one_file(self.data["filename"])
2023-03-05 19:09:28 +00:00
return "SAVED and committed to git (if there were differences)"
2011-07-11 02:10:22 +01:00
def Process(self):
2022-03-11 16:22:37 +00:00
print(">>>>....\n....Processing\n")
froox = os.fspath(survexdatasetpath / (self.data["filename"] + ".svx"))
froog = os.fspath(survexdatasetpath / (self.data["filename"] + ".log"))
2011-07-11 02:10:22 +01:00
cwd = os.getcwd()
os.chdir(os.path.split(froox)[0])
os.system(settings.CAVERN + " --log " + froox)
2011-07-11 02:10:22 +01:00
os.chdir(cwd)
# Update this to use the new syntax..
# sp = subprocess.run([settings.CAVERN, "--log", f'--output={outputdir}', f'{fullpath}.svx'],
# capture_output=True, check=False, text=True)
# if sp.returncode != 0:
# message = f' ! Error running {settings.CAVERN}: {fullpath}'
2022-03-11 16:22:37 +00:00
# DataIssue.objects.create(parser='entrances', message=message)
# print(message)
# print(f'stderr:\n\n' + str(sp.stderr) + '\n\n' + str(sp.stdout) + '\n\nreturn code: ' + str(sp.returncode))
filepatherr = Path(survexdatasetpath / str(self.data["filename"] + ".err"))
2022-03-11 16:22:37 +00:00
if filepatherr.is_file():
if filepatherr.stat().st_size == 0:
filepatherr.unlink() # delete empty closure error file
2022-03-11 16:22:37 +00:00
fin = open(froog, "r", encoding="utf8")
2011-07-11 02:10:22 +01:00
log = fin.read()
fin.close()
# log = re.sub("(?s).*?(Survey contains)", "\\1", log) # this omits any ERROR MESSAGES ! Don't do it.
for s in [
"Removing trailing traverses...\n\n",
"Concatenating traverses...\n\n" "Simplifying network...\n\n",
2022-03-11 16:22:37 +00:00
"Calculating network...\n\n",
"Calculating traverses...\n\n",
"Calculating trailing traverses...\n\n",
"Calculating statistics...\n\n",
]:
log = log.replace(s, "")
2011-07-11 02:10:22 +01:00
return log
2021-03-26 19:42:58 +00:00
@ensure_csrf_cookie
2011-07-11 02:10:22 +01:00
def svx(request, survex_file):
"""Displays a single survex file in an textarea window (using a javascript online editor to enable
2021-03-26 19:42:58 +00:00
editing) with buttons which allow SAVE, check for DIFFerences from saved, and RUN (which runs the
cavern executable and displays the output below the main textarea).
Requires CSRF to be set up correctly, and requires permission to write to the filesystem.
2023-03-05 19:09:28 +00:00
Originally the non-existence of difflist was used as a marker to say that the file had been saved
and that thuis there were no differences. This is inadequate, as a new file which has not been saved
also has no difflist.
Needs refactoring. Too many piecemeal edits and odd state dependencies.
"""
warning = False
2011-07-11 02:10:22 +01:00
# get the basic data from the file given in the URL
dirname = os.path.split(survex_file)[0] # replace with proper pathlib function..
2011-07-11 02:10:22 +01:00
dirname += "/"
nowtime = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
2011-07-11 02:10:22 +01:00
outputtype = "normal"
form = SvxForm({"filename": survex_file, "dirname": dirname, "datetime": nowtime, "outputtype": outputtype})
2011-07-11 02:10:22 +01:00
# if the form has been returned
difflist = []
2011-07-11 02:10:22 +01:00
logmessage = ""
message = ""
if request.method == "POST": # If the form has been submitted...
rform = SvxForm(request.POST) #
if rform.is_valid(): # All validation rules pass (how do we check it against the filename and users?)
rcode = rform.cleaned_data["code"]
outputtype = rform.cleaned_data["outputtype"] # used by CodeMirror ajax I think
2011-07-11 02:10:22 +01:00
difflist = form.DiffCode(rcode)
# keys = []
# for key in rform.data:
# keys.append(key)
# print(">>>> ", keys)
sfile = form.survexfile
2011-07-11 02:10:22 +01:00
if "revert" in rform.data:
pass
2023-03-05 19:53:12 +00:00
2011-07-11 02:10:22 +01:00
if "process" in rform.data:
2023-03-05 19:53:12 +00:00
if difflist:
message = "SAVE FILE FIRST"
form.data["code"] = rcode
elif sfile:
2011-07-11 02:10:22 +01:00
logmessage = form.Process()
2022-03-11 16:22:37 +00:00
if logmessage:
message = f"OUTPUT FROM PROCESSING\n{logmessage}"
2011-07-11 02:10:22 +01:00
else:
2023-03-05 19:53:12 +00:00
message = "SAVE VALID FILE FIRST"
form.data["code"] = rcode
2011-07-11 02:10:22 +01:00
if "save" in rform.data:
2021-04-07 21:53:17 +01:00
if request.user.is_authenticated:
2023-03-06 16:37:54 +00:00
if difflist:
message = form.SaveCode(rcode)
else:
message = "NO DIFFERENCES - so not saving the file"
2011-07-11 02:10:22 +01:00
else:
2021-03-26 19:42:58 +00:00
message = "You do not have authority to save this file. Please log in."
2011-07-11 02:10:22 +01:00
if message != "SAVED":
form.data["code"] = rcode
2011-07-11 02:10:22 +01:00
if "diff" in rform.data:
2022-03-11 16:22:37 +00:00
print("Differences: ")
form.data["code"] = rcode
# GET, also fall-through after POST-specific handling
svxfile = get_survexfile(survex_file)
if "code" not in form.data:
form.data["code"] = form.GetDiscCode()
if form.template:
warning = True
2011-07-11 02:10:22 +01:00
if not difflist:
2023-03-05 19:09:28 +00:00
if svxfile:
difflist.append("No differences from last saved file.")
2023-03-05 19:09:28 +00:00
else:
difflist.append("No differences from last saved file (or from initial template).")
2011-07-11 02:10:22 +01:00
if message:
difflist.insert(0, message)
svxincludes = re.findall(r"(?i)\*include\s+(\S+)", form.data["code"] or "")
# collect all the survex blocks which actually have a valid date
2023-03-05 18:20:18 +00:00
if svxfile:
2023-03-14 02:12:28 +00:00
has_3d = (Path(survexdatasetpath) / Path(survex_file + ".3d")).is_file()
2023-03-05 19:09:28 +00:00
try:
svxblocks = svxfile.survexblock_set.filter(date__isnull=False).order_by('date')
except:
svxblocks = []
try:
svxblocksall = svxfile.survexblock_set.all()
2023-03-12 00:35:37 +00:00
svxlength = 0.0
for b in svxblocksall:
svxlength += b.legslength
2023-03-14 02:12:28 +00:00
# print(svxlength,b, b.legsall)
2023-03-05 19:09:28 +00:00
except AttributeError: # some survexfiles just *include files and have no blocks themselves
svxblocksall = []
2023-03-05 18:20:18 +00:00
else:
svxblocks = []
2023-03-05 19:09:28 +00:00
svxblocksall = []
2023-03-14 02:12:28 +00:00
svxlength = 0.0
has_3d = False
2023-03-05 19:09:28 +00:00
if not difflist:
difflist = ["Survex file does not exist yet"]
2023-02-27 16:42:08 +00:00
events = events_on_dates(svxblocks)
vmap = {
"settings": settings,
"warning": warning,
2023-03-14 02:12:28 +00:00
"has_3d": has_3d,
"title": survex_file,
2023-03-12 00:35:37 +00:00
"svxlength": svxlength,
"svxblocks": svxblocks,
"svxincludes": svxincludes,
"difflist": difflist,
"logmessage": logmessage,
"form": form,
"events": events,
}
if outputtype == "ajax": # used by CodeMirror ajax I think
return render(request, "svxfiledifflistonly.html", vmap)
return render(request, "svxfile.html", vmap)
SameDateEvents = namedtuple('SameDateEvents', ['trips', 'svxfiles', 'wallets', 'blocks'])
2023-02-27 16:42:08 +00:00
def events_on_dates(svxblocks):
2023-02-27 16:42:08 +00:00
"""Returns a dictionary of indexed by date. For each date there is a named tuple of 3 lists:
logbookentries, survexfiles (NB files, not blocks), and wallets.
"""
# deduplicate but maintain date order
dates = []
for b in svxblocks:
if b.date not in dates:
dates.append(b.date)
# print(f"- {b.date}")
2023-02-27 16:42:08 +00:00
events = {}
for date in dates:
trips = LogbookEntry.objects.filter(date=date)
svxfiles = SurvexFile.objects.filter(survexblock__date=date).distinct()
2023-02-27 16:42:08 +00:00
# https://stackoverflow.com/questions/739776/how-do-i-do-an-or-filter-in-a-django-query
wallets = Wallet.objects.filter(Q(survexblock__date=date) | Q(walletdate=date)).distinct()
2023-02-27 16:42:08 +00:00
blocks = []
for b in svxblocks:
if b.date == date:
blocks.append(b.name)
2023-02-27 16:42:08 +00:00
events[date] = SameDateEvents(trips=trips, svxfiles=svxfiles, wallets=wallets, blocks=blocks)
# print(events)
2023-02-27 16:42:08 +00:00
return events
2011-07-11 02:10:22 +01:00
2022-03-11 16:22:37 +00:00
# The cavern running function. This is NOT where it is run inside the form! see SvxForm.Process() for that
2011-07-11 02:10:22 +01:00
def process(survex_file):
"""This runs cavern only where a .3d, .log or .err file is requested."""
filepathsvx = survexdatasetpath / str(survex_file + ".svx")
2011-07-11 02:10:22 +01:00
cwd = os.getcwd()
os.chdir(os.path.split(os.fspath(survexdatasetpath / survex_file))[0])
2022-03-11 16:22:37 +00:00
os.system(settings.CAVERN + " --log " + str(filepathsvx))
2011-07-11 02:10:22 +01:00
os.chdir(cwd)
2022-03-11 16:22:37 +00:00
# Update this to use the new syntax..
# sp = subprocess.run([settings.CAVERN, "--log", f'--output={outputdir}', f'{fullpath}.svx'],
# capture_output=True, check=False, text=True)
2022-03-11 16:22:37 +00:00
# if sp.returncode != 0:
# message = f' ! Error running {settings.CAVERN}: {fullpath}'
# DataIssue.objects.create(parser='entrances', message=message)
# print(message)
# print(f'stderr:\n\n' + str(sp.stderr) + '\n\n' + str(sp.stdout) + '\n\nreturn code: ' + str(sp.returncode))
2022-03-11 16:22:37 +00:00
filepatherr = Path(survexdatasetpath / str(survex_file + ".err"))
if filepatherr.is_file():
if filepatherr.stat().st_size == 0:
filepatherr.unlink() # delete empty closure error file
2011-07-11 02:10:22 +01:00
def threed(request, survex_file):
filepath3d = survexdatasetpath / str(survex_file + ".3d")
2023-01-30 23:04:11 +00:00
survexdatasetpath / str(survex_file + ".log")
2022-03-11 16:22:37 +00:00
if filepath3d.is_file():
threed = open(filepath3d, "rb")
return HttpResponse(threed, content_type="application/x-aven")
else:
process(survex_file) # should not need to do this if it already exists, as it should.
log = open(survexdatasetpath / str(survex_file + ".log"), "r", encoding="utf-8")
return HttpResponse(log, content_type="text")
2011-07-11 02:10:22 +01:00
2022-03-11 16:22:37 +00:00
def svxlog(request, survex_file):
"""Used for rendering .log files from survex outputtype"""
filepathlog = survexdatasetpath / str(survex_file + ".log")
2022-03-11 16:22:37 +00:00
if not filepathlog.is_file():
process(survex_file)
2022-03-11 16:22:37 +00:00
log = open(filepathlog, "r")
return HttpResponse(log, content_type="text/plain; charset=utf-8") # default: "text/html; charset=utf-8"
2011-07-11 02:10:22 +01:00
def err(request, survex_file):
filepatherr = survexdatasetpath / str(survex_file + ".err")
if not filepatherr.is_file(): # probably not there because it was empty, but re-run anyway
process(survex_file)
2011-07-11 02:10:22 +01:00
process(survex_file)
2022-03-11 16:22:37 +00:00
if filepatherr.is_file():
err = open(filepatherr, "r")
return HttpResponse(err, content_type="text/plain; charset=utf-8")
else:
return HttpResponse(
f"No closure errors. \nEmpty {filepatherr} file produced. \nSee the .log file.",
content_type="text/plain; charset=utf-8",
)
2011-07-11 02:10:22 +01:00
def identifycavedircontents(gcavedir):
"""
find the primary survex file in each cave directory
this should be in a configuration, not buried in the code...
For gods sake someone refactor this monstrosity using pathlib
"""
2011-07-11 02:10:22 +01:00
name = os.path.split(gcavedir)[1]
subdirs = []
subsvx = []
2011-07-11 02:10:22 +01:00
primesvx = None
for f in os.listdir(gcavedir): # These may get outdated as data gets tidied up. This should not be in the code!
2011-07-11 02:10:22 +01:00
if name == "204" and (f in ["skel.svx", "template.svx", "204withents.svx"]):
pass
elif name == "136" and (f in ["136-noents.svx"]):
pass
elif name == "115" and (f in ["115cufix.svx", "115fix.svx"]):
pass
2011-07-11 02:10:22 +01:00
elif os.path.isdir(os.path.join(gcavedir, f)):
if f[0] != ".":
subdirs.append(f)
elif f[-4:] == ".svx":
nf = f[:-4]
if (
nf.lower() == name.lower()
or nf[:3] == "all"
or (name, nf) in [("resurvey2005", "145-2005"), ("cucc", "cu115")]
):
2011-07-11 02:10:22 +01:00
if primesvx:
if nf[:3] == "all":
# assert primesvx[:3] != "all", (name, nf, primesvx, gcavedir, subsvx)
2011-07-11 02:10:22 +01:00
primesvx = nf
else:
# assert primesvx[:3] == "all", (name, nf, primesvx, gcavedir, subsvx)
pass
2011-07-11 02:10:22 +01:00
else:
primesvx = nf
else:
subsvx.append(nf)
else:
pass
# assert re.match(".*?(?:.3d|.log|.err|.txt|.tmp|.diff|.e?spec|~)$", f), (gcavedir, f)
2011-07-11 02:10:22 +01:00
subsvx.sort()
# assert primesvx, (gcavedir, subsvx)
2011-07-11 02:10:22 +01:00
if primesvx:
subsvx.insert(0, primesvx)
return subdirs, subsvx
def get_survexareapath(area):
return survexdatasetpath / str("caves-" + area)
2011-07-11 02:10:22 +01:00
# direct local non-database browsing through the svx file repositories
# every time the page is viewed! Should cache this.
2011-07-11 02:10:22 +01:00
def survexcaveslist(request):
"""This reads the entire list of caves in the Loser repo directory and produces a complete report.
It can find caves which have not yet been properly registered in the system by Databasereset.py because
someone may have uploaded the survex files without doing the rest of the integration process.
It uses very impenetrable code in identifycavedircontents()
"""
2022-10-06 19:02:15 +01:00
# TO DO - filter out the non-public caves from display UNLESS LOGGED IN
# This is very impenetrable code, original from Aaron Curtis I think.
onefilecaves = []
multifilecaves = []
subdircaves = []
fnumlist = []
for area in ["1623", "1626", "1624", "1627"]:
cavesdir = get_survexareapath(area)
arealist = sorted([(area, -int(re.match(r"\d*", f).group(0) or "0"), f) for f in os.listdir(cavesdir)])
fnumlist += arealist
# print(fnumlist)
2011-07-11 02:10:22 +01:00
# go through the list and identify the contents of each cave directory
for area, num, cavedir in fnumlist:
# these have sub dirs /cucc/ /arge/ /old/ but that is no reason to hide them in this webpage
# so these are now treated the same as 142 and 113 which also have a /cucc/ sub dir
# if cavedir in ["144", "40"]:
# continue
# This all assumes that the first .svx file has the same name as the cave name,
# which usually but not always true. e.g. caves-1623/78/allkaese.svx not caves-1623/78/78.svx
# which is why we now also pass through the cavedir
2022-10-06 19:02:15 +01:00
# Still fails for loutitohoehle etc even though this is set correctly when the pending cave is created
cavesdir = get_survexareapath(area)
2011-07-11 02:10:22 +01:00
gcavedir = os.path.join(cavesdir, cavedir)
if os.path.isdir(gcavedir) and cavedir[0] != ".":
subdirs, subsvx = identifycavedircontents(gcavedir)
2023-01-30 23:04:11 +00:00
check_cave_registered(
area, cavedir
) # should do this only once per database load or it will be slow
survdirobj = []
2011-07-11 02:10:22 +01:00
for lsubsvx in subsvx:
survdirobj.append(("caves-" + area + "/" + cavedir + "/" + lsubsvx, lsubsvx))
2011-07-11 02:10:22 +01:00
# caves with subdirectories
if subdirs:
subsurvdirs = []
2011-07-11 02:10:22 +01:00
for subdir in subdirs:
dsubdirs, dsubsvx = identifycavedircontents(os.path.join(gcavedir, subdir))
# assert not dsubdirs # handle case of empty sub directory
lsurvdirobj = []
2011-07-11 02:10:22 +01:00
for lsubsvx in dsubsvx:
lsurvdirobj.append(("caves-" + area + "/" + cavedir + "/" + subdir + "/" + lsubsvx, lsubsvx))
if len(dsubsvx) >= 1:
subsurvdirs.append(
(subdir, lsurvdirobj[0], lsurvdirobj[0:])
) # list now includes the first item too
if survdirobj:
subdircaves.append((cavedir, (survdirobj[0], survdirobj[1:]), subsurvdirs))
else:
print(f" ! Subdirectory containing empty subdirectory {subdirs} in {gcavedir}")
2011-07-11 02:10:22 +01:00
# multifile caves
elif len(survdirobj) > 1:
multifilecaves.append((survdirobj[0], cavedir, survdirobj[1:]))
2011-07-11 02:10:22 +01:00
# single file caves
elif len(survdirobj) == 1:
onefilecaves.append(survdirobj[0])
return render(
request,
"svxfilecavelist.html",
{
"settings": settings,
"onefilecaves": onefilecaves,
"multifilecaves": multifilecaves,
"subdircaves": subdircaves,
},
)
2011-07-11 02:10:22 +01:00
def survexcavesingle(request, survex_cave):
"""parsing all the survex files of a single cave and showing that it's consistent and can find all
2022-10-11 19:01:02 +01:00
the files and people. Should explicitly fix the kataster number thing.
kataster numbers are not unique across areas. This used to be a db constraint but we need to manage
this ourselves as we don't want the parser aborting with an error message.
Should use getCave() from models_caves
"""
sc = survex_cave
try:
cave = Cave.objects.get(kataster_number=sc) # This may not be unique.
return render(request, "svxcavesingle.html", {"settings": settings, "cave": cave})
except ObjectDoesNotExist:
# can get here if the survex file is in a directory labelled with unofficial number not kataster number.
# maybe - and _ mixed up, or CUCC-2017- instead of 2017-CUCC-, or CUCC2015DL01 . Let's not get carried away..
# or it might be an exact search for a specific survefile but just missing the '.svx.
if (Path(survexdatasetpath) / Path(survex_cave + ".svx")).is_file():
return svx(request, survex_cave)
for unoff in [sc, sc.replace("-", "_"), sc.replace("_", "-"), sc.replace("-", ""), sc.replace("_", "")]:
try:
cave = Cave.objects.get(unofficial_number=unoff) # return on first one we find
return render(request, "svxcavesingle.html", {"settings": settings, "cave": cave})
except ObjectDoesNotExist:
continue # next attempt in for loop
return render(request, "errors/svxcavesingle404.html", {"settings": settings, "cave": sc})
except MultipleObjectsReturned:
caves = Cave.objects.filter(kataster_number=survex_cave)
return render(request, "svxcaveseveral.html", {"settings": settings, "caves": caves})
except:
return render(request, "errors/svxcavesingle404.html", {"settings": settings, "cave": sc})
def check_cave_registered(area, survex_cave):
"""Checks whether a cave has been properly registered when it is found in the Loser repo
This should really be called by databaseReset not here in a view
Currently Caves are only registered if they are listed in :expoweb: settings.CAVEDESCRIPTIONS
so we need to add in any more here.
This function runs but does not seem to be used?!
2022-10-06 19:02:15 +01:00
A serious bodge anyway.
"""
try:
cave = Cave.objects.get(kataster_number=survex_cave)
return str(cave)
except MultipleObjectsReturned:
caves = Cave.objects.filter(kataster_number=survex_cave)
for c in caves:
if str(c) == area + "-" + survex_cave:
return str(c) # just get the first that matches
return None # many returned but none in correct area
except ObjectDoesNotExist:
pass
try:
cave = Cave.objects.get(unofficial_number=survex_cave) # should be unique!
if cave.kataster_number:
return str(cave)
else:
return None
except ObjectDoesNotExist:
pass
return None