2020-05-28 01:16:45 +01:00
|
|
|
import os
|
|
|
|
import string
|
|
|
|
import re
|
|
|
|
import settings
|
|
|
|
import urllib.parse
|
2021-04-02 23:21:23 +01:00
|
|
|
import subprocess
|
|
|
|
from pathlib import Path
|
2021-04-16 03:05:39 +01:00
|
|
|
#from PIL import Image, ImageDraw, ImageFont
|
2021-04-02 23:21:23 +01:00
|
|
|
|
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
|
2020-06-18 21:50:16 +01:00
|
|
|
from django.urls import reverse
|
2021-04-03 20:52:35 +01:00
|
|
|
from django.http import HttpResponse, HttpResponseRedirect, HttpResponseNotFound
|
2019-03-30 17:02:07 +00:00
|
|
|
from django.shortcuts import get_object_or_404, render
|
2021-03-28 23:47:47 +01:00
|
|
|
from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned
|
2013-08-01 16:00:01 +01:00
|
|
|
|
2020-05-28 01:16:45 +01:00
|
|
|
import troggle.settings as settings
|
2021-04-01 21:44:03 +01:00
|
|
|
from troggle.core.views import expo
|
2021-04-13 00:43:57 +01:00
|
|
|
from troggle.core.models.troggle import Expedition, DataIssue
|
2021-04-13 00:47:17 +01:00
|
|
|
from troggle.core.models.caves import CaveSlug, Cave, CaveAndEntrance, QM, EntranceSlug, Entrance, Area, SurvexStation, GetCaveLookup
|
2020-05-28 01:16:45 +01:00
|
|
|
from troggle.core.forms import CaveForm, CaveAndEntranceFormSet, VersionControlCommentForm, EntranceForm, EntranceLetterForm
|
2021-04-02 15:51:14 +01:00
|
|
|
from .login import login_required_if_public
|
2019-02-26 00:43:05 +00:00
|
|
|
|
2021-04-13 01:37:42 +01:00
|
|
|
'''Manages the complex procedures to assemble a cave description out of the compnoents
|
|
|
|
Manages the use of cavern to parse survex files to produce 3d and pos files
|
|
|
|
'''
|
|
|
|
|
2021-04-02 23:21:23 +01:00
|
|
|
def getCaves(cave_id):
|
|
|
|
'''Only gets called if a call to getCave() raises a MultipleObjects exception
|
|
|
|
|
|
|
|
TO DO: search GCavelookup first, which should raise a MultpleObjectsReturned exception if there
|
|
|
|
are duplicates'''
|
|
|
|
try:
|
|
|
|
caves = Cave.objects.filter(kataster_number=cave_id)
|
|
|
|
caveset = set(caves)
|
|
|
|
|
|
|
|
Gcavelookup = GetCaveLookup() # dictionary makes strings to Cave objects
|
|
|
|
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):
|
2021-03-28 23:47:47 +01:00
|
|
|
'''Returns a cave object when given a cave name or number. It is used by views including cavehref, ent, and qm.
|
|
|
|
|
|
|
|
TO DO: search GCavelookup first, which should raise a MultpleObjectsReturned exception if there
|
|
|
|
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:
|
|
|
|
raise MultipleObjectsReturned("Duplicate kataster number") from ex # propagate this up
|
|
|
|
|
2021-03-31 20:18:46 +01:00
|
|
|
except Cave.DoesNotExist as ex:
|
2021-03-28 23:47:47 +01:00
|
|
|
Gcavelookup = GetCaveLookup() # dictionary makes strings to Cave objects
|
|
|
|
if cave_id in Gcavelookup:
|
|
|
|
return Gcavelookup[cave_id]
|
2021-03-31 20:18:46 +01:00
|
|
|
else:
|
|
|
|
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
|
|
|
|
2012-08-05 18:26:24 +01:00
|
|
|
def pad5(x):
|
|
|
|
return "0" * (5 -len(x.group(0))) + x.group(0)
|
|
|
|
def padnumber(x):
|
|
|
|
return re.sub("\d+", pad5, x)
|
|
|
|
def numericalcmp(x, y):
|
|
|
|
return cmp(padnumber(x), padnumber(y))
|
|
|
|
|
2020-05-25 01:46:52 +01:00
|
|
|
def caveKey(x):
|
2020-07-28 01:22:06 +01:00
|
|
|
"""python3 function for sort. Done in a hurry.
|
2021-03-28 23:47:47 +01:00
|
|
|
Note that cave kataster numbers are not always integers.
|
2020-06-07 17:49:58 +01:00
|
|
|
This needs to be fixed make a decent sort order.
|
2020-05-25 01:46:52 +01:00
|
|
|
"""
|
2020-07-01 22:49:38 +01:00
|
|
|
if not x.kataster_number:
|
|
|
|
return "~"
|
2020-05-25 01:46:52 +01:00
|
|
|
return x.kataster_number
|
2012-06-10 14:59:21 +01: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:
|
2021-04-03 20:52:35 +01: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:
|
2021-04-03 20:52:35 +01:00
|
|
|
#print(c.kataster_number, c.slug())
|
2020-06-07 16:13:59 +01:00
|
|
|
if c.slug() != None:
|
|
|
|
notablecaves.append(c)
|
|
|
|
return notablecaves
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def caveindex(request):
|
2019-06-26 20:57:24 +01:00
|
|
|
caves = Cave.objects.all()
|
2012-06-10 14:59:21 +01: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)
|
2020-06-07 16:13:59 +01:00
|
|
|
return render(request,'caveindex.html', {'caves1623': caves1623, 'caves1626': caves1626, 'notablecaves':getnotablecaves(), 'cavepage': True})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2018-04-20 20:55:12 +01:00
|
|
|
def cave3d(request, cave_id=''):
|
2021-04-02 23:21:23 +01:00
|
|
|
'''This is used to create a download url in templates/cave.html if anyone wants to download the .3d file
|
|
|
|
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
|
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/3d/<cave_id>
|
2021-04-02 23:21:23 +01:00
|
|
|
'''
|
2021-03-28 23:47:47 +01:00
|
|
|
try:
|
2021-04-02 23:21:23 +01:00
|
|
|
cave = getCave(cave_id)
|
|
|
|
except ObjectDoesNotExist:
|
2021-04-14 16:28:30 +01:00
|
|
|
return HttpResponseNotFound
|
2021-04-02 23:21:23 +01: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:
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
def file3d(request, cave, cave_id):
|
|
|
|
'''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'
|
|
|
|
|
|
|
|
Also the cave.survex_file may well not match the cave description path:
|
|
|
|
e.g. it might be to the whole system 'smk-system.svx' instead of just for the specific cave.
|
2021-03-28 23:47:47 +01:00
|
|
|
|
2021-04-03 20:52:35 +01:00
|
|
|
- If the expected .3d file corresponding to cave.survex_file is present, return it.
|
|
|
|
- If the cave.survex_file exists, generate the 3d file, cache it and return it
|
|
|
|
- Use the cave_id to guess what the 3d 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 .3d file and return it
|
|
|
|
- (Use the incomplete cave.survex_file and a guess at the missing directories to guess the real .svx file location ?)
|
2021-04-02 23:21:23 +01:00
|
|
|
'''
|
2021-04-03 20:52:35 +01:00
|
|
|
def runcavern(survexpath):
|
|
|
|
#print(" - Regenerating cavern .log and .3d for '{}'".format(survexpath))
|
|
|
|
if not survexpath.is_file():
|
|
|
|
#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:
|
2021-04-03 20:52:35 +01:00
|
|
|
completed_process = subprocess.run([settings.CAVERN, "--log", "--output={}".format(settings.THREEDCACHEDIR), "{}".format(survexpath)])
|
2021-04-02 23:21:23 +01:00
|
|
|
except OSError as ex:
|
2021-04-03 20:52:35 +01:00
|
|
|
# propagate this to caller.
|
|
|
|
raise OSError(completed_process.stdout) from ex
|
|
|
|
|
|
|
|
op3d = (Path(settings.THREEDCACHEDIR) / Path(survexpath).name).with_suffix('.3d')
|
|
|
|
op3dlog = Path(op3d.with_suffix('.log'))
|
|
|
|
|
|
|
|
if not op3d.is_file():
|
|
|
|
print(" - - Regeneration FAILED\n - - from '{}'\n - - to '{}'".format(survexpath, op3d))
|
|
|
|
print(" - - Regeneration stdout: ", completed_process.stdout)
|
|
|
|
print(" - - Regeneration cavern log output: ", op3dlog.read_text())
|
|
|
|
|
|
|
|
|
|
|
|
def return3d(threedpath):
|
|
|
|
if threedpath.is_file():
|
|
|
|
response = HttpResponse(content=open(threedpath, 'rb'), content_type='application/3d')
|
|
|
|
response['Content-Disposition'] = 'attachment; filename={}'.format(threedpath.name)
|
|
|
|
return response
|
|
|
|
else:
|
|
|
|
message = '<h1>Path provided does not correspond to any actual 3d file.</h1><p>path: "{}"'.format(threedpath)
|
|
|
|
#print(message)
|
|
|
|
return HttpResponseNotFound(message)
|
2021-04-02 23:21:23 +01:00
|
|
|
|
2021-04-03 20:52:35 +01:00
|
|
|
survexname = Path(cave.survex_file).name # removes directories
|
|
|
|
survexpath = Path(settings.SURVEX_DATA, cave.survex_file)
|
|
|
|
threedname = Path(survexname).with_suffix('.3d') # removes .svx, replaces with .3d
|
|
|
|
threedpath = Path(settings.THREEDCACHEDIR, threedname)
|
|
|
|
threedcachedir = Path(settings.THREEDCACHEDIR)
|
|
|
|
|
|
|
|
# These if statements need refactoring more cleanly
|
|
|
|
if cave.survex_file:
|
|
|
|
#print(" - cave.survex_file '{}'".format(cave.survex_file))
|
|
|
|
if threedpath.is_file():
|
|
|
|
#print(" - threedpath '{}'".format(threedpath))
|
|
|
|
# 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:
|
|
|
|
#print(" - - survexpath '{}'".format(survexpath))
|
|
|
|
if survexpath.is_file():
|
|
|
|
#print(" - - - survexpath '{}'".format(survexpath))
|
|
|
|
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
|
|
|
|
message='<h1>File is not valid .svx format.</h1><p>Could not generate 3d file from "{}"'.format(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.
|
|
|
|
message = '<h1>Path provided does not correspond to any actual file.</h1><p>path: "{}"'.format(survexpath)
|
|
|
|
|
|
|
|
return HttpResponseNotFound(message)
|
|
|
|
|
|
|
|
|
|
|
|
def rendercave(request, cave, slug, cave_id=''):
|
|
|
|
'''Gets the data and files ready and then triggers Django to render the template.
|
|
|
|
The resulting html contains urls which are dispatched independently, e.g. the 'download' link
|
|
|
|
'''
|
|
|
|
#print(" ! rendercave:'{}' slug:'{}' cave_id:'{}'".format(cave, slug, cave_id))
|
|
|
|
|
2021-04-07 21:53:17 +01:00
|
|
|
if cave.non_public and settings.PUBLIC_SITE and not request.user.is_authenticated:
|
2021-04-03 20:52:35 +01:00
|
|
|
return render(request, 'nonpublic.html', {'instance': cave, 'cavepage': True, 'cave_id': cave_id})
|
|
|
|
else:
|
|
|
|
svxstem = Path(cave.survex_file).parent / Path(cave.survex_file).stem
|
|
|
|
svx3d = Path(cave.survex_file).stem
|
2021-04-14 00:11:59 +01:00
|
|
|
|
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.
|
|
|
|
# run this just for the side-effect of generating the 3d file? Nope, crashes.
|
2021-04-14 00:11:59 +01:00
|
|
|
# TO DO - restructure this so that the regeneration is callable from here.
|
2021-04-03 20:52:35 +01:00
|
|
|
#discard_response = cave3d(request, cave_id=cave_id)
|
2021-04-14 00:11:59 +01:00
|
|
|
|
|
|
|
if request.user.is_authenticated:
|
|
|
|
editable = True
|
|
|
|
else:
|
|
|
|
editable = False
|
|
|
|
print(" ! rendercave:'{}' svxstem:{} svx3d:'{}'".format(cave, svxstem, svx3d))
|
|
|
|
return render(request,'cave.html', {'cave_editable': editable, 'settings': settings, 'cave': cave, 'cavepage': True,
|
2021-04-03 20:52:35 +01:00
|
|
|
'cave_id': cave_id, 'svxstem': svxstem, 'svx3d':svx3d})
|
2018-04-17 21:57:02 +01:00
|
|
|
|
2021-04-01 20:08:57 +01:00
|
|
|
def cavepage(request, karea, subpath):
|
2021-04-01 21:44:03 +01:00
|
|
|
'''Displays a cave description page
|
2021-04-03 20:52:35 +01:00
|
|
|
accessed by kataster area number specifically
|
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
|
|
|
|
'''
|
2021-04-01 20:08:57 +01:00
|
|
|
path = karea + subpath
|
2021-04-03 20:52:35 +01:00
|
|
|
#print(" ! cavepage:'{}' kataster area:'{}' rest of path:'{}'".format(path, karea, subpath))
|
2021-04-01 20:08:57 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
cave = Cave.objects.get(url = path) # ideally this will be unique
|
2021-04-03 20:52:35 +01:00
|
|
|
return rendercave(request, cave, cave.slug())
|
|
|
|
|
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
|
|
|
|
return expo.expopage(request, path)
|
2021-04-01 20:08:57 +01:00
|
|
|
except Cave.MultipleObjectsReturned:
|
|
|
|
caves = Cave.objects.filter(url = path)
|
|
|
|
return render(request, 'svxcaveseveral.html', {'settings': settings, "caves":caves })
|
|
|
|
except:
|
|
|
|
return render(request, 'pagenotfound.html', {'path': path})
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def cave(request, cave_id='', offical_name=''):
|
2021-04-03 20:52:35 +01:00
|
|
|
'''Displays a cave description page
|
|
|
|
accesssed by a fairly random id which might be anything
|
|
|
|
'''
|
2021-03-28 23:47:47 +01:00
|
|
|
try:
|
|
|
|
cave=getCave(cave_id)
|
|
|
|
except MultipleObjectsReturned:
|
|
|
|
caves = Cave.objects.filter(kataster_number=cave_id)
|
|
|
|
return render(request, 'svxcaveseveral.html', {'settings': settings, "caves":caves }) # not the right template, needs a specific one
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
return render(request, 'svxcavesingle404.html', {'settings': settings, "cave":cave_id })
|
2021-03-31 20:18:46 +01:00
|
|
|
except:
|
|
|
|
return render(request, 'svxcavesingle404.html', {'settings': settings })
|
2021-03-28 23:47:47 +01:00
|
|
|
|
2021-04-03 20:52:35 +01:00
|
|
|
return rendercave(request, cave, cave.slug(), cave_id=cave_id)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def caveEntrance(request, slug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = slug)
|
2021-04-07 21:53:17 +01:00
|
|
|
if cave.non_public and settings.PUBLIC_SITE and not request.user.is_authenticated:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'nonpublic.html', {'instance': cave})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-03-30 17:02:07 +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
|
|
|
def caveDescription(request, slug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = slug)
|
2021-04-07 21:53:17 +01:00
|
|
|
if cave.non_public and settings.PUBLIC_SITE and not request.user.is_authenticated:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'nonpublic.html', {'instance': cave})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'cave_uground_description.html', {'cave': cave})
|
2016-07-02 23:42:47 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def caveQMs(request, slug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = slug)
|
2021-04-07 21:53:17 +01:00
|
|
|
if cave.non_public and settings.PUBLIC_SITE and not request.user.is_authenticated:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'nonpublic.html', {'instance': cave})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'cave_qms.html', {'cave': cave})
|
2021-04-01 20:08:57 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def caveLogbook(request, slug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = slug)
|
2021-04-07 21:53:17 +01:00
|
|
|
if cave.non_public and settings.PUBLIC_SITE and not request.user.is_authenticated:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'nonpublic.html', {'instance': cave})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'cave_logbook.html', {'cave': cave})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
@login_required_if_public
|
2012-01-07 19:05:25 +00:00
|
|
|
def edit_cave(request, slug=None):
|
2021-04-02 23:21:23 +01:00
|
|
|
'''This is the form that edits all the cave data and writes out an XML file in the :expoweb: repo folder
|
|
|
|
The format for the file being saved is in templates/dataformat/cave.xml
|
2021-04-14 16:28:30 +01:00
|
|
|
|
|
|
|
It does save the data into into the database directly, not by parsing the file.
|
2021-04-02 23:21:23 +01:00
|
|
|
'''
|
2021-04-14 16:28:30 +01:00
|
|
|
message = ""
|
2012-08-12 18:10:23 +01:00
|
|
|
if slug is not None:
|
|
|
|
cave = Cave.objects.get(caveslug__slug = slug)
|
|
|
|
else:
|
|
|
|
cave = Cave()
|
2012-05-23 09:23:40 +01:00
|
|
|
if request.POST:
|
|
|
|
form = CaveForm(request.POST, instance=cave)
|
|
|
|
ceFormSet = CaveAndEntranceFormSet(request.POST)
|
2012-06-10 14:59:21 +01:00
|
|
|
versionControlForm = VersionControlCommentForm(request.POST)
|
2021-04-14 16:28:30 +01:00
|
|
|
if form.is_valid() and ceFormSet.is_valid():
|
|
|
|
#print(f'! POST is valid. {cave}')
|
2012-08-12 18:10:23 +01:00
|
|
|
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"]:
|
|
|
|
myslug = "%s-%s" % (myArea, form.cleaned_data["kataster_number"])
|
|
|
|
else:
|
|
|
|
myslug = "%s-%s" % (myArea, form.cleaned_data["unofficial_number"])
|
|
|
|
else:
|
|
|
|
myslug = slug
|
|
|
|
cave.filename = myslug + ".html"
|
2012-08-12 18:10:23 +01:00
|
|
|
cave.save()
|
|
|
|
form.save_m2m()
|
|
|
|
if slug is None:
|
2012-08-14 21:51:15 +01:00
|
|
|
cs = CaveSlug(cave = cave, slug = myslug, primary = True)
|
2012-08-12 18:10:23 +01:00
|
|
|
cs.save()
|
2012-06-10 14:59:21 +01:00
|
|
|
ceinsts = ceFormSet.save(commit=False)
|
|
|
|
for ceinst in ceinsts:
|
|
|
|
ceinst.cave = cave
|
2021-04-14 16:28:30 +01:00
|
|
|
ceinst.save()
|
2012-06-10 14:59:21 +01:00
|
|
|
cave.writeDataFile()
|
2021-04-14 16:28:30 +01:00
|
|
|
return HttpResponseRedirect("/" + cave.url)
|
|
|
|
else:
|
|
|
|
message = f'! POST data is INVALID {cave}'
|
|
|
|
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())
|
2021-04-14 16:28:30 +01:00
|
|
|
#versionControlForm = VersionControlCommentForm()
|
2012-06-10 14:59:21 +01:00
|
|
|
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,
|
2012-01-07 19:05:25 +00:00
|
|
|
'editcave2.html',
|
2021-04-14 16:28:30 +01:00
|
|
|
{'form': form, 'cave': cave, 'message': message,
|
2012-06-10 14:59:21 +01:00
|
|
|
'caveAndEntranceFormSet': ceFormSet,
|
2021-04-14 16:28:30 +01:00
|
|
|
#'versionControlForm': versionControlForm
|
2012-06-10 14:59:21 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
@login_required_if_public
|
2012-08-14 21:51:15 +01:00
|
|
|
def editEntrance(request, caveslug, slug=None):
|
2021-04-14 16:28:30 +01:00
|
|
|
'''This is the form that edits the entrance data for a single entrance and writes out
|
|
|
|
an XML file in the :expoweb: repo folder
|
|
|
|
The format for the file being saved is in templates/dataformat/entrance.xml
|
|
|
|
|
|
|
|
It does save the data into into the database directly, not by parsing the file.
|
|
|
|
'''
|
|
|
|
message = ""
|
2012-08-14 21:51:15 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = caveslug)
|
2012-08-12 18:10:23 +01:00
|
|
|
if slug is not None:
|
|
|
|
entrance = Entrance.objects.get(entranceslug__slug = slug)
|
|
|
|
else:
|
|
|
|
entrance = Entrance()
|
2012-06-10 14:59:21 +01:00
|
|
|
if request.POST:
|
|
|
|
form = EntranceForm(request.POST, instance = entrance)
|
2021-04-14 16:28:30 +01:00
|
|
|
#versionControlForm = VersionControlCommentForm(request.POST)
|
2012-08-14 21:51:15 +01:00
|
|
|
if slug is None:
|
|
|
|
entletter = EntranceLetterForm(request.POST)
|
|
|
|
else:
|
|
|
|
entletter = None
|
2021-04-14 16:28:30 +01:00
|
|
|
if form.is_valid() and (slug is not None or entletter.is_valid()):
|
2012-08-12 18:10:23 +01:00
|
|
|
entrance = form.save(commit = False)
|
|
|
|
if slug is None:
|
2012-08-14 21:51:15 +01:00
|
|
|
slugname = cave.slug() + entletter.cleaned_data["entrance_letter"]
|
|
|
|
entrance.cached_primary_slug = slugname
|
|
|
|
entrance.filename = slugname + ".html"
|
2012-08-12 18:10:23 +01:00
|
|
|
entrance.save()
|
|
|
|
if slug is None:
|
2012-08-14 21:51:15 +01:00
|
|
|
es = EntranceSlug(entrance = entrance, slug = slugname, primary = True)
|
|
|
|
es.save()
|
|
|
|
el = entletter.save(commit = False)
|
|
|
|
el.cave = cave
|
|
|
|
el.entrance = entrance
|
|
|
|
el.save()
|
2012-06-10 14:59:21 +01:00
|
|
|
entrance.writeDataFile()
|
2012-08-14 21:51:15 +01:00
|
|
|
return HttpResponseRedirect("/" + cave.url)
|
2021-04-14 16:28:30 +01:00
|
|
|
else:
|
|
|
|
message = f'! POST data is INVALID {cave}'
|
|
|
|
print(message)
|
2012-06-10 14:59:21 +01:00
|
|
|
else:
|
|
|
|
form = EntranceForm(instance = entrance)
|
2021-04-14 16:28:30 +01:00
|
|
|
#versionControlForm = VersionControlCommentForm()
|
2012-08-14 21:51:15 +01:00
|
|
|
if slug is None:
|
|
|
|
entletter = EntranceLetterForm(request.POST)
|
|
|
|
else:
|
|
|
|
entletter = None
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,
|
2012-06-10 14:59:21 +01:00
|
|
|
'editentrance.html',
|
2021-04-14 16:28:30 +01:00
|
|
|
{'form': form, 'cave': cave, 'message': message,
|
|
|
|
#'versionControlForm': versionControlForm,
|
2012-08-14 21:51:15 +01:00
|
|
|
'entletter': entletter
|
2012-01-07 19:05:25 +00:00
|
|
|
})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def qm(request,cave_id,qm_id,year,grade=None):
|
|
|
|
year=int(year)
|
|
|
|
try:
|
2021-03-28 23:47:47 +01:00
|
|
|
qm=getCave(cave_id).get_QMs().get(number=qm_id,found_by__date__year=year)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'qm.html',locals())
|
2021-03-28 23:47:47 +01:00
|
|
|
except Cave.MultipleObjectsReturned: # entirely the wrong action, REPLACE with the right display
|
|
|
|
caves = Cave.objects.filter(kataster_number=cave_id)
|
|
|
|
return render(request, 'svxcaveseveral.html', {'settings': settings, "caves":caves })
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
except QM.DoesNotExist:
|
2020-05-24 13:31:38 +01:00
|
|
|
url=urllib.parse.urljoin(settings.URL_ROOT, r'/admin/core/qm/add/'+'?'+ r'number=' + qm_id)
|
2011-07-11 02:10:22 +01:00
|
|
|
if grade:
|
|
|
|
url += r'&grade=' + grade
|
|
|
|
return HttpResponseRedirect(url)
|
|
|
|
|
|
|
|
def ent(request, cave_id, ent_letter):
|
|
|
|
cave = Cave.objects.filter(kataster_number = cave_id)[0]
|
|
|
|
cave_and_ent = CaveAndEntrance.objects.filter(cave = cave).filter(entrance_letter = ent_letter)[0]
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'entrance.html', {'cave': cave,
|
2011-07-11 02:10:22 +01:00
|
|
|
'entrance': cave_and_ent.entrance,
|
|
|
|
'letter': cave_and_ent.entrance_letter,})
|
|
|
|
|
|
|
|
def entranceSlug(request, slug):
|
2012-06-10 14:59:21 +01:00
|
|
|
entrance = Entrance.objects.get(entranceslug__slug = slug)
|
2021-04-07 21:53:17 +01:00
|
|
|
if entrance.non_public and not request.user.is_authenticated:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'nonpublic.html', {'instance': entrance})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'entranceslug.html', {'entrance': entrance})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def surveyindex(request):
|
|
|
|
surveys=Survey.objects.all()
|
|
|
|
expeditions=Expedition.objects.order_by("-year")
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'survey.html',locals())
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def get_entrances(request, caveslug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = caveslug)
|
2019-03-30 17:02:07 +00:00
|
|
|
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
|
|
|
|
|
|
|
def get_qms(request, caveslug):
|
2012-06-10 14:59:21 +01:00
|
|
|
cave = Cave.objects.get(caveslug__slug = caveslug)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'options.html', {"items": [(e.entrance.slug(), e.entrance.slug()) for e in cave.entrances()]})
|