2023-01-19 18:35:56 +00:00
|
|
|
import datetime
|
2022-07-27 23:48:22 +01:00
|
|
|
import json
|
2022-08-01 00:50:19 +01:00
|
|
|
import operator
|
2023-01-19 18:35:56 +00:00
|
|
|
import os
|
|
|
|
import re
|
2022-08-01 00:50:19 +01:00
|
|
|
from functools import reduce
|
2023-01-19 18:35:56 +00:00
|
|
|
from pathlib import Path
|
|
|
|
from urllib.parse import urljoin
|
2020-05-28 01:16:45 +01:00
|
|
|
|
|
|
|
from django.conf import settings
|
2023-01-19 18:35:56 +00:00
|
|
|
from django.db import models
|
2020-06-18 21:50:16 +01:00
|
|
|
from django.urls import reverse
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2023-01-29 16:23:58 +00:00
|
|
|
from troggle.core.models.wallets import Wallet
|
2022-09-20 20:52:31 +01:00
|
|
|
# from troggle.core.models.troggle import DataIssue # circular import. Hmm
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
class SurvexDirectory(models.Model):
|
|
|
|
path = models.CharField(max_length=200)
|
2020-06-30 15:26:03 +01:00
|
|
|
cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.SET_NULL)
|
|
|
|
primarysurvexfile = models.ForeignKey('SurvexFile', related_name='primarysurvexfile', blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
# could also include files in directory but not referenced
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('id',)
|
2021-05-05 00:35:10 +01:00
|
|
|
verbose_name_plural = "Survex directories"
|
2020-05-28 01:16:45 +01:00
|
|
|
|
2021-05-05 00:35:10 +01:00
|
|
|
def __str__(self):
|
2022-07-28 13:15:11 +01:00
|
|
|
return "[SurvexDirectory:"+str(self.path) + " | Primary svx:" + str(self.primarysurvexfile.path) +".svx ]"
|
2020-06-28 01:50:34 +01:00
|
|
|
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
class SurvexFile(models.Model):
|
|
|
|
path = models.CharField(max_length=200)
|
2020-06-30 15:26:03 +01:00
|
|
|
survexdirectory = models.ForeignKey("SurvexDirectory", blank=True, null=True,on_delete=models.SET_NULL)
|
|
|
|
cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('id',)
|
2020-06-28 14:42:26 +01:00
|
|
|
|
2020-06-29 21:16:13 +01:00
|
|
|
# Don't change from the default as that breaks troggle webpages and internal referencing!
|
|
|
|
# def __str__(self):
|
|
|
|
# return "[SurvexFile:"+str(self.path) + "-" + str(self.survexdirectory) + "-" + str(self.cave)+"]"
|
2020-06-28 14:42:26 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def exists(self):
|
|
|
|
fname = os.path.join(settings.SURVEX_DATA, self.path + ".svx")
|
|
|
|
return os.path.isfile(fname)
|
|
|
|
|
|
|
|
def OpenFile(self):
|
|
|
|
fname = os.path.join(settings.SURVEX_DATA, self.path + ".svx")
|
|
|
|
return open(fname)
|
|
|
|
|
|
|
|
def SetDirectory(self):
|
|
|
|
dirpath = os.path.split(self.path)[0]
|
2020-06-27 17:55:59 +01:00
|
|
|
# pointless search every time we import a survex file if we know there are no duplicates..
|
|
|
|
# don't use this for initial import.
|
2011-07-11 02:10:22 +01:00
|
|
|
survexdirectorylist = SurvexDirectory.objects.filter(cave=self.cave, path=dirpath)
|
|
|
|
if survexdirectorylist:
|
|
|
|
self.survexdirectory = survexdirectorylist[0]
|
|
|
|
else:
|
|
|
|
survexdirectory = SurvexDirectory(path=dirpath, cave=self.cave, primarysurvexfile=self)
|
|
|
|
survexdirectory.save()
|
|
|
|
self.survexdirectory = survexdirectory
|
|
|
|
self.save()
|
2021-05-05 00:35:10 +01:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.path
|
2020-05-28 01:16:45 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
class SurvexStationLookUpManager(models.Manager):
|
|
|
|
def lookup(self, name):
|
|
|
|
blocknames, sep, stationname = name.rpartition(".")
|
|
|
|
return self.get(block = SurvexBlock.objects.lookup(blocknames),
|
2012-06-10 14:59:21 +01:00
|
|
|
name__iexact = stationname)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
class SurvexStation(models.Model):
|
2012-06-10 14:59:21 +01:00
|
|
|
name = models.CharField(max_length=100)
|
2020-06-30 15:26:03 +01:00
|
|
|
block = models.ForeignKey('SurvexBlock', null=True,on_delete=models.SET_NULL)
|
|
|
|
# equate = models.ForeignKey('SurvexEquate', blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
objects = SurvexStationLookUpManager()
|
|
|
|
x = models.FloatField(blank=True, null=True)
|
|
|
|
y = models.FloatField(blank=True, null=True)
|
|
|
|
z = models.FloatField(blank=True, null=True)
|
2012-06-10 14:59:21 +01:00
|
|
|
|
|
|
|
def path(self):
|
|
|
|
r = self.name
|
|
|
|
b = self.block
|
|
|
|
while True:
|
|
|
|
if b.name:
|
|
|
|
r = b.name + "." + r
|
|
|
|
if b.parent:
|
|
|
|
b = b.parent
|
|
|
|
else:
|
|
|
|
return r
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2021-04-20 19:47:08 +01:00
|
|
|
class Meta:
|
|
|
|
ordering = ('id',)
|
|
|
|
def __str__(self):
|
|
|
|
return self.name and str(self.name) or 'no name'
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
#
|
|
|
|
# Single SurvexBlock
|
|
|
|
#
|
|
|
|
class SurvexBlockLookUpManager(models.Manager):
|
2023-01-29 16:23:58 +00:00
|
|
|
"""Don't know what this does, suspect it is part of the Django admin
|
|
|
|
system"""
|
2011-07-11 02:10:22 +01:00
|
|
|
def lookup(self, name):
|
2012-08-10 18:02:13 +01:00
|
|
|
if name == "":
|
|
|
|
blocknames = []
|
|
|
|
else:
|
|
|
|
blocknames = name.split(".")
|
2019-06-26 03:32:18 +01:00
|
|
|
block = SurvexBlock.objects.get(parent=None, survexfile__path=settings.SURVEX_TOPNAME)
|
2011-07-11 02:10:22 +01:00
|
|
|
for blockname in blocknames:
|
2012-06-10 14:59:21 +01:00
|
|
|
block = SurvexBlock.objects.get(parent=block, name__iexact=blockname)
|
2011-07-11 02:10:22 +01:00
|
|
|
return block
|
|
|
|
|
|
|
|
class SurvexBlock(models.Model):
|
2022-12-23 23:32:59 +00:00
|
|
|
"""One begin..end block within a survex file. The basic elemt of a survey trip.
|
|
|
|
"""
|
2011-07-11 02:10:22 +01:00
|
|
|
objects = SurvexBlockLookUpManager()
|
|
|
|
name = models.CharField(max_length=100)
|
2020-07-20 23:25:49 +01:00
|
|
|
title = models.CharField(max_length=200)
|
2020-06-30 15:26:03 +01:00
|
|
|
parent = models.ForeignKey('SurvexBlock', blank=True, null=True,on_delete=models.SET_NULL)
|
|
|
|
cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2019-06-26 20:57:24 +01:00
|
|
|
date = models.DateField(blank=True, null=True)
|
2020-06-30 15:26:03 +01:00
|
|
|
expeditionday = models.ForeignKey("ExpeditionDay", null=True,on_delete=models.SET_NULL)
|
|
|
|
expedition = models.ForeignKey('Expedition', blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-06-30 15:26:03 +01:00
|
|
|
survexfile = models.ForeignKey("SurvexFile", blank=True, null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
survexpath = models.CharField(max_length=200) # the path for the survex stations
|
|
|
|
|
2023-01-29 16:23:58 +00:00
|
|
|
scanswallet = models.ForeignKey("Wallet", null=True,on_delete=models.SET_NULL) # only ONE wallet per block. The most recent seen overwites.. ugh.
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-06-18 00:20:47 +01:00
|
|
|
legsall = models.IntegerField(null=True) # summary data for this block
|
2020-07-04 13:31:46 +01:00
|
|
|
legslength = models.FloatField(null=True)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('id',)
|
|
|
|
|
2021-05-05 00:35:10 +01:00
|
|
|
def __str__(self):
|
|
|
|
return "[SurvexBlock:"+ str(self.name) + "-path:" + \
|
|
|
|
str(self.survexpath) + "-cave:" + \
|
|
|
|
str(self.cave) + "]"
|
|
|
|
|
2020-06-28 14:42:26 +01:00
|
|
|
def __str__(self):
|
2020-06-29 21:16:13 +01:00
|
|
|
return self.name and str(self.name) or 'no name'
|
2020-06-28 14:42:26 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def isSurvexBlock(self): # Function used in templates
|
|
|
|
return True
|
|
|
|
|
|
|
|
def DayIndex(self):
|
|
|
|
return list(self.expeditionday.survexblock_set.all()).index(self)
|
|
|
|
|
|
|
|
class SurvexPersonRole(models.Model):
|
2020-06-18 00:20:47 +01:00
|
|
|
survexblock = models.ForeignKey('SurvexBlock',on_delete=models.CASCADE)
|
2022-10-07 21:47:45 +01:00
|
|
|
# increasing levels of precision, Surely we only need survexblock and person now that we have no link to a logbook entry?
|
2011-07-11 02:10:22 +01:00
|
|
|
personname = models.CharField(max_length=100)
|
2020-06-30 15:26:03 +01:00
|
|
|
person = models.ForeignKey('Person', blank=True, null=True,on_delete=models.SET_NULL)
|
|
|
|
personexpedition = models.ForeignKey('PersonExpedition', blank=True, null=True,on_delete=models.SET_NULL)
|
2023-01-28 21:00:38 +00:00
|
|
|
# persontrip = models.ForeignKey('PersonTrip', blank=True, null=True,on_delete=models.SET_NULL) # logbook thing not a survex thing
|
2020-06-30 15:26:03 +01:00
|
|
|
expeditionday = models.ForeignKey("ExpeditionDay", null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-05-26 02:21:36 +01:00
|
|
|
def __str__(self):
|
2022-09-19 23:02:06 +01:00
|
|
|
return str(self.personname) + " - " + str(self.survexblock)
|
2020-05-28 01:16:45 +01:00
|
|
|
|
2020-06-24 00:18:01 +01:00
|
|
|
class SingleScan(models.Model):
|
2022-12-23 23:32:59 +00:00
|
|
|
"""A single file holding an image. Could be raw notes, an elevation plot or whatever
|
|
|
|
"""
|
2021-04-26 19:50:03 +01:00
|
|
|
ffile = models.CharField(max_length=200)
|
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
wallet = models.ForeignKey("Wallet", null=True,on_delete=models.SET_NULL)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('name',)
|
|
|
|
|
|
|
|
def get_absolute_url(self):
|
2021-04-26 19:50:03 +01:00
|
|
|
return urljoin(settings.URL_ROOT, reverse('scansingle', kwargs={"path":re.sub("#", "%23", self.wallet.walletname), "file":self.name}))
|
2020-05-15 21:32:55 +01:00
|
|
|
|
2020-05-26 02:21:36 +01:00
|
|
|
def __str__(self):
|
2022-12-23 23:32:59 +00:00
|
|
|
return "Scan Image: " + str(self.name) + " in " + str(self.wallet)
|
2020-05-28 01:16:45 +01:00
|
|
|
|
2021-04-26 18:08:42 +01:00
|
|
|
class DrawingFile(models.Model):
|
2022-12-23 23:32:59 +00:00
|
|
|
"""A file holding a Therion (several types) or a Tunnel drawing
|
|
|
|
"""
|
2021-04-26 18:11:14 +01:00
|
|
|
dwgpath = models.CharField(max_length=200)
|
2021-04-26 18:37:59 +01:00
|
|
|
dwgname = models.CharField(max_length=200)
|
2022-07-27 23:48:22 +01:00
|
|
|
dwgwallets = models.ManyToManyField("Wallet") # implicitly links via folders to scans to SVX files
|
2021-04-26 19:22:29 +01:00
|
|
|
scans = models.ManyToManyField("SingleScan") # implicitly links via scans to SVX files
|
2021-04-26 18:54:17 +01:00
|
|
|
dwgcontains = models.ManyToManyField("DrawingFile") # case when its a frame type
|
2021-04-26 19:22:29 +01:00
|
|
|
filesize = models.IntegerField(default=0)
|
|
|
|
npaths = models.IntegerField(default=0)
|
|
|
|
survexfiles = models.ManyToManyField("SurvexFile") # direct link to SVX files - not populated yet
|
2020-06-24 01:57:20 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
class Meta:
|
2021-05-05 00:35:10 +01:00
|
|
|
ordering = ('dwgpath',)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "Drawing File: " + str(self.dwgname) + " (" + str(self.filesize) + " bytes)"
|
|
|
|
|