2020-05-28 04:54:53 +01:00
|
|
|
import datetime
|
|
|
|
import os.path
|
|
|
|
import re
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
import django.db.models
|
2020-05-31 22:35:36 +01:00
|
|
|
from django.db.models import Min, Max
|
2020-06-18 21:50:16 +01:00
|
|
|
from django.urls import reverse
|
2020-05-28 04:54:53 +01:00
|
|
|
from django.http import HttpResponse, HttpResponseRedirect
|
|
|
|
from django.shortcuts import render, render_to_response
|
2011-07-11 02:10:22 +01:00
|
|
|
from django.template import Context, loader
|
|
|
|
from django.template.defaultfilters import slugify
|
2019-02-24 13:03:34 +00:00
|
|
|
from django.utils import timezone
|
2020-05-28 04:54:53 +01:00
|
|
|
from django.views.generic.list import ListView
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-05-28 04:54:53 +01:00
|
|
|
import troggle.core.models as models
|
|
|
|
import troggle.parsers.logbooks as logbookparsers
|
|
|
|
from troggle.core.forms import getTripForm # , get_name, PersonForm
|
2020-05-30 01:11:02 +01:00
|
|
|
from troggle.core.models import Expedition, Person, PersonExpedition
|
|
|
|
from troggle.core.models_caves import LogbookEntry, PersonTrip
|
2020-06-04 21:57:04 +01:00
|
|
|
from troggle.core.models_survex import SurvexBlock
|
2020-05-28 04:54:53 +01:00
|
|
|
from troggle.helper import login_required_if_public
|
|
|
|
from troggle.parsers.logbooks import LoadLogbookForExpedition
|
|
|
|
from troggle.parsers.people import GetPersonExpeditionNameLookup
|
|
|
|
|
|
|
|
import troggle.settings as settings
|
2019-02-24 13:03:34 +00:00
|
|
|
|
|
|
|
# Django uses Context, not RequestContext when you call render
|
|
|
|
# to_response. We always want to use RequestContext, so that
|
|
|
|
# django adds the context from settings.TEMPLATE_CONTEXT_PROCESSORS.
|
|
|
|
# This way we automatically get necessary settings variables passed
|
|
|
|
# to each template. So we use a custom method, render_response
|
|
|
|
# instead of render_to_response. Hopefully future Django releases
|
|
|
|
# will make this unnecessary.
|
|
|
|
# from troggle.alwaysUseRequestContext import render_response
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-06-18 22:44:41 +01:00
|
|
|
# Deprecated in 1.11.29
|
|
|
|
# @django.db.models.permalink #this allows the nice get_absolute_url syntax we are using
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def getNotablePersons():
|
|
|
|
notablepersons = []
|
|
|
|
for person in Person.objects.all():
|
|
|
|
if person.bisnotable():
|
|
|
|
notablepersons.append(person)
|
|
|
|
return notablepersons
|
|
|
|
|
|
|
|
|
|
|
|
def personindex(request):
|
|
|
|
persons = Person.objects.all()
|
|
|
|
# From what I can tell, "persons" seems to be the table rows, while "personss" is the table columns. - AC 16 Feb 09
|
|
|
|
personss = [ ]
|
|
|
|
ncols = 4
|
2020-05-31 22:35:36 +01:00
|
|
|
nc = int((len(persons) + ncols - 1) / ncols)
|
2011-07-11 02:10:22 +01:00
|
|
|
for i in range(ncols):
|
|
|
|
personss.append(persons[i * nc: (i + 1) * nc])
|
|
|
|
|
|
|
|
notablepersons = []
|
|
|
|
for person in Person.objects.all():
|
|
|
|
if person.bisnotable():
|
|
|
|
notablepersons.append(person)
|
|
|
|
|
2019-04-14 22:45:31 +01:00
|
|
|
return render(request,'personindex.html', {'persons': persons, 'personss':personss, 'notablepersons':notablepersons})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def expedition(request, expeditionname):
|
2019-02-24 13:03:34 +00:00
|
|
|
this_expedition = Expedition.objects.get(year=int(expeditionname))
|
2011-07-11 02:10:22 +01:00
|
|
|
expeditions = Expedition.objects.all()
|
|
|
|
personexpeditiondays = [ ]
|
2019-02-24 13:03:34 +00:00
|
|
|
dateditems = list(this_expedition.logbookentry_set.all()) + list(this_expedition.survexblock_set.all())
|
2020-05-24 01:57:06 +01:00
|
|
|
dates = sorted(set([item.date for item in dateditems]))
|
2019-02-24 13:03:34 +00:00
|
|
|
for personexpedition in this_expedition.personexpedition_set.all():
|
2011-07-11 02:10:22 +01:00
|
|
|
prow = [ ]
|
|
|
|
for date in dates:
|
|
|
|
pcell = { "persontrips": PersonTrip.objects.filter(personexpedition=personexpedition,
|
|
|
|
logbook_entry__date=date) }
|
|
|
|
pcell["survexblocks"] = set(SurvexBlock.objects.filter(survexpersonrole__personexpedition=personexpedition,
|
|
|
|
date = date))
|
|
|
|
prow.append(pcell)
|
|
|
|
personexpeditiondays.append({"personexpedition":personexpedition, "personrow":prow})
|
|
|
|
|
|
|
|
if "reload" in request.GET:
|
2019-03-09 11:18:44 +00:00
|
|
|
LoadLogbookForExpedition(this_expedition)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'expedition.html', {'expedition': this_expedition, 'expeditions':expeditions, 'personexpeditiondays':personexpeditiondays, 'settings':settings, 'dateditems': dateditems })
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2019-02-26 19:19:01 +00:00
|
|
|
def get_absolute_url(self):
|
|
|
|
return ('expedition', (expedition.year))
|
2019-02-25 23:07:20 +00:00
|
|
|
|
2019-02-24 13:03:34 +00:00
|
|
|
class ExpeditionListView(ListView):
|
|
|
|
model = Expedition
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(ExpeditionListView, self).get_context_data(**kwargs)
|
|
|
|
context['now'] = timezone.now()
|
|
|
|
return context
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def person(request, first_name='', last_name='', ):
|
2019-02-24 13:03:34 +00:00
|
|
|
this_person = Person.objects.get(first_name = first_name, last_name = last_name)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2019-02-24 13:03:34 +00:00
|
|
|
# This is for removing the reference to the user's profile, in case they set it to the wrong person
|
2011-07-11 02:10:22 +01:00
|
|
|
if request.method == 'GET':
|
|
|
|
if request.GET.get('clear_profile')=='True':
|
2019-02-24 13:03:34 +00:00
|
|
|
this_person.user=None
|
|
|
|
this_person.save()
|
2011-07-11 02:10:22 +01:00
|
|
|
return HttpResponseRedirect(reverse('profiles_select_profile'))
|
|
|
|
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'person.html', {'person': this_person, })
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def GetPersonChronology(personexpedition):
|
2020-07-06 01:24:43 +01:00
|
|
|
'''Horrible bug here whern ther eis more than one survex block per day, it duplicates the entry but gets it wrong
|
|
|
|
Fortunately this is just the display on this page which is wroing, no bad calculations get into the database.
|
|
|
|
'''
|
2011-07-11 02:10:22 +01:00
|
|
|
res = { }
|
|
|
|
for persontrip in personexpedition.persontrip_set.all():
|
2019-03-09 18:43:58 +00:00
|
|
|
a = res.setdefault(persontrip.logbook_entry.date, { })
|
2011-07-11 02:10:22 +01:00
|
|
|
a.setdefault("persontrips", [ ]).append(persontrip)
|
|
|
|
|
|
|
|
for personrole in personexpedition.survexpersonrole_set.all():
|
|
|
|
a = res.setdefault(personrole.survexblock.date, { })
|
|
|
|
a.setdefault("personroles", [ ]).append(personrole.survexblock)
|
|
|
|
|
|
|
|
# build up the tables
|
2020-05-24 01:57:06 +01:00
|
|
|
rdates = sorted(list(res.keys()))
|
2020-07-06 01:24:43 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
res2 = [ ]
|
|
|
|
for rdate in rdates:
|
2020-07-06 01:24:43 +01:00
|
|
|
persontrips = res[rdate].get("persontrips", [])
|
|
|
|
personroles = res[rdate].get("personroles", [])
|
|
|
|
for n in range(max(len(persontrips), len(personroles) )):
|
|
|
|
res2.append(((n == 0 and rdate or "--"), (n < len(persontrips) and persontrips[n]), (n < len(personroles) and personroles[n]) ))
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
return res2
|
|
|
|
|
|
|
|
|
|
|
|
def personexpedition(request, first_name='', last_name='', year=''):
|
|
|
|
person = Person.objects.get(first_name = first_name, last_name = last_name)
|
2019-02-24 13:03:34 +00:00
|
|
|
this_expedition = Expedition.objects.get(year=year)
|
|
|
|
personexpedition = person.personexpedition_set.get(expedition=this_expedition)
|
2011-07-11 02:10:22 +01:00
|
|
|
personchronology = GetPersonChronology(personexpedition)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'personexpedition.html', {'personexpedition': personexpedition, 'personchronology':personchronology})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def logbookentry(request, date, slug):
|
2019-02-24 13:03:34 +00:00
|
|
|
this_logbookentry = LogbookEntry.objects.filter(date=date, slug=slug)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2019-02-24 13:03:34 +00:00
|
|
|
if len(this_logbookentry)>1:
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request, 'object_list.html',{'object_list':this_logbookentry})
|
2011-07-11 02:10:22 +01:00
|
|
|
else:
|
2019-02-24 13:03:34 +00:00
|
|
|
this_logbookentry=this_logbookentry[0]
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request, 'logbookentry.html', {'logbookentry': this_logbookentry})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def logbookSearch(request, extra):
|
|
|
|
query_string = ''
|
|
|
|
found_entries = None
|
|
|
|
if ('q' in request.GET) and request.GET['q'].strip():
|
|
|
|
query_string = request.GET['q']
|
|
|
|
entry_query = search.get_query(query_string, ['text','title',])
|
|
|
|
found_entries = LogbookEntry.objects.filter(entry_query)
|
|
|
|
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'logbooksearch.html',
|
2011-07-11 02:10:22 +01:00
|
|
|
{ 'query_string': query_string, 'found_entries': found_entries, })
|
|
|
|
#context_instance=RequestContext(request))
|
|
|
|
|
|
|
|
def personForm(request,pk):
|
|
|
|
person=Person.objects.get(pk=pk)
|
|
|
|
form=PersonForm(instance=person)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'personform.html', {'form':form,})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2020-07-26 03:22:37 +01:00
|
|
|
# tried to delete all this, and the reference in urls.py, but got impenetrable django error message
|
|
|
|
# @login_required_if_public
|
|
|
|
# def newLogbookEntry(request, expeditionyear, pdate = None, pslug = None):
|
|
|
|
# expedition = Expedition.objects.get(year=expeditionyear)
|
|
|
|
# PersonTripFormSet, TripForm = getTripForm(expedition)
|
|
|
|
# if pslug and pdate:
|
|
|
|
# previousdate = datetime.date(*[int(x) for x in pdate.split("-")])
|
|
|
|
# previouslbe = LogbookEntry.objects.get(slug = pslug, date = previousdate, expedition = expedition)
|
|
|
|
# assert previouslbe.filename
|
|
|
|
# if request.method == 'POST': # If the form has been submitted...
|
|
|
|
# tripForm = TripForm(request.POST) # A form bound to the POST data
|
|
|
|
# personTripFormSet = PersonTripFormSet(request.POST)
|
|
|
|
# if tripForm.is_valid() and personTripFormSet.is_valid(): # All validation rules pass
|
|
|
|
# dateStr = tripForm.cleaned_data["date"].strftime("%Y-%m-%d")
|
|
|
|
# directory = os.path.join(settings.EXPOWEB,
|
|
|
|
# "years",
|
|
|
|
# expedition.year,
|
|
|
|
# "autologbook")
|
|
|
|
# filename = os.path.join(directory,
|
|
|
|
# dateStr + "." + slugify(tripForm.cleaned_data["title"])[:50] + ".html")
|
|
|
|
# if not os.path.isdir(directory):
|
|
|
|
# os.mkdir(directory)
|
|
|
|
# if pslug and pdate:
|
|
|
|
# delLogbookEntry(previouslbe)
|
|
|
|
# f = open(filename, "w")
|
|
|
|
# template = loader.get_template('dataformat/logbookentry.html')
|
|
|
|
# context = Context({'trip': tripForm.cleaned_data,
|
|
|
|
# 'persons': personTripFormSet.cleaned_data,
|
|
|
|
# 'date': dateStr,
|
|
|
|
# 'expeditionyear': expeditionyear})
|
|
|
|
# f.write(template.render(context))
|
|
|
|
# f.close()
|
|
|
|
# print((logbookparsers.parseAutoLogBookEntry(filename)))
|
|
|
|
# return HttpResponseRedirect(reverse('expedition', args=[expedition.year])) # Redirect after POST
|
|
|
|
# else:
|
|
|
|
# if pslug and pdate:
|
|
|
|
# if previouslbe.cave:
|
|
|
|
# tripForm = TripForm(initial={"date": previousdate,
|
|
|
|
# "title": previouslbe.title,
|
|
|
|
# "cave": previouslbe.cave.reference(),
|
|
|
|
# "location": None,
|
|
|
|
# "caveOrLocation": "cave",
|
|
|
|
# "html": previouslbe.text})
|
|
|
|
# else:
|
|
|
|
# tripForm = TripForm(initial={"date": previousdate,
|
|
|
|
# "title": previouslbe.title,
|
|
|
|
# "cave": None,
|
|
|
|
# "location": previouslbe.place,
|
|
|
|
# "caveOrLocation": "location",
|
|
|
|
# "html": previouslbe.text})
|
|
|
|
# personTripFormSet = PersonTripFormSet(initial=[{"name": get_name(py.personexpedition),
|
|
|
|
# "TU": py.time_underground,
|
|
|
|
# "author": py.is_logbook_entry_author}
|
|
|
|
# for py in previouslbe.persontrip_set.all()])
|
|
|
|
# else:
|
|
|
|
# tripForm = TripForm() # An unbound form
|
|
|
|
# personTripFormSet = PersonTripFormSet()
|
|
|
|
|
|
|
|
# return render(request, 'newlogbookentry.html', {
|
|
|
|
# 'tripForm': tripForm,
|
|
|
|
# 'personTripFormSet': personTripFormSet,
|
|
|
|
|
|
|
|
# })
|
|
|
|
|
|
|
|
# @login_required_if_public
|
|
|
|
# def deleteLogbookEntry(request, expeditionyear, date = None, slug = None):
|
|
|
|
# expedition = Expedition.objects.get(year=expeditionyear)
|
|
|
|
# previousdate = datetime.date(*[int(x) for x in date.split("-")])
|
|
|
|
# previouslbe = LogbookEntry.objects.get(slug = slug, date = previousdate, expedition = expedition)
|
|
|
|
# delLogbookEntry(previouslbe)
|
|
|
|
# return HttpResponseRedirect(reverse('expedition', args=[expedition.year])) # Redirect after POST
|
|
|
|
|
|
|
|
# def delLogbookEntry(lbe):
|
|
|
|
# for pt in lbe.persontrip_set.all():
|
|
|
|
# pt.delete()
|
|
|
|
# lbe.delete()
|
|
|
|
# os.remove(lbe.filename)
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def get_people(request, expeditionslug):
|
|
|
|
exp = Expedition.objects.get(year = expeditionslug)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'options.html', {"items": [(pe.slug, pe.name) for pe in exp.personexpedition_set.all()]})
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def get_logbook_entries(request, expeditionslug):
|
|
|
|
exp = Expedition.objects.get(year = expeditionslug)
|
2019-03-30 17:02:07 +00:00
|
|
|
return render(request,'options.html', {"items": [(le.slug, "%s - %s" % (le.date, le.title)) for le in exp.logbookentry_set.all()]})
|