2009-05-13 05:27:43 +01:00
import urllib
2009-05-13 05:28:57 +01:00
import string
2009-05-13 05:24:37 +01:00
from django . forms import ModelForm
from django . db import models
from django . contrib import admin
2009-05-13 05:27:43 +01:00
from django . core . files . storage import FileSystemStorage
2009-05-13 05:48:10 +01:00
from django . contrib . auth . models import User
2009-05-13 05:56:56 +01:00
from django . contrib . contenttypes . models import ContentType
2009-05-13 05:27:43 +01:00
import os
2009-05-13 05:52:59 +01:00
from django . conf import settings
2009-05-13 05:35:11 +01:00
import datetime
2009-05-13 06:05:37 +01:00
from decimal import Decimal , getcontext
getcontext ( ) . prec = 2 #use 2 significant figures for decimal calculations
2009-05-13 05:39:52 +01:00
2009-05-13 05:13:38 +01:00
from models_survex import *
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
#This class is for adding fields and methods which all of our models will have.
class TroggleModel ( models . Model ) :
2009-05-13 06:00:16 +01:00
new_since_parsing = models . BooleanField ( default = False , editable = False )
2009-05-13 05:56:56 +01:00
def get_admin_url ( self ) :
return settings . URL_ROOT + " /admin/expo/ " + self . _meta . object_name + " / " + str ( self . pk )
class Meta :
abstract = True
2009-05-13 05:55:00 +01:00
2009-05-13 05:56:56 +01:00
class Expedition ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
year = models . CharField ( max_length = 20 , unique = True )
name = models . CharField ( max_length = 100 )
2009-05-13 05:35:59 +01:00
date_from = models . DateField ( blank = True , null = True )
date_to = models . DateField ( blank = True , null = True )
2009-05-13 05:52:59 +01:00
2009-05-13 05:24:37 +01:00
def __unicode__ ( self ) :
return self . year
2009-05-13 05:44:35 +01:00
class Meta :
ordering = ( ' year ' , )
2009-05-13 05:52:15 +01:00
get_latest_by = ' date_from '
def get_absolute_url ( self ) :
return settings . URL_ROOT + " /expedition/ %s " % self . year
2009-05-13 05:44:35 +01:00
2009-05-13 05:48:47 +01:00
# lose these two functions (inelegant, and we may create a file with the dates that we can load from)
2009-05-13 05:40:56 +01:00
def GuessDateFrom ( self ) :
try :
return self . logbookentry_set . order_by ( ' date ' ) [ 0 ] . date
except IndexError :
pass
def GuessDateTo ( self ) : # returns the date of the last logbook entry in the expedition
try :
return self . logbookentry_set . order_by ( ' date ' ) [ - 1 ] . date
except IndexError :
pass
2009-05-13 05:35:11 +01:00
def ListDays ( self ) :
2009-05-13 05:40:56 +01:00
if self . date_from and self . date_to :
2009-05-13 05:35:29 +01:00
res = [ ]
2009-05-13 05:40:56 +01:00
date = self . date_from
while date < = self . date_to :
res . append ( date )
date + = datetime . timedelta ( days = 1 )
return res
elif self . GuessDateFrom ( ) and self . GuessDateTo ( ) : # if we don't have the real dates, try it with the dates taken from the earliest and latest logbook entries
date = self . GuessDateFrom ( )
while date < = self . GuessDateTo ( ) :
2009-05-13 05:35:29 +01:00
res . append ( date )
date + = datetime . timedelta ( days = 1 )
return res
2009-05-13 05:35:11 +01:00
2009-05-13 05:39:52 +01:00
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
class Person ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
first_name = models . CharField ( max_length = 100 )
last_name = models . CharField ( max_length = 100 )
2009-05-13 05:25:17 +01:00
is_vfho = models . BooleanField ( help_text = " VFHO is the Vereines für Höhlenkunde in Obersteier, a nearby Austrian caving club. " )
2009-05-13 05:24:37 +01:00
mug_shot = models . CharField ( max_length = 100 , blank = True , null = True )
2009-05-13 05:25:17 +01:00
blurb = models . TextField ( blank = True , null = True )
2009-05-13 05:48:47 +01:00
2009-05-13 06:05:37 +01:00
#href = models.CharField(max_length=200)
2009-05-13 05:52:15 +01:00
orderref = models . CharField ( max_length = 200 ) # for alphabetic
2009-05-13 05:52:59 +01:00
#the below have been removed and made methods. I'm not sure what the b in bisnotable stands for. - AC 16 Feb
#notability = models.FloatField() # for listing the top 20 people
#bisnotable = models.BooleanField()
2009-05-13 05:54:17 +01:00
user = models . OneToOneField ( User , null = True , blank = True )
2009-05-13 05:52:15 +01:00
def get_absolute_url ( self ) :
return settings . URL_ROOT + " /person/ %s _ %s / " % ( self . first_name , self . last_name )
2009-05-13 05:25:39 +01:00
class Meta :
verbose_name_plural = " People "
2009-05-13 05:44:35 +01:00
class Meta :
2009-05-13 05:48:47 +01:00
ordering = ( ' orderref ' , ) # "Wookey" makes too complex for: ('last_name', 'first_name')
2009-05-13 05:35:59 +01:00
2009-05-13 05:24:37 +01:00
def __unicode__ ( self ) :
2009-05-13 05:35:59 +01:00
if self . last_name :
return " %s %s " % ( self . first_name , self . last_name )
return self . first_name
2009-05-13 05:52:15 +01:00
# Below are no longer needed. Use {{ person.personexpedition_set.all.0.expedition }} for Firstexpedition, and {{ person.personexpedition_set.latest.expedition }} for Lastexpedition
2009-05-13 05:44:35 +01:00
# these ought to be possible by piping through |min in the template, or getting the first of an ordered list
2009-05-13 05:52:15 +01:00
# def Firstexpedition(self):
# return self.personexpedition_set.order_by('expedition')[0]
# def Lastexpedition(self):
# return self.personexpedition_set.order_by('-expedition')[0]
2009-05-13 05:44:35 +01:00
2009-05-13 05:55:00 +01:00
def notability ( self ) :
2009-05-13 06:05:37 +01:00
notability = Decimal ( 0 )
for personexpedition in self . personexpedition_set . all ( ) :
2009-05-13 05:55:00 +01:00
if not personexpedition . is_guest :
2009-05-13 06:05:37 +01:00
notability + = Decimal ( 1 ) / ( 2012 - int ( personexpedition . expedition . year ) )
2009-05-13 05:55:00 +01:00
return notability
2009-05-13 05:52:59 +01:00
2009-05-13 05:55:00 +01:00
def bisnotable ( self ) :
2009-05-13 06:05:37 +01:00
return self . notability ( ) > Decimal ( 1 ) / Decimal ( 3 )
#def Sethref(self):
#if self.last_name:
#self.href = self.first_name.lower() + "_" + self.last_name.lower()
#self.orderref = self.last_name + " " + self.first_name
#else:
# self.href = self.first_name.lower()
#self.orderref = self.first_name
#self.notability = 0.0 # set temporarily
2009-05-13 05:48:47 +01:00
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
class PersonExpedition ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
expedition = models . ForeignKey ( Expedition )
person = models . ForeignKey ( Person )
2009-05-13 05:35:59 +01:00
date_from = models . DateField ( blank = True , null = True )
date_to = models . DateField ( blank = True , null = True )
2009-05-13 05:24:37 +01:00
is_guest = models . BooleanField ( default = False )
2009-05-13 05:52:15 +01:00
COMMITTEE_CHOICES = (
( ' leader ' , ' Expo leader ' ) ,
( ' medical ' , ' Expo medical officer ' ) ,
( ' treasurer ' , ' Expo treasurer ' ) ,
( ' sponsorship ' , ' Expo sponsorship coordinator ' ) ,
( ' research ' , ' Expo research coordinator ' ) ,
)
expo_committee_position = models . CharField ( blank = True , null = True , choices = COMMITTEE_CHOICES , max_length = 200 )
2009-05-13 05:24:37 +01:00
nickname = models . CharField ( max_length = 100 , blank = True , null = True )
2009-05-13 05:43:20 +01:00
def GetPersonroles ( self ) :
res = [ ]
for personrole in self . personrole_set . order_by ( ' survex_block ' ) :
if res and res [ - 1 ] [ ' survexpath ' ] == personrole . survex_block . survexpath :
res [ - 1 ] [ ' roles ' ] + = " , " + str ( personrole . role )
else :
res . append ( { ' date ' : personrole . survex_block . date , ' survexpath ' : personrole . survex_block . survexpath , ' roles ' : str ( personrole . role ) } )
return res
2009-05-13 05:44:35 +01:00
class Meta :
ordering = ( ' expedition ' , )
2009-05-13 05:52:15 +01:00
get_latest_by = ' date_from '
2009-05-13 05:44:35 +01:00
2009-05-13 05:43:20 +01:00
def GetPersonChronology ( self ) :
res = { }
for persontrip in self . persontrip_set . all ( ) :
a = res . setdefault ( persontrip . date , { } )
a . setdefault ( " persontrips " , [ ] ) . append ( persontrip )
for personrole in self . personrole_set . all ( ) :
a = res . setdefault ( personrole . survex_block . date , { } )
b = a . setdefault ( " personroles " , { } )
survexpath = personrole . survex_block . survexpath
if b . get ( survexpath ) :
b [ survexpath ] + = " , " + str ( personrole . role )
else :
b [ survexpath ] = str ( personrole . role )
# needs converting dict into list
return sorted ( res . items ( ) )
2009-05-13 05:52:15 +01:00
# possibly not useful functions anyway -JT
# if you can find a better way to make the expo calendar table, be my guest. It isn't possible to do this logic in a django template without writing custom tags.
2009-05-13 05:35:29 +01:00
def ListDays ( self ) :
2009-05-13 05:40:56 +01:00
if self . date_from and self . date_to :
2009-05-13 05:35:29 +01:00
res = [ ]
2009-05-13 05:40:56 +01:00
date = self . date_from
while date < = self . date_to :
2009-05-13 05:35:29 +01:00
res . append ( date )
date + = datetime . timedelta ( days = 1 )
return res
def ListDaysTF ( self ) :
2009-05-13 05:40:56 +01:00
if self . date_from and self . date_to :
2009-05-13 05:35:29 +01:00
res = [ ]
for date in self . expedition . ListDays ( ) :
res . append ( date in self . ListDays ( ) )
return res
2009-05-13 05:24:37 +01:00
def __unicode__ ( self ) :
return " %s : ( %s ) " % ( self . person , self . expedition )
2009-05-13 05:35:59 +01:00
2009-05-13 05:52:15 +01:00
#why is the below a function in personexpedition, rather than in person? - AC 14 Feb 09
2009-05-13 05:35:59 +01:00
def name ( self ) :
if self . nickname :
return " %s ( %s ) %s " % ( self . person . first_name , self . nickname , self . person . last_name )
if self . person . last_name :
return " %s %s " % ( self . person . first_name , self . person . last_name )
return self . person . first_name
2009-05-13 05:24:37 +01:00
2009-05-13 05:52:15 +01:00
def get_absolute_url ( self ) :
return settings . URL_ROOT + ' /personexpedition/ ' + str ( self . person . first_name ) + ' _ ' + str ( self . person . last_name ) + ' / ' + self . expedition . year
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
class LogbookEntry ( TroggleModel ) :
2009-05-13 05:48:47 +01:00
date = models . DateField ( )
expedition = models . ForeignKey ( Expedition , blank = True , null = True ) # yes this is double-
author = models . ForeignKey ( PersonExpedition , blank = True , null = True ) # the person who writes it up doesn't have to have been on the trip
title = models . CharField ( max_length = 200 )
cave = models . ForeignKey ( ' Cave ' , blank = True , null = True )
place = models . CharField ( max_length = 100 , blank = True , null = True )
text = models . TextField ( )
2009-05-13 05:52:15 +01:00
#href = models.CharField(max_length=100)
2009-05-13 05:24:37 +01:00
2009-05-13 05:48:47 +01:00
2009-05-13 05:52:59 +01:00
logbookentry_next = models . ForeignKey ( ' LogbookEntry ' , related_name = ' pnext ' , blank = True , null = True )
logbookentry_prev = models . ForeignKey ( ' LogbookEntry ' , related_name = ' pprev ' , blank = True , null = True )
2009-05-13 05:52:15 +01:00
2009-05-13 05:48:47 +01:00
class Meta :
verbose_name_plural = " Logbook Entries "
# several PersonTrips point in to this object
class Meta :
ordering = ( ' -date ' , )
2009-05-13 05:52:15 +01:00
def get_absolute_url ( self ) :
return settings . URL_ROOT + " /logbookentry/ " + str ( self . pk )
2009-05-13 05:48:47 +01:00
def __unicode__ ( self ) :
return " %s : ( %s ) " % ( self . date , self . title )
2009-05-13 05:52:59 +01:00
def get_next_by_id ( self ) :
Logbook . objects . get ( id = self . id + 1 )
2009-05-13 05:48:47 +01:00
2009-05-13 05:52:59 +01:00
def get_previous_by_id ( self ) :
Logbook . objects . get ( id = self . id - 1 )
2009-05-13 05:52:15 +01:00
2009-05-13 05:56:56 +01:00
class PersonTrip ( TroggleModel ) :
2009-05-13 05:52:59 +01:00
person_expedition = models . ForeignKey ( PersonExpedition , null = True )
2009-05-13 05:48:47 +01:00
# this will be a foreign key of the place(s) the trip went through
# possibly a trip has a plurality of triplets pointing into it
place = models . CharField ( max_length = 100 )
# should add cave thing here (copied from logbook maybe)
date = models . DateField ( )
time_underground = models . FloatField ( )
logbook_entry = models . ForeignKey ( LogbookEntry )
is_logbook_entry_author = models . BooleanField ( )
persontrip_next = models . ForeignKey ( ' PersonTrip ' , related_name = ' pnext ' , blank = True , null = True )
persontrip_prev = models . ForeignKey ( ' PersonTrip ' , related_name = ' pprev ' , blank = True , null = True )
def __unicode__ ( self ) :
return " %s %s ( %s ) " % ( self . person_expedition , self . place , self . date )
2009-05-13 06:02:42 +01:00
def get_persons_next_trip ( self ) :
try :
return PersonTrip . objects . filter ( person_expedition__person = self . person_expedition . person , date__gt = self . date ) [ 0 ]
except :
return
def get_persons_previous_trip ( self ) :
try :
return PersonTrip . objects . filter ( person_expedition__person = self . person_expedition . person , date__lt = self . date ) [ 0 ]
except :
return
2009-05-13 05:48:47 +01:00
2009-05-13 06:02:42 +01:00
# def get_persons_previous_trip(self):
2009-05-13 05:48:47 +01:00
#
# move following classes into models_cave
#
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
class Area ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
short_name = models . CharField ( max_length = 100 )
name = models . CharField ( max_length = 200 , blank = True , null = True )
description = models . TextField ( blank = True , null = True )
parent = models . ForeignKey ( ' Area ' , blank = True , null = True )
def __unicode__ ( self ) :
if self . parent :
return unicode ( self . parent ) + u " - " + unicode ( self . short_name )
else :
return unicode ( self . short_name )
def kat_area ( self ) :
if self . short_name in [ " 1623 " , " 1626 " ] :
return self . short_name
elif self . parent :
return self . parent . kat_area ( )
2009-05-13 05:56:56 +01:00
class CaveAndEntrance ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
cave = models . ForeignKey ( ' Cave ' )
entrance = models . ForeignKey ( ' Entrance ' )
entrance_letter = models . CharField ( max_length = 20 , blank = True , null = True )
def __unicode__ ( self ) :
return unicode ( self . cave ) + unicode ( self . entrance_letter )
2009-05-13 05:56:56 +01:00
class Cave ( TroggleModel ) :
2009-05-13 05:46:12 +01:00
# too much here perhaps
2009-05-13 05:24:37 +01:00
official_name = models . CharField ( max_length = 160 )
area = models . ManyToManyField ( Area , blank = True , null = True )
kataster_code = models . CharField ( max_length = 20 , blank = True , null = True )
kataster_number = models . CharField ( max_length = 10 , blank = True , null = True )
unofficial_number = models . CharField ( max_length = 60 , blank = True , null = True )
entrances = models . ManyToManyField ( ' Entrance ' , through = ' CaveAndEntrance ' )
explorers = models . TextField ( blank = True , null = True )
underground_description = models . TextField ( blank = True , null = True )
equipment = models . TextField ( blank = True , null = True )
references = models . TextField ( blank = True , null = True )
survey = models . TextField ( blank = True , null = True )
kataster_status = models . TextField ( blank = True , null = True )
underground_centre_line = models . TextField ( blank = True , null = True )
notes = models . TextField ( blank = True , null = True )
length = models . CharField ( max_length = 100 , blank = True , null = True )
depth = models . CharField ( max_length = 100 , blank = True , null = True )
extent = models . CharField ( max_length = 100 , blank = True , null = True )
2009-05-13 05:27:43 +01:00
survex_file = models . CharField ( max_length = 100 , blank = True , null = True ) #should be filefield, need to fix parser first
2009-05-13 05:46:12 +01:00
2009-05-13 05:54:17 +01:00
#href = models.CharField(max_length=100)
2009-05-13 05:46:12 +01:00
2009-05-13 05:52:15 +01:00
def get_absolute_url ( self ) :
2009-05-13 05:46:12 +01:00
if self . kataster_number :
2009-05-13 05:52:15 +01:00
href = self . kataster_number
2009-05-13 05:46:12 +01:00
elif self . unofficial_number :
2009-05-13 05:52:15 +01:00
href = self . unofficial_number
2009-05-13 05:46:12 +01:00
else :
2009-05-13 05:52:15 +01:00
href = official_name . lower ( )
2009-05-13 05:55:40 +01:00
return settings . URL_ROOT + ' /cave/ ' + href + ' / '
2009-05-13 05:46:12 +01:00
2009-05-13 05:24:37 +01:00
def __unicode__ ( self ) :
if self . kataster_number :
if self . kat_area ( ) :
return self . kat_area ( ) + u " : " + self . kataster_number
else :
return unicode ( " l " ) + u " : " + self . kataster_number
else :
if self . kat_area ( ) :
return self . kat_area ( ) + u " : " + self . unofficial_number
else :
return self . unofficial_number
2009-05-13 05:46:12 +01:00
2009-05-13 06:00:16 +01:00
def get_QMs ( self ) :
return QM . objects . filter ( found_by__cave = self )
2009-05-13 05:46:12 +01:00
2009-05-13 05:24:37 +01:00
def kat_area ( self ) :
for a in self . area . all ( ) :
if a . kat_area ( ) :
return a . kat_area ( )
def entrances ( self ) :
return CaveAndEntrance . objects . filter ( cave = self )
def entrancelist ( self ) :
rs = [ ]
res = " "
for e in CaveAndEntrance . objects . filter ( cave = self ) :
rs . append ( e . entrance_letter )
rs . sort ( )
prevR = None
n = 0
for r in rs :
if prevR :
if chr ( ord ( prevR ) + 1 ) == r :
prevR = r
n + = 1
else :
if n == 0 :
res + = " , " + prevR
else :
res + = " – " + prevR
else :
prevR = r
n = 0
res + = r
if n == 0 :
res + = " , " + prevR
else :
res + = " – " + prevR
return res
2009-05-13 05:56:56 +01:00
class OtherCaveName ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
name = models . CharField ( max_length = 160 )
cave = models . ForeignKey ( Cave )
def __unicode__ ( self ) :
return unicode ( self . name )
2009-05-13 05:56:56 +01:00
class SurveyStation ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
name = models . CharField ( max_length = 200 )
def __unicode__ ( self ) :
return unicode ( self . name )
2009-05-13 05:56:56 +01:00
class Entrance ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
name = models . CharField ( max_length = 100 , blank = True , null = True )
entrance_description = models . TextField ( blank = True , null = True )
explorers = models . TextField ( blank = True , null = True )
map_description = models . TextField ( blank = True , null = True )
location_description = models . TextField ( blank = True , null = True )
approach = models . TextField ( blank = True , null = True )
underground_description = models . TextField ( blank = True , null = True )
photo = models . TextField ( blank = True , null = True )
MARKING_CHOICES = (
( ' P ' , ' Paint ' ) ,
( ' P? ' , ' Paint (?) ' ) ,
( ' T ' , ' Tag ' ) ,
( ' T? ' , ' Tag (?) ' ) ,
( ' R ' , ' Retagged ' ) ,
( ' S ' , ' Spit ' ) ,
( ' S? ' , ' Spit (?) ' ) ,
( ' U ' , ' Unmarked ' ) ,
( ' ? ' , ' Unknown ' ) )
marking = models . CharField ( max_length = 2 , choices = MARKING_CHOICES )
marking_comment = models . TextField ( blank = True , null = True )
FINDABLE_CHOICES = (
( ' ? ' , ' To be confirmed ... ' ) ,
( ' S ' , ' Surveyed ' ) ,
( ' L ' , ' Lost ' ) ,
( ' R ' , ' Refindable ' ) )
findability = models . CharField ( max_length = 1 , choices = FINDABLE_CHOICES , blank = True , null = True )
findability_description = models . TextField ( blank = True , null = True )
alt = models . TextField ( blank = True , null = True )
northing = models . TextField ( blank = True , null = True )
easting = models . TextField ( blank = True , null = True )
tag_station = models . ForeignKey ( SurveyStation , blank = True , null = True , related_name = " tag_station " )
exact_station = models . ForeignKey ( SurveyStation , blank = True , null = True , related_name = " exact_station " )
other_station = models . ForeignKey ( SurveyStation , blank = True , null = True , related_name = " other_station " )
other_description = models . TextField ( blank = True , null = True )
bearings = models . TextField ( blank = True , null = True )
def __unicode__ ( self ) :
a = CaveAndEntrance . objects . filter ( entrance = self )
name = u ' '
if self . name :
name = unicode ( self . name ) + u ' '
if len ( a ) == 1 :
return name + unicode ( a [ 0 ] )
return name + unicode ( a )
def marking_val ( self ) :
for m in self . MARKING_CHOICES :
if m [ 0 ] == self . marking :
return m [ 1 ]
def findability_val ( self ) :
for f in self . FINDABLE_CHOICES :
if f [ 0 ] == self . findability :
return f [ 1 ]
2009-05-13 05:45:26 +01:00
2009-05-13 05:56:56 +01:00
class CaveArea ( TroggleModel ) :
2009-05-13 05:45:26 +01:00
description = models . TextField ( )
name = models . CharField ( max_length = 200 , unique = True )
cave = models . ForeignKey ( ' Cave ' )
parentArea = models . ForeignKey ( ' CaveArea ' )
survexFile = models . CharField ( max_length = 200 )
2009-05-13 05:24:37 +01:00
2009-05-13 05:56:56 +01:00
class QM ( TroggleModel ) :
2009-05-13 05:24:37 +01:00
#based on qm.csv in trunk/expoweb/smkridge/204 which has the fields:
#"Number","Grade","Area","Description","Page reference","Nearest station","Completion description","Comment"
found_by = models . ForeignKey ( LogbookEntry , related_name = ' QMs_found ' , blank = True , null = True )
ticked_off_by = models . ForeignKey ( LogbookEntry , related_name = ' QMs_ticked_off ' , null = True , blank = True )
number = models . IntegerField ( )
GRADE_CHOICES = (
( ' A ' , ' A: Large obvious lead ' ) ,
( ' B ' , ' B: Average lead ' ) ,
( ' C ' , ' C: Tight unpromising lead ' ) ,
( ' D ' , ' D: Dig ' ) ,
( ' X ' , ' X: Unclimbable aven ' )
)
grade = models . CharField ( max_length = 1 , choices = GRADE_CHOICES )
location_description = models . TextField ( blank = True )
#should be a foreignkey to surveystation
nearest_station_description = models . CharField ( max_length = 400 , null = True , blank = True )
nearest_station = models . OneToOneField ( SurveyStation , null = True , blank = True )
area = models . CharField ( max_length = 100 , blank = True , null = True )
completion_description = models . TextField ( blank = True , null = True )
comment = models . TextField ( blank = True , null = True )
#the below are unneeded- instead use the date fields of the QM's trips
#dateFound = models.DateField(blank=True)
#dateKilled = models.DateField(blank=True)
def __str__ ( self ) :
QMnumber = str ( self . found_by . cave ) + ' - ' + str ( self . found_by . date . year ) + " - " + str ( self . number ) + self . grade
2009-05-13 05:25:17 +01:00
return str ( QMnumber )
2009-05-13 05:53:37 +01:00
2009-05-13 06:00:16 +01:00
def get_absolute_url ( self ) :
return settings . URL_ROOT + ' /cave/ ' + self . found_by . cave . kataster_number + ' / ' + str ( self . found_by . date . year ) + ' - ' + ' %02d ' % self . number
def get_next_by_id ( self ) :
return QM . objects . get ( id = self . id + 1 )
def get_previous_by_id ( self ) :
return QM . objects . get ( id = self . id - 1 )
2009-05-13 06:00:51 +01:00
photoFileStorage = FileSystemStorage ( location = settings . PHOTOS_ROOT , base_url = settings . PHOTOS_URL )
2009-05-13 05:56:56 +01:00
class Photo ( TroggleModel ) :
2009-05-13 05:25:17 +01:00
caption = models . CharField ( max_length = 1000 , blank = True , null = True )
contains_person_trip = models . ManyToManyField ( PersonTrip , blank = True , null = True )
contains_person = models . ManyToManyField ( Person , blank = True , null = True )
2009-05-13 05:53:37 +01:00
file = models . ImageField ( storage = photoFileStorage , upload_to = ' . ' , )
2009-05-13 05:25:17 +01:00
is_mugshot = models . BooleanField ( default = False )
contains_cave = models . ForeignKey ( Cave , blank = True , null = True )
contains_entrance = models . ForeignKey ( Entrance , related_name = " photo_file " , blank = True , null = True )
nearest_survey_point = models . ForeignKey ( SurveyStation , blank = True , null = True )
nearest_QM = models . ForeignKey ( QM , blank = True , null = True )
lon_utm = models . FloatField ( blank = True , null = True )
lat_utm = models . FloatField ( blank = True , null = True )
#content_type = models.ForeignKey(ContentType)
#object_id = models.PositiveIntegerField()
#location = generic.GenericForeignKey('content_type', 'object_id')
def __str__ ( self ) :
return self . caption
2009-05-13 05:25:39 +01:00
2009-05-13 05:27:43 +01:00
scansFileStorage = FileSystemStorage ( location = settings . SURVEYS , base_url = settings . SURVEYS_URL )
def get_scan_path ( instance , filename ) :
2009-05-13 05:31:21 +01:00
year = instance . survey . expedition . year
2009-05-13 05:38:37 +01:00
print " WN: " , type ( instance . survey . wallet_number ) , instance . survey . wallet_number
2009-05-13 05:31:21 +01:00
number = " %02d " % instance . survey . wallet_number + str ( instance . survey . wallet_letter ) #using %02d string formatting because convention was 2009#01
2009-05-13 05:27:43 +01:00
return os . path . join ( ' ./ ' , year , year + r ' # ' + number , instance . contents + str ( instance . number_in_wallet ) + r ' .jpg ' )
2009-05-13 05:56:56 +01:00
class ScannedImage ( TroggleModel ) :
2009-05-13 05:27:43 +01:00
file = models . ImageField ( storage = scansFileStorage , upload_to = get_scan_path )
2009-05-13 05:29:31 +01:00
scanned_by = models . ForeignKey ( Person , blank = True , null = True )
scanned_on = models . DateField ( null = True )
2009-05-13 05:27:43 +01:00
survey = models . ForeignKey ( ' Survey ' )
contents = models . CharField ( max_length = 20 , choices = ( ( ' notes ' , ' notes ' ) , ( ' plan ' , ' plan_sketch ' ) , ( ' elevation ' , ' elevation_sketch ' ) ) )
number_in_wallet = models . IntegerField ( null = True )
lon_utm = models . FloatField ( blank = True , null = True )
lat_utm = models . FloatField ( blank = True , null = True )
#content_type = models.ForeignKey(ContentType)
#object_id = models.PositiveIntegerField()
#location = generic.GenericForeignKey('content_type', 'object_id')
2009-05-13 05:28:57 +01:00
#This is an ugly hack to deal with the #s in our survey scan paths. The correct thing is to write a custom file storage backend which calls urlencode on the name for making file.url but not file.path.
2009-05-13 05:27:43 +01:00
def correctURL ( self ) :
2009-05-13 05:28:57 +01:00
return string . replace ( self . file . url , r ' # ' , r ' % 23 ' )
2009-05-13 05:27:43 +01:00
def __str__ ( self ) :
return get_scan_path ( self , ' ' )
2009-05-13 05:56:56 +01:00
class Survey ( TroggleModel ) :
2009-05-13 05:31:21 +01:00
expedition = models . ForeignKey ( ' Expedition ' )
2009-05-13 05:27:43 +01:00
wallet_number = models . IntegerField ( blank = True , null = True )
wallet_letter = models . CharField ( max_length = 1 , blank = True , null = True )
comments = models . TextField ( blank = True , null = True )
location = models . CharField ( max_length = 400 , blank = True , null = True )
#notes_scan = models.ForeignKey('ScannedImage',related_name='notes_scan',blank=True, null=True) #Replaced by contents field of ScannedImage model
survex_block = models . ForeignKey ( ' SurvexBlock ' , blank = True , null = True )
centreline_printed_on = models . DateField ( blank = True , null = True )
centreline_printed_by = models . ForeignKey ( ' Person ' , related_name = ' centreline_printed_by ' , blank = True , null = True )
#sketch_scan = models.ForeignKey(ScannedImage,blank=True, null=True) #Replaced by contents field of ScannedImage model
tunnel_file = models . FileField ( upload_to = ' surveyXMLfiles ' , blank = True , null = True )
tunnel_main_sketch = models . ForeignKey ( ' Survey ' , blank = True , null = True )
integrated_into_main_sketch_on = models . DateField ( blank = True , null = True )
integrated_into_main_sketch_by = models . ForeignKey ( ' Person ' , related_name = ' integrated_into_main_sketch_by ' , blank = True , null = True )
rendered_image = models . ImageField ( upload_to = ' renderedSurveys ' , blank = True , null = True )
def __str__ ( self ) :
2009-05-13 05:31:21 +01:00
return self . expedition . year + " # " + " %02d " % self . wallet_number
def notes ( self ) :
return self . scannedimage_set . filter ( contents = ' notes ' )
def plans ( self ) :
return self . scannedimage_set . filter ( contents = ' plan ' )
def elevations ( self ) :
2009-05-13 05:46:12 +01:00
return self . scannedimage_set . filter ( contents = ' elevation ' )
2009-05-13 05:48:10 +01:00