2020-05-28 01:16:45 +01:00
import os
import re
2023-01-19 18:35:56 +00:00
import string
2021-04-02 23:21:23 +01:00
import subprocess
2023-01-19 18:35:56 +00:00
import urllib . parse
2021-04-02 23:21:23 +01:00
from pathlib import Path
2012-01-07 19:05:25 +00:00
from django import forms
2020-05-28 01:16:45 +01:00
from django . conf import settings
2023-01-19 18:35:56 +00:00
from django . core . exceptions import MultipleObjectsReturned , ObjectDoesNotExist
2023-01-30 19:04:36 +00:00
from django . http import HttpResponse , HttpResponseNotFound , HttpResponseRedirect
2019-03-30 17:02:07 +00:00
from django . shortcuts import get_object_or_404 , render
2023-01-19 18:35:56 +00:00
from django . urls import NoReverseMatch , reverse
2013-08-01 16:00:01 +01:00
2023-01-19 18:35:56 +00:00
import settings
2020-05-28 01:16:45 +01:00
import troggle . settings as settings
2023-01-30 19:04:36 +00:00
from troggle . core . forms import CaveAndEntranceFormSet , CaveForm , EntranceForm , EntranceLetterForm
from troggle . core . models . caves import Area , Cave , CaveAndEntrance , Entrance , EntranceSlug , GetCaveLookup , SurvexStation
2023-01-29 21:45:51 +00:00
from troggle . core . models . logbooks import CaveSlug , QM
2023-01-19 18:35:56 +00:00
from troggle . core . models . troggle import DataIssue , Expedition
from troggle . core . utils import write_and_commit , writetrogglefile
2021-04-01 21:44:03 +01:00
from troggle . core . views import expo
2023-01-19 18:35:56 +00:00
2021-05-03 20:35:35 +01:00
from . auth import login_required_if_public
2019-02-26 00:43:05 +00:00
2023-01-30 19:04:36 +00:00
""" Manages the complex procedures to assemble a cave description out of the compnoents
2021-04-13 01:37:42 +01:00
Manages the use of cavern to parse survex files to produce 3 d and pos files
2023-01-30 19:04:36 +00:00
"""
2021-04-13 01:37:42 +01:00
2023-01-30 19:04:36 +00:00
todo = """ - Fix rendercave() so that CaveView works
2022-02-26 23:20:59 +00:00
- in getCaves ( ) search GCavelookup first , which should raise a MultpleObjectsReturned exception if no duplicates
2023-01-30 19:04:36 +00:00
"""
2021-11-06 22:36:44 +00:00
2021-04-02 23:21:23 +01:00
def getCaves ( cave_id ) :
2023-01-30 19:04:36 +00:00
""" Only gets called if a call to getCave() raises a MultipleObjects exception
2021-04-02 23:21:23 +01:00
TO DO : search GCavelookup first , which should raise a MultpleObjectsReturned exception if there
2023-01-30 19:04:36 +00:00
are duplicates """
2021-04-02 23:21:23 +01:00
try :
caves = Cave . objects . filter ( kataster_number = cave_id )
caveset = set ( caves )
2023-01-30 19:04:36 +00:00
Gcavelookup = GetCaveLookup ( ) # dictionary makes strings to Cave objects
2021-04-02 23:21:23 +01:00
if cave_id in Gcavelookup :
caveset . add ( Gcavelookup [ cave_id ] )
return list ( caveset )
except :
return [ ]
2011-07-11 02:10:22 +01:00
def getCave ( cave_id ) :
2023-01-30 19:04:36 +00:00
""" Returns a cave object when given a cave name or number. It is used by views including cavehref, ent, and qm.
2021-03-28 23:47:47 +01:00
TO DO : search GCavelookup first , which should raise a MultpleObjectsReturned exception if there
2023-01-30 19:04:36 +00:00
are duplicates """
2011-07-11 02:10:22 +01:00
try :
cave = Cave . objects . get ( kataster_number = cave_id )
2021-03-31 20:18:46 +01:00
return cave
2021-03-28 23:47:47 +01:00
except Cave . MultipleObjectsReturned as ex :
2023-01-30 19:04:36 +00:00
raise MultipleObjectsReturned ( " Duplicate kataster number " ) from ex # propagate this up
2021-03-28 23:47:47 +01:00
2021-03-31 20:18:46 +01:00
except Cave . DoesNotExist as ex :
2023-01-30 19:04:36 +00:00
Gcavelookup = GetCaveLookup ( ) # dictionary makes strings to Cave objects
2021-03-28 23:47:47 +01:00
if cave_id in Gcavelookup :
2023-01-30 19:04:36 +00:00
return Gcavelookup [ cave_id ]
2021-03-31 20:18:46 +01:00
else :
2023-01-30 19:04:36 +00:00
raise ObjectDoesNotExist ( " No cave found with this identifier in any id field " ) from ex # propagate this up
2021-03-28 23:47:47 +01:00
except :
raise ObjectDoesNotExist ( " No cave found with this identifier in any id field " )
2011-07-11 02:10:22 +01:00
2023-01-30 19:04:36 +00:00
2012-08-05 18:26:24 +01:00
def pad5 ( x ) :
2023-01-30 19:04:36 +00:00
return " 0 " * ( 5 - len ( x . group ( 0 ) ) ) + x . group ( 0 )
2012-08-05 18:26:24 +01:00
def padnumber ( x ) :
2023-01-30 19:04:36 +00:00
return re . sub ( " \ d+ " , pad5 , x )
2012-08-05 18:26:24 +01:00
def numericalcmp ( x , y ) :
2023-01-30 19:04:36 +00:00
return cmp ( padnumber ( x ) , padnumber ( y ) )
2012-08-05 18:26:24 +01:00
2021-04-16 16:01:35 +01:00
def caveKey ( c ) :
""" This function goes into a lexicogrpahic sort function, and the values are strings,
but we want to sort numberically on kataster number before sorting on unofficial number .
2023-01-30 19:04:36 +00:00
"""
2021-04-16 16:01:35 +01:00
if not c . kataster_number :
return " 9999. " + c . unofficial_number
else :
if int ( c . kataster_number ) > = 100 :
return " 99. " + c . kataster_number
if int ( c . kataster_number ) > = 10 :
2023-01-30 19:04:36 +00:00
return " 9. " + c . kataster_number
2021-04-16 16:01:35 +01:00
return c . kataster_number
2012-06-10 14:59:21 +01:00
2023-01-30 19:04:36 +00:00
2020-06-07 16:13:59 +01:00
def getnotablecaves ( ) :
notablecaves = [ ]
for kataster_number in settings . NOTABLECAVESHREFS :
try :
cave = Cave . objects . get ( kataster_number = kataster_number )
notablecaves . append ( cave )
except :
2023-01-30 19:04:36 +00:00
# print(" ! FAILED to get only one cave per kataster_number OR invalid number for: "+kataster_number)
2020-06-07 16:13:59 +01:00
caves = Cave . objects . all ( ) . filter ( kataster_number = kataster_number )
for c in caves :
2023-01-30 19:04:36 +00:00
# print(c.kataster_number, c.slug())
2020-06-07 16:13:59 +01:00
if c . slug ( ) != None :
notablecaves . append ( c )
return notablecaves
2023-01-30 19:04:36 +00:00
2011-07-11 02:10:22 +01:00
def caveindex ( request ) :
2019-06-26 20:57:24 +01:00
caves = Cave . objects . all ( )
2023-01-30 19:04:36 +00:00
caves1623 = list ( Cave . objects . filter ( area__short_name = " 1623 " ) )
caves1626 = list ( Cave . objects . filter ( area__short_name = " 1626 " ) )
2020-05-25 01:46:52 +01:00
caves1623 . sort ( key = caveKey )
caves1626 . sort ( key = caveKey )
2023-01-30 19:04:36 +00:00
return render (
request ,
" caveindex.html " ,
{ " caves1623 " : caves1623 , " caves1626 " : caves1626 , " notablecaves " : getnotablecaves ( ) , " cavepage " : True } ,
)
2011-07-11 02:10:22 +01:00
2023-01-30 19:04:36 +00:00
def cave3d ( request , cave_id = " " ) :
""" This is used to create a download url in templates/cave.html if anyone wants to download the .3d file
2021-04-02 23:21:23 +01:00
The caller template tries kataster first , then unofficial_number if that kataster number does not exist
but only if Cave . survex_file is non - empty
2023-01-30 19:04:36 +00:00
2021-04-03 20:52:35 +01:00
But the template file cave . html has its own ideas about the name of the file and thus the href . Ouch .
/ cave / 3 d / < cave_id >
2023-01-30 19:04:36 +00:00
"""
2021-03-28 23:47:47 +01:00
try :
2023-01-30 19:04:36 +00:00
cave = getCave ( cave_id )
2021-04-02 23:21:23 +01:00
except ObjectDoesNotExist :
2021-04-14 16:28:30 +01:00
return HttpResponseNotFound
2023-01-30 19:04:36 +00:00
except Cave . MultipleObjectsReturned :
# But only one might have survex data? So scan and return the first that works.
caves = getCaves ( cave_id )
for c in caves :
if c . survex_file :
2021-04-02 23:21:23 +01:00
# exists, but may not be a valid file path to a valid .svx file in the Loser repo
return file3d ( request , c , c . slug )
else :
return file3d ( request , cave , cave_id )
2023-01-30 19:04:36 +00:00
2021-04-02 23:21:23 +01:00
def file3d ( request , cave , cave_id ) :
2023-01-30 19:04:36 +00:00
""" Produces a .3d file directly for download.
2021-04-03 20:52:35 +01:00
survex_file should be in valid path format ' caves-1623/264/264.svx ' but it might be mis - entered as simply ' 2012-ns-10.svx '
2023-01-30 19:04:36 +00:00
Also the cave . survex_file may well not match the cave description path :
2021-04-03 20:52:35 +01:00
e . g . it might be to the whole system ' smk-system.svx ' instead of just for the specific cave .
2023-01-30 19:04:36 +00:00
2021-04-03 20:52:35 +01:00
- If the expected .3 d file corresponding to cave . survex_file is present , return it .
- If the cave . survex_file exists , generate the 3 d file , cache it and return it
- Use the cave_id to guess what the 3 d file might be and , if in the cache , return it
- Use the cave_id to guess what the . svx file might be and generate the .3 d file and return it
2023-01-30 19:04:36 +00:00
- ( Use the incomplete cave . survex_file and a guess at the missing directories to guess the real . svx file location ? )
"""
2021-04-03 20:52:35 +01:00
def runcavern ( survexpath ) :
2023-01-30 19:04:36 +00:00
""" This has not yet been properly updated with respect to putting the .3d file in the same folder as the .svx filse
as done in runcavern3d ( ) in parsers / survex . py
2022-07-20 23:22:07 +01:00
Needs testing .
2023-01-30 19:04:36 +00:00
"""
# print(" - Regenerating cavern .log and .3d for '{}'".format(survexpath))
2021-04-03 20:52:35 +01:00
if not survexpath . is_file ( ) :
2023-01-30 19:04:36 +00:00
# print(" - - Regeneration ABORT\n - - from '{}'".format(survexpath))
2021-04-03 20:54:33 +01:00
pass
2021-04-02 23:21:23 +01:00
try :
2023-01-30 19:04:36 +00:00
completed_process = subprocess . run (
[ settings . CAVERN , " --log " , f " --output= { settings . SURVEX_DATA } " , f " { survexpath } " ]
)
2021-04-02 23:21:23 +01:00
except OSError as ex :
2023-01-30 19:04:36 +00:00
# propagate this to caller.
2021-04-03 20:52:35 +01:00
raise OSError ( completed_process . stdout ) from ex
2023-01-30 19:04:36 +00:00
op3d = ( Path ( settings . SURVEX_DATA ) / Path ( survexpath ) . name ) . with_suffix ( " .3d " )
op3dlog = Path ( op3d . with_suffix ( " .log " ) )
2021-04-03 20:52:35 +01:00
if not op3d . is_file ( ) :
2022-11-23 10:48:39 +00:00
print ( f " - - Regeneration FAILED \n - - from ' { survexpath } ' \n - - to ' { op3d } ' " )
2021-04-03 20:52:35 +01:00
print ( " - - Regeneration stdout: " , completed_process . stdout )
print ( " - - Regeneration cavern log output: " , op3dlog . read_text ( ) )
2023-01-30 19:04:36 +00:00
2021-04-03 20:52:35 +01:00
def return3d ( threedpath ) :
if threedpath . is_file ( ) :
2023-01-30 19:04:36 +00:00
response = HttpResponse ( content = open ( threedpath , " rb " ) , content_type = " application/3d " )
response [ " Content-Disposition " ] = f " attachment; filename= { threedpath . name } "
2021-04-03 20:52:35 +01:00
return response
else :
2022-11-23 10:48:39 +00:00
message = f ' <h1>Path provided does not correspond to any actual 3d file.</h1><p>path: " { threedpath } " '
2023-01-30 19:04:36 +00:00
# print(message)
return HttpResponseNotFound ( message )
survexname = Path ( cave . survex_file ) . name # removes directories
2021-04-03 20:52:35 +01:00
survexpath = Path ( settings . SURVEX_DATA , cave . survex_file )
2023-01-30 19:04:36 +00:00
threedname = Path ( survexname ) . with_suffix ( " .3d " ) # removes .svx, replaces with .3d
threedpath = Path ( settings . SURVEX_DATA , threedname )
2022-07-20 23:22:07 +01:00
threedcachedir = Path ( settings . SURVEX_DATA )
2023-01-30 19:04:36 +00:00
2021-04-03 20:52:35 +01:00
# These if statements need refactoring more cleanly
if cave . survex_file :
2023-01-30 19:04:36 +00:00
# print(" - cave.survex_file '{}'".format(cave.survex_file))
2022-08-25 03:31:54 +01:00
if threedpath . is_file ( ) :
2023-01-30 19:04:36 +00:00
# print(" - threedpath '{}'".format(threedpath))
2021-04-03 20:52:35 +01:00
# possible error here as several .svx files of same names in different directories will overwrite in /3d/
if survexpath . is_file ( ) :
if os . path . getmtime ( survexpath ) > os . path . getmtime ( threedpath ) :
runcavern ( survexpath )
return return3d ( threedpath )
else :
2023-01-30 19:04:36 +00:00
# print(" - - survexpath '{}'".format(survexpath))
2021-04-03 20:52:35 +01:00
if survexpath . is_file ( ) :
2023-01-30 19:04:36 +00:00
# print(" - - - survexpath '{}'".format(survexpath))
2021-04-03 20:52:35 +01:00
runcavern ( survexpath )
return return3d ( threedpath )
# Get here if cave.survex_file was set but did not correspond to a valid svx file
if survexpath . is_file ( ) :
# a file, but invalid format
2023-01-30 19:04:36 +00:00
message = f ' <h1>File is not valid .svx format.</h1><p>Could not generate 3d file from " { survexpath } " '
2021-04-02 23:21:23 +01:00
else :
2021-04-03 20:52:35 +01:00
# we could try to guess that 'caves-1623/' is missing,... nah.
2022-11-23 10:48:39 +00:00
message = f ' <h1>Path provided does not correspond to any actual file.</h1><p>path: " { survexpath } " '
2021-04-03 20:52:35 +01:00
2023-01-30 19:04:36 +00:00
return HttpResponseNotFound ( message )
def rendercave ( request , cave , slug , cave_id = " " ) :
""" Gets the data and files ready and then triggers Django to render the template.
2021-04-03 20:52:35 +01:00
The resulting html contains urls which are dispatched independently , e . g . the ' download ' link
2023-01-30 19:04:36 +00:00
"""
2022-03-18 20:00:15 +00:00
# print(" ! rendercave:'{}' START slug:'{}' cave_id:'{}'".format(cave, slug, cave_id))
2021-04-03 20:52:35 +01:00
2021-04-07 21:53:17 +01:00
if cave . non_public and settings . PUBLIC_SITE and not request . user . is_authenticated :
2023-01-30 19:04:36 +00:00
return render ( request , " nonpublic.html " , { " instance " : cave , " cavepage " : True , " cave_id " : cave_id } )
2021-04-03 20:52:35 +01:00
else :
2022-03-18 20:00:15 +00:00
# print(f" ! rendercave: slug:'{slug}' survex file:'{cave.survex_file}'")
try :
2023-01-30 19:04:36 +00:00
svx3d = Path ( cave . survex_file ) . stem
2022-03-18 20:00:15 +00:00
svxstem = Path ( settings . SURVEX_DATA ) / Path ( cave . survex_file )
# print(f" ! rendercave: slug:'{slug}' '' ++ '{svxstem}'")
except :
print ( f " ! rendercave: slug: ' { slug } ' FAIL TO MANAGE survex file: ' { cave . survex_file } ' " )
2021-04-03 20:52:35 +01:00
# NOTE the template itself loads the 3d file using javascript before it loads anything else.
# Django cannot see what this javascript is doing, so we need to ensure that the 3d file exists first.
2022-03-18 20:00:15 +00:00
# So only do this render if a valid .3d file exists. TO BE DONE -Not yet as CaveView is currently disabled
2021-11-06 20:59:10 +00:00
# see design docum in troggle/templates/cave.html
# see rendercave() in troggle/core/views/caves.py
2023-01-30 19:04:36 +00:00
templatefile = " cave.html "
2021-04-25 04:04:53 +01:00
if not cave_id :
2023-01-30 19:04:36 +00:00
cave_id = slug # cave.unofficial_number
context = {
" cave_editable " : True ,
" settings " : settings ,
" cave " : cave ,
" cavepage " : True ,
" cave_id " : cave_id ,
" svxstem " : str ( svxstem ) ,
" svx3d " : svx3d ,
}
2018-04-17 21:57:02 +01:00
2022-07-20 08:08:23 +01:00
# Do not catch any exceptions here: propagate up to caller
2023-01-30 19:04:36 +00:00
r = render (
request , templatefile , context
) # crashes here with NoReverseMatch if url not set up for 'edit_cave' in urls.py
2022-07-20 08:08:23 +01:00
return r
2023-01-30 19:04:36 +00:00
2021-04-01 20:08:57 +01:00
def cavepage ( request , karea , subpath ) :
2023-01-30 19:04:36 +00:00
""" Displays a cave description page
2021-04-03 20:52:35 +01:00
accessed by kataster area number specifically
2022-03-18 20:00:15 +00:00
OR
2023-01-30 19:04:36 +00:00
accessed by cave . url specifically set in data , e . g .
2022-03-18 20:00:15 +00:00
" 1623/000/000.html " < = cave - data / 1623 - 000. html
2023-01-30 19:04:36 +00:00
" 1623/41/115.htm " < = cave - data / 1623 - 115. html
2022-03-18 20:00:15 +00:00
so we have to query the database to fine the URL as we cannot rely on the url actually telling us the cave by inspection .
2023-01-30 19:04:36 +00:00
2021-04-01 21:44:03 +01:00
There are A LOT OF URLS to e . g . / 1623 / 161 / l / rl89a . htm which are IMAGES and html files
in cave descriptions . These need to be handled HERE
2023-01-30 19:04:36 +00:00
"""
2022-03-18 20:00:15 +00:00
kpath = karea + subpath
# print(f" ! cavepage:'{kpath}' kataster area:'{karea}' rest of path:'{subpath}'")
2023-01-30 19:04:36 +00:00
2021-04-01 20:08:57 +01:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( url = kpath ) # ideally this will be unique
2021-04-01 20:08:57 +01:00
except Cave . DoesNotExist :
2021-04-01 21:44:03 +01:00
# probably a link to text or an image e.g. 1623/161/l/rl89a.htm i.e. an expoweb page
2022-03-22 02:22:15 +00:00
# cannot assume that this is a simple cave page, for a cave we don't know.
2022-06-23 17:18:21 +01:00
# print(f" ! cavepage: url={kpath} A cave of this name does not exist")
2022-06-18 22:41:00 +01:00
return expo . expopage ( request , kpath )
2021-04-01 20:08:57 +01:00
except Cave . MultipleObjectsReturned :
2023-01-30 19:04:36 +00:00
caves = Cave . objects . filter ( url = kpath )
2022-06-23 17:18:21 +01:00
# print(f" ! cavepage: url={kpath} multiple caves exist")
2021-04-17 23:59:11 +01:00
# we should have a -several variant for the cave pages, not just the svxcaves:
2023-01-30 19:04:36 +00:00
return render ( request , " svxcaveseveral.html " , { " settings " : settings , " caves " : caves } )
2022-06-23 17:18:21 +01:00
try :
r = rendercave ( request , cave , cave . slug ( ) )
return r
2022-06-23 17:01:57 +01:00
except NoReverseMatch :
2022-07-31 20:29:17 +01:00
if settings . DEBUG :
raise
else :
2023-01-30 19:04:36 +00:00
message = f " Failed to render cave: { kpath } (it does exist and is unique) because of a Django URL resolution error. Check urls.py. "
return render ( request , " errors/generic.html " , { " message " : message } )
2022-07-20 12:44:56 +01:00
except :
2023-01-30 19:04:36 +00:00
# anything else is a new problem. Add in specific error messages here as we discover new types of error
2022-07-20 12:44:56 +01:00
raise
2023-01-30 19:04:36 +00:00
2011-07-11 02:10:22 +01:00
def caveEntrance ( request , slug ) :
2021-12-05 21:23:06 +00:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( caveslug__slug = slug )
2021-12-05 21:23:06 +00:00
except :
2023-01-30 19:04:36 +00:00
return render ( request , " errors/badslug.html " , { " badslug " : slug } )
2021-12-05 21:23:06 +00:00
2021-04-07 21:53:17 +01:00
if cave . non_public and settings . PUBLIC_SITE and not request . user . is_authenticated :
2023-01-30 19:04:36 +00:00
return render ( request , " nonpublic.html " , { " instance " : cave } )
2011-07-11 02:10:22 +01:00
else :
2023-01-30 19:04:36 +00:00
return render ( request , " cave_entrances.html " , { " cave " : cave } )
2012-05-23 09:23:40 +01:00
2011-07-11 02:10:22 +01:00
@login_required_if_public
2023-01-30 19:04:36 +00:00
def edit_cave ( request , path = " " , slug = None ) :
""" This is the form that edits all the cave data and writes out an XML file in the :expoweb: repo folder
2021-04-02 23:21:23 +01:00
The format for the file being saved is in templates / dataformat / cave . xml
2022-10-12 20:09:58 +01:00
Warning . This uses Django deep magic .
2023-01-30 19:04:36 +00:00
2021-04-14 16:28:30 +01:00
It does save the data into into the database directly , not by parsing the file .
2023-01-30 19:04:36 +00:00
"""
2021-04-14 16:28:30 +01:00
message = " "
2023-01-30 19:04:36 +00:00
if slug is not None :
2021-12-05 21:45:06 +00:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( caveslug__slug = slug )
2021-12-05 21:45:06 +00:00
except :
2023-01-30 19:04:36 +00:00
return render ( request , " errors/badslug.html " , { " badslug " : slug } )
2012-08-12 18:10:23 +01:00
else :
cave = Cave ( )
2012-05-23 09:23:40 +01:00
if request . POST :
form = CaveForm ( request . POST , instance = cave )
ceFormSet = CaveAndEntranceFormSet ( request . POST )
2023-01-30 19:04:36 +00:00
# versionControlForm = VersionControlCommentForm(request.POST)
2021-04-14 16:28:30 +01:00
if form . is_valid ( ) and ceFormSet . is_valid ( ) :
2023-01-30 19:04:36 +00:00
# print(f'! POST is valid. {cave}')
cave = form . save ( commit = False )
2012-08-14 21:51:15 +01:00
if slug is None :
for a in form . cleaned_data [ " area " ] :
if a . kat_area ( ) :
myArea = a . kat_area ( )
if form . cleaned_data [ " kataster_number " ] :
2023-01-30 19:04:36 +00:00
myslug = f " { myArea } - { form . cleaned_data [ ' kataster_number ' ] } "
2012-08-14 21:51:15 +01:00
else :
2023-01-30 19:04:36 +00:00
myslug = f " { myArea } - { form . cleaned_data [ ' unofficial_number ' ] } "
2012-08-14 21:51:15 +01:00
else :
myslug = slug
2021-04-25 04:04:53 +01:00
# Converting a PENDING cave to a real cave by saving this form
2023-01-30 19:04:36 +00:00
myslug = myslug . replace ( " -PENDING- " , " - " )
2012-08-14 21:51:15 +01:00
cave . filename = myslug + " .html "
2012-08-12 18:10:23 +01:00
cave . save ( )
form . save_m2m ( )
if slug is None :
2023-01-30 19:04:36 +00:00
cs = CaveSlug ( cave = cave , slug = myslug , primary = True )
cs . save ( )
2012-06-10 14:59:21 +01:00
ceinsts = ceFormSet . save ( commit = False )
for ceinst in ceinsts :
ceinst . cave = cave
2021-12-30 19:28:33 +00:00
ceinst . save ( )
2021-12-30 21:13:34 +00:00
try :
2022-08-01 15:04:22 +01:00
cave_file = cave . file_output ( )
2022-10-12 20:09:58 +01:00
print ( cave_file )
2022-11-23 10:48:39 +00:00
write_and_commit ( [ cave_file ] , f " Online edit of { cave } " )
2021-12-30 21:13:34 +00:00
# leave other exceptions unhandled so that they bubble up to user interface
except PermissionError :
2023-01-30 19:04:36 +00:00
message = f " CANNOT save this file. \n PERMISSIONS incorrectly set on server for this file { cave . filename } . Ask a nerd to fix this. "
return render ( request , " errors/generic.html " , { " message " : message } )
2022-07-19 17:06:56 +01:00
except subprocess . SubprocessError :
2023-01-30 19:04:36 +00:00
message = f " CANNOT git on server for this file { cave . filename } . Edits may not be committed. \n Ask a nerd to fix this. "
return render ( request , " errors/generic.html " , { " message " : message } )
2021-12-30 19:28:33 +00:00
2023-01-30 19:04:36 +00:00
return HttpResponseRedirect ( " / " + cave . url )
2021-04-14 16:28:30 +01:00
else :
2023-01-30 19:04:36 +00:00
message = f " ! POST data is INVALID { cave } "
2021-04-14 16:28:30 +01:00
print ( message )
2012-05-23 09:23:40 +01:00
else :
form = CaveForm ( instance = cave )
2012-06-10 14:59:21 +01:00
ceFormSet = CaveAndEntranceFormSet ( queryset = cave . caveandentrance_set . all ( ) )
2023-01-30 19:04:36 +00:00
# versionControlForm = VersionControlCommentForm()
return render (
request ,
" editcave.html " ,
{
" form " : form ,
" cave " : cave ,
" message " : message ,
" caveAndEntranceFormSet " : ceFormSet ,
#'versionControlForm': versionControlForm
} ,
)
2012-06-10 14:59:21 +01:00
@login_required_if_public
2023-01-30 19:04:36 +00:00
def edit_entrance ( request , path = " " , caveslug = None , slug = None ) :
""" This is the form that edits the entrance data for a single entrance and writes out
2021-04-14 16:28:30 +01:00
an XML file in the : expoweb : repo folder
The format for the file being saved is in templates / dataformat / entrance . xml
2022-10-12 20:09:58 +01:00
Warning . This uses Django deep magic .
2023-01-30 19:04:36 +00:00
2021-04-14 16:28:30 +01:00
It does save the data into into the database directly , not by parsing the file .
2023-01-30 19:04:36 +00:00
"""
2022-08-01 15:04:22 +01:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( caveslug__slug = caveslug )
2022-08-01 15:04:22 +01:00
except :
2023-01-30 19:04:36 +00:00
return render ( request , " errors/badslug.html " , { " badslug " : caveslug } )
2022-08-01 15:04:22 +01:00
if slug :
2023-01-30 19:04:36 +00:00
entrance = Entrance . objects . get ( entranceslug__slug = slug )
caveAndEntrance = CaveAndEntrance . objects . get ( entrance = entrance , cave = cave )
2022-08-01 15:04:22 +01:00
entlettereditable = False
2012-08-12 18:10:23 +01:00
else :
entrance = Entrance ( )
2023-01-30 19:04:36 +00:00
caveAndEntrance = CaveAndEntrance ( cave = cave , entrance = entrance )
2022-08-01 15:04:22 +01:00
entlettereditable = True
2023-01-30 19:04:36 +00:00
2012-06-10 14:59:21 +01:00
if request . POST :
2023-01-30 19:04:36 +00:00
form = EntranceForm ( request . POST , instance = entrance )
entletter = EntranceLetterForm ( request . POST , instance = caveAndEntrance )
# versionControlForm = VersionControlCommentForm(request.POST)
2022-08-01 15:04:22 +01:00
if form . is_valid ( ) and entletter . is_valid ( ) :
2023-01-30 19:04:36 +00:00
entrance = form . save ( commit = False )
entrance_letter = entletter . save ( commit = False )
2012-08-12 18:10:23 +01:00
if slug is None :
2021-04-25 04:04:53 +01:00
if entletter . cleaned_data [ " entrance_letter " ] :
slugname = cave . slug ( ) + entletter . cleaned_data [ " entrance_letter " ]
else :
slugname = cave . slug ( )
2012-08-14 21:51:15 +01:00
entrance . cached_primary_slug = slugname
entrance . filename = slugname + " .html "
2012-08-12 18:10:23 +01:00
entrance . save ( )
if slug is None :
2023-01-30 19:04:36 +00:00
es = EntranceSlug ( entrance = entrance , slug = slugname , primary = True )
2012-08-14 21:51:15 +01:00
es . save ( )
2022-08-01 15:04:22 +01:00
entrance_file = entrance . file_output ( )
cave_file = cave . file_output ( )
2022-11-23 10:48:39 +00:00
write_and_commit ( [ entrance_file , cave_file ] , f " Online edit of { cave } { entletter } " )
2022-08-01 15:04:22 +01:00
entrance . save ( )
if slug is None :
entrance_letter . save ( )
2023-01-30 19:04:36 +00:00
return HttpResponseRedirect ( " / " + cave . url )
2012-06-10 14:59:21 +01:00
else :
2023-01-30 19:04:36 +00:00
form = EntranceForm ( instance = entrance )
# versionControlForm = VersionControlCommentForm()
2012-08-14 21:51:15 +01:00
if slug is None :
2022-08-01 15:04:22 +01:00
entletter = EntranceLetterForm ( )
2012-08-14 21:51:15 +01:00
else :
2022-08-01 15:04:22 +01:00
entletter = caveAndEntrance . entrance_letter
2023-01-30 19:04:36 +00:00
return render (
request ,
" editentrance.html " ,
{
" form " : form ,
" cave " : cave ,
#'versionControlForm': versionControlForm,
" entletter " : entletter ,
" entlettereditable " : entlettereditable ,
} ,
)
2011-07-11 02:10:22 +01:00
def ent ( request , cave_id , ent_letter ) :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . filter ( kataster_number = cave_id ) [ 0 ]
cave_and_ent = CaveAndEntrance . objects . filter ( cave = cave ) . filter ( entrance_letter = ent_letter ) [ 0 ]
return render (
request ,
" entrance.html " ,
{
" cave " : cave ,
" entrance " : cave_and_ent . entrance ,
" letter " : cave_and_ent . entrance_letter ,
} ,
)
2011-07-11 02:10:22 +01:00
2022-12-29 15:07:58 +00:00
# def entranceSlug(request, slug):
2023-01-30 19:04:36 +00:00
# '''This seems to be a fossil, but I am not sure...
# '''
# entrance = Entrance.objects.get(entranceslug__slug = slug)
# if entrance.non_public and not request.user.is_authenticated:
# return render(request,'nonpublic.html', {'instance': entrance})
# else:
# return render(request,'entranceslug.html', {'entrance': entrance})
2022-12-29 15:07:58 +00:00
# def surveyindex(request):
2023-01-30 19:04:36 +00:00
# '''The template does not exist, there is no URL which calls this, so it is a fossil
# '''
# surveys=Survey.objects.all()
# expeditions=Expedition.objects.order_by("-year")
# return render(request,'survey.html',locals())
2011-07-11 02:10:22 +01:00
def get_entrances ( request , caveslug ) :
2021-12-05 21:45:06 +00:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( caveslug__slug = caveslug )
2021-12-05 21:45:06 +00:00
except :
2023-01-30 19:04:36 +00:00
return render ( request , " errors/badslug.html " , { " badslug " : caveslug } )
return render (
request , " options.html " , { " items " : [ ( e . entrance . slug ( ) , e . entrance . slug ( ) ) for e in cave . entrances ( ) ] }
)
2011-07-11 02:10:22 +01:00
2022-03-18 20:00:15 +00:00
def caveQMs ( request , slug ) :
2023-01-30 19:04:36 +00:00
""" Lists all the QMs on a particular cave
2022-07-05 13:38:23 +01:00
relies on the template to find all the QMs for the cave specified in the slug , e . g . ' 1623-161 '
Now working in July 2022
2023-01-30 19:04:36 +00:00
"""
2022-03-18 20:00:15 +00:00
try :
2023-01-30 19:04:36 +00:00
cave = Cave . objects . get ( caveslug__slug = slug )
2022-03-18 20:00:15 +00:00
except :
2023-01-30 19:04:36 +00:00
return render ( request , " errors/badslug.html " , { " badslug " : slug } )
2022-03-18 20:00:15 +00:00
if cave . non_public and settings . PUBLIC_SITE and not request . user . is_authenticated :
2023-01-30 19:04:36 +00:00
return render ( request , " nonpublic.html " , { " instance " : cave } )
2022-03-18 20:00:15 +00:00
else :
2023-01-30 19:04:36 +00:00
return render ( request , " cave_qms.html " , { " cave " : cave } )
2022-03-18 20:00:15 +00:00
2023-01-30 19:04:36 +00:00
def qm ( request , cave_id , qm_id , year , grade = None , blockname = None ) :
""" Reports on one specific QM
Fixed and working July 2022 , for both CSV imported QMs
2022-07-05 20:40:58 +01:00
needs refactoring though .
2023-01-30 19:04:36 +00:00
2022-07-06 15:35:08 +01:00
290 has several QMS with the same number , grade , year ( 2108 ) and first 8 chars of the survexblock . This crashes things .
2023-01-30 19:04:36 +00:00
"""
year = int ( year )
if blockname == " " or not blockname :
2022-07-06 13:38:53 +01:00
# CSV import QMs, use old technique
try :
2023-01-30 19:04:36 +00:00
c = getCave ( cave_id )
manyqms = c . get_QMs ( )
qm = manyqms . get ( number = qm_id , expoyear = year )
return render ( request , " qm.html " , { " qm " : qm } )
2022-07-06 13:38:53 +01:00
except QM . DoesNotExist :
2023-01-30 19:04:36 +00:00
# raise
return render (
request ,
" errors/badslug.html " ,
{
" badslug " : f " QM.DoesNotExist blockname is empty string: { cave_id =} { year =} { qm_id =} { grade =} { blockname =} "
} ,
)
2022-07-06 13:38:53 +01:00
else :
try :
2023-01-30 19:04:36 +00:00
qmslug = f " { cave_id } - { year } - { blockname =} { qm_id } { grade } "
print ( f " { qmslug =} " )
c = getCave ( cave_id )
manyqms = c . get_QMs ( )
qmqs = manyqms . filter ( expoyear = year , blockname = blockname , number = qm_id , grade = grade )
if len ( qmqs ) > 1 :
2022-07-06 15:35:08 +01:00
for q in qmqs :
print ( qmqs )
2023-01-30 19:04:36 +00:00
message = f " Multiple QMs with the same cave, year, number, grade AND first 8 chars of the survexblock name. (Could be caused by incomplete databasereset). Fix this in the survex file(s). { cave_id =} { year =} { qm_id =} { blockname =} "
return render ( request , " errors/generic.html " , { " message " : message } )
2022-07-06 13:38:53 +01:00
else :
2023-01-30 19:04:36 +00:00
qm = qmqs . get ( expoyear = year , blockname = blockname , number = qm_id , grade = grade )
2022-07-06 15:35:08 +01:00
if qm :
2023-01-30 19:04:36 +00:00
print (
qm ,
f " { qmslug =} : { cave_id =} { year =} { qm_id =} { blockname =} { qm . expoyear =} { qm . completion_description =} " ,
)
return render ( request , " qm.html " , { " qm " : qm } )
2022-07-06 15:35:08 +01:00
else :
2023-01-30 19:04:36 +00:00
# raise
return render (
request ,
" errors/badslug.html " ,
{ " badslug " : f " Failed get { cave_id =} { year =} { qm_id =} { grade =} { blockname =} " } ,
)
2022-07-06 13:38:53 +01:00
except MultipleObjectsReturned :
2023-01-30 19:04:36 +00:00
message = f " Multiple QMs with the same cave, year, number, grade AND first 8 chars of the survexblock name. (Could be caused by incomplete databasereset). Fix this in the survex file(s). { cave_id =} { year =} { qm_id =} { blockname =} "
return render ( request , " errors/generic.html " , { " message " : message } )
2022-07-06 13:38:53 +01:00
except QM . DoesNotExist :
2023-01-30 19:04:36 +00:00
# raise
return render (
request ,
" errors/badslug.html " ,
{
" badslug " : f " QM.DoesNotExist blockname is not empty string { cave_id =} { year =} { qm_id =} { grade =} { blockname =} "
} ,
)