2011-07-11 02:10:22 +01:00
|
|
|
import os
|
|
|
|
import time
|
2020-04-15 04:09:28 +01:00
|
|
|
import timeit
|
2011-07-11 02:10:22 +01:00
|
|
|
import settings
|
|
|
|
os.environ['PYTHONPATH'] = settings.PYTHON_PATH
|
2018-06-17 02:23:02 +01:00
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
|
2011-07-11 02:10:22 +01:00
|
|
|
from django.core import management
|
|
|
|
from django.db import connection
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.http import HttpResponse
|
2018-06-17 02:23:02 +01:00
|
|
|
from django.core.urlresolvers import reverse
|
2018-04-15 16:28:13 +01:00
|
|
|
from troggle.core.models import Cave, Entrance
|
|
|
|
import troggle.flatpages.models
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2013-07-02 18:13:27 +01:00
|
|
|
databasename=settings.DATABASES['default']['NAME']
|
2015-07-01 01:18:25 +01:00
|
|
|
expouser=settings.EXPOUSER
|
|
|
|
expouserpass=settings.EXPOUSERPASS
|
2015-07-01 01:26:04 +01:00
|
|
|
expouseremail=settings.EXPOUSER_EMAIL
|
2011-07-11 02:10:22 +01:00
|
|
|
|
|
|
|
def reload_db():
|
2013-07-02 18:13:27 +01:00
|
|
|
if settings.DATABASES['default']['ENGINE'] == 'django.db.backends.sqlite3':
|
2011-07-11 02:10:22 +01:00
|
|
|
try:
|
2013-07-02 18:13:27 +01:00
|
|
|
os.remove(databasename)
|
2011-07-11 02:10:22 +01:00
|
|
|
except OSError:
|
|
|
|
pass
|
2019-02-24 14:29:14 +00:00
|
|
|
else:
|
2011-07-11 02:10:22 +01:00
|
|
|
cursor = connection.cursor()
|
2013-07-02 18:13:27 +01:00
|
|
|
cursor.execute("DROP DATABASE %s" % databasename)
|
|
|
|
cursor.execute("CREATE DATABASE %s" % databasename)
|
|
|
|
cursor.execute("ALTER DATABASE %s CHARACTER SET=utf8" % databasename)
|
|
|
|
cursor.execute("USE %s" % databasename)
|
2011-07-11 02:10:22 +01:00
|
|
|
management.call_command('syncdb', interactive=False)
|
2015-07-01 01:18:25 +01:00
|
|
|
user = User.objects.create_user(expouser, expouseremail, expouserpass)
|
2011-07-11 02:10:22 +01:00
|
|
|
user.is_staff = True
|
|
|
|
user.is_superuser = True
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
def make_dirs():
|
|
|
|
"""Make directories that troggle requires"""
|
|
|
|
#should also deal with permissions here.
|
|
|
|
if not os.path.isdir(settings.PHOTOS_ROOT):
|
|
|
|
os.mkdir(settings.PHOTOS_ROOT)
|
|
|
|
|
2012-06-10 14:59:21 +01:00
|
|
|
def import_caves():
|
|
|
|
import parsers.caves
|
2019-04-19 22:52:54 +01:00
|
|
|
print("Importing Caves")
|
2012-06-10 14:59:21 +01:00
|
|
|
parsers.caves.readcaves()
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def import_people():
|
|
|
|
import parsers.people
|
|
|
|
parsers.people.LoadPersonsExpos()
|
|
|
|
|
|
|
|
def import_logbooks():
|
|
|
|
import parsers.logbooks
|
|
|
|
parsers.logbooks.LoadLogbooks()
|
|
|
|
|
|
|
|
def import_survex():
|
|
|
|
import parsers.survex
|
|
|
|
parsers.survex.LoadAllSurvexBlocks()
|
|
|
|
parsers.survex.LoadPos()
|
|
|
|
|
|
|
|
def import_QMs():
|
|
|
|
import parsers.QMs
|
2020-04-14 20:46:45 +01:00
|
|
|
# import process runs on qm.csv in only 3 caves, not 264!
|
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
def import_surveys():
|
|
|
|
import parsers.surveys
|
|
|
|
parsers.surveys.parseSurveys(logfile=settings.LOGFILE)
|
|
|
|
|
|
|
|
def import_surveyscans():
|
|
|
|
import parsers.surveys
|
|
|
|
parsers.surveys.LoadListScans()
|
|
|
|
|
|
|
|
def import_tunnelfiles():
|
|
|
|
import parsers.surveys
|
|
|
|
parsers.surveys.LoadTunnelFiles()
|
|
|
|
|
2020-04-14 20:46:45 +01:00
|
|
|
def pageredirects():
|
|
|
|
for oldURL, newURL in [("indxal.htm", reverse("caveindex"))]:
|
|
|
|
f = troggle.flatpages.models.Redirect(originalURL = oldURL, newURL = newURL)
|
|
|
|
f.save()
|
|
|
|
|
2020-04-15 04:09:28 +01:00
|
|
|
def reset(): # unused now that we have a jobqueue
|
2011-07-11 02:10:22 +01:00
|
|
|
""" Wipe the troggle database and import everything from legacy data
|
|
|
|
"""
|
|
|
|
reload_db()
|
|
|
|
make_dirs()
|
|
|
|
pageredirects()
|
2012-06-10 17:16:33 +01:00
|
|
|
import_caves()
|
2011-07-11 02:10:22 +01:00
|
|
|
import_people()
|
|
|
|
import_surveyscans()
|
|
|
|
import_logbooks()
|
|
|
|
import_QMs()
|
2020-02-20 14:57:37 +00:00
|
|
|
import_survex()
|
2020-04-11 00:36:27 +01:00
|
|
|
import_tunnelfiles()
|
2011-07-11 02:10:22 +01:00
|
|
|
import_surveys()
|
|
|
|
|
2020-04-14 20:19:41 +01:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2011-07-11 02:10:22 +01:00
|
|
|
def import_auto_logbooks():
|
|
|
|
import parsers.logbooks
|
|
|
|
import os
|
2019-02-24 13:03:34 +00:00
|
|
|
for pt in troggle.core.models.PersonTrip.objects.all():
|
2011-07-11 02:10:22 +01:00
|
|
|
pt.delete()
|
2019-02-24 13:03:34 +00:00
|
|
|
for lbe in troggle.core.models.LogbookEntry.objects.all():
|
2011-07-11 02:10:22 +01:00
|
|
|
lbe.delete()
|
2019-02-24 13:03:34 +00:00
|
|
|
for expedition in troggle.core.models.Expedition.objects.all():
|
2019-03-30 13:58:38 +00:00
|
|
|
directory = os.path.join(settings.EXPOWEB,
|
|
|
|
"years",
|
|
|
|
expedition.year,
|
|
|
|
"autologbook")
|
2011-07-11 02:10:22 +01:00
|
|
|
for root, dirs, filenames in os.walk(directory):
|
|
|
|
for filename in filenames:
|
2019-02-24 14:29:14 +00:00
|
|
|
print(os.path.join(root, filename))
|
2011-07-11 02:10:22 +01:00
|
|
|
parsers.logbooks.parseAutoLogBookEntry(os.path.join(root, filename))
|
|
|
|
|
2020-04-12 22:29:30 +01:00
|
|
|
#Temporary function until definitive source of data transfered.
|
2011-07-11 02:10:22 +01:00
|
|
|
from django.template.defaultfilters import slugify
|
|
|
|
from django.template import Context, loader
|
|
|
|
def dumplogbooks():
|
|
|
|
def get_name(pe):
|
|
|
|
if pe.nickname:
|
|
|
|
return pe.nickname
|
|
|
|
else:
|
|
|
|
return pe.person.first_name
|
2019-02-24 13:03:34 +00:00
|
|
|
for lbe in troggle.core.models.LogbookEntry.objects.all():
|
2011-07-11 02:10:22 +01:00
|
|
|
dateStr = lbe.date.strftime("%Y-%m-%d")
|
|
|
|
directory = os.path.join(settings.EXPOWEB,
|
2019-02-24 13:03:34 +00:00
|
|
|
"years",
|
2011-07-11 02:10:22 +01:00
|
|
|
lbe.expedition.year,
|
|
|
|
"autologbook")
|
|
|
|
if not os.path.isdir(directory):
|
|
|
|
os.mkdir(directory)
|
|
|
|
filename = os.path.join(directory,
|
|
|
|
dateStr + "." + slugify(lbe.title)[:50] + ".html")
|
|
|
|
if lbe.cave:
|
2019-02-24 14:29:14 +00:00
|
|
|
print(lbe.cave.reference())
|
2011-07-11 02:10:22 +01:00
|
|
|
trip = {"title": lbe.title, "html":lbe.text, "cave": lbe.cave.reference(), "caveOrLocation": "cave"}
|
|
|
|
else:
|
|
|
|
trip = {"title": lbe.title, "html":lbe.text, "location":lbe.place, "caveOrLocation": "location"}
|
|
|
|
pts = [pt for pt in lbe.persontrip_set.all() if pt.personexpedition]
|
|
|
|
persons = [{"name": get_name(pt.personexpedition), "TU": pt.time_underground, "author": pt.is_logbook_entry_author} for pt in pts]
|
|
|
|
f = open(filename, "wb")
|
|
|
|
template = loader.get_template('dataformat/logbookentry.html')
|
|
|
|
context = Context({'trip': trip,
|
|
|
|
'persons': persons,
|
|
|
|
'date': dateStr,
|
|
|
|
'expeditionyear': lbe.expedition.year})
|
|
|
|
output = template.render(context)
|
|
|
|
f.write(unicode(output).encode( "utf-8" ))
|
|
|
|
f.close()
|
2020-04-14 20:19:41 +01:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2020-04-15 04:09:28 +01:00
|
|
|
class JobQueue():
|
|
|
|
""" A list of import operations to run. Always reports times
|
|
|
|
in the same order """
|
|
|
|
|
|
|
|
|
|
|
|
#Constructor creates a list
|
|
|
|
def __init__(self,run):
|
|
|
|
self.runlabel = run
|
|
|
|
self.queue = [] # tuples of (jobname, jobfunction)
|
|
|
|
self.results = {}
|
|
|
|
self.results_order=[
|
|
|
|
"date","runlabel","reload", "caves", "people",
|
|
|
|
"logbooks", "surveyscans", "QMs", "survex"
|
|
|
|
"tunnel", "surveys", "test", "makedirs", "redirect" ]
|
|
|
|
for k in self.results_order:
|
|
|
|
self.results[k]=[]
|
|
|
|
|
|
|
|
#Adding elements to queue
|
|
|
|
def enq(self,label,func):
|
|
|
|
self.queue.append((label,func))
|
|
|
|
return True
|
|
|
|
|
|
|
|
#Removing the last element from the queue
|
|
|
|
def deq(self):
|
|
|
|
if len(self.queue)>0:
|
|
|
|
return self.queue.pop()
|
|
|
|
return ("Queue Empty!")
|
|
|
|
|
|
|
|
def size(self):
|
|
|
|
return len(self.queue)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
import json
|
|
|
|
tfile = "import_times.json"
|
|
|
|
if os.path.isfile(tfile):
|
|
|
|
try:
|
|
|
|
f = open(tfile, "r")
|
|
|
|
data = json.load(f)
|
|
|
|
for j in data:
|
|
|
|
self.results[j] = data[j]
|
|
|
|
except:
|
|
|
|
print "FAILURE parsing JSON file %s" % (tfile)
|
|
|
|
# Python bug: https://github.com/ShinNoNoir/twitterwebsearch/issues/12
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
print "** Running job ", self.runlabel
|
|
|
|
for i in self.queue:
|
|
|
|
#print "*- Running \"", i[0], "\""
|
|
|
|
start = time.time()
|
|
|
|
i[1]()
|
|
|
|
duration = time.time()-start
|
|
|
|
#print "\n*- Ended \"", i[0], "\""
|
|
|
|
self.results[i[0]].append(duration)
|
|
|
|
self.results["date"].append(start)
|
|
|
|
self.results["runlabel"].append(self.runlabel)
|
|
|
|
print "** Ended all jobs."
|
|
|
|
#print self.results
|
|
|
|
|
|
|
|
with open(tfile, 'w') as f:
|
|
|
|
json.dump(self.results, f)
|
|
|
|
|
|
|
|
for i in self.results_order:
|
|
|
|
percen=0
|
|
|
|
if i == "runlabel":
|
|
|
|
pass
|
|
|
|
if i =="date":
|
|
|
|
# Calculate dates as days before present to one decimal place
|
|
|
|
pass
|
|
|
|
elif len(self.results[i])>0:
|
|
|
|
lst = self.results[i]
|
|
|
|
e = len(lst)-1
|
|
|
|
percen = 100* (lst[e] - lst[e-1])/lst[e-1]
|
|
|
|
if abs(percen) >0.1:
|
|
|
|
print '%15s %8.1f%%' % (i, percen)
|
|
|
|
else:
|
|
|
|
print '%15s ' % (i)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def importtest():
|
|
|
|
from random import randrange
|
|
|
|
k = 0
|
|
|
|
for i in range(5+randrange(15)):
|
|
|
|
for j in range(i):
|
|
|
|
k += i
|
|
|
|
#print k,
|
|
|
|
return True
|
2011-07-11 02:10:22 +01:00
|
|
|
|
2013-06-24 01:31:14 +01:00
|
|
|
def usage():
|
2019-02-24 13:03:34 +00:00
|
|
|
print("""Usage is 'python databaseReset.py <command>'
|
2013-06-24 01:31:14 +01:00
|
|
|
where command is:
|
2020-04-14 20:19:41 +01:00
|
|
|
reset - this is normal usage, clear database and reread everything from files - time-consuming
|
|
|
|
caves - read in the caves
|
|
|
|
logbooks - read in just the logbooks
|
|
|
|
people - read in the people from folk.csv
|
|
|
|
QMs - read in the QM files
|
|
|
|
reload_db - clear database i.e. delete everything
|
|
|
|
scans - NOT the scanned surveynotes ?!
|
|
|
|
survex - read in the survex files - all the survex blocks
|
|
|
|
surveys - read in the scanned surveynotes
|
|
|
|
tunnel - read in the Tunnel files - which scans the surveyscans too
|
|
|
|
|
2020-04-15 04:09:28 +01:00
|
|
|
survexpos - just the Pos out of the survex files (not part of reset)
|
|
|
|
|
2020-04-14 20:19:41 +01:00
|
|
|
resetend - (archaic?)
|
|
|
|
writecaves - *disabled* (archaic?)
|
2020-04-12 22:29:30 +01:00
|
|
|
autologbooks - read in autologbooks (what are these?)
|
2020-02-19 22:52:00 +00:00
|
|
|
dumplogbooks - write out autologbooks (not working?)
|
2020-04-15 04:09:28 +01:00
|
|
|
test - testing...
|
2019-02-24 13:03:34 +00:00
|
|
|
""")
|
2012-06-10 14:59:21 +01:00
|
|
|
|
2011-07-11 02:10:22 +01:00
|
|
|
if __name__ == "__main__":
|
2018-06-16 19:00:26 +01:00
|
|
|
import troggle.core.models
|
2011-07-11 02:10:22 +01:00
|
|
|
import sys
|
2018-06-17 02:23:02 +01:00
|
|
|
import django
|
|
|
|
django.setup()
|
2020-04-14 20:46:45 +01:00
|
|
|
|
2020-04-15 04:09:28 +01:00
|
|
|
runlabel = sys.argv[len(sys.argv)-1]
|
|
|
|
jq = JobQueue(runlabel)
|
|
|
|
|
|
|
|
|
|
|
|
if "test" in sys.argv:
|
|
|
|
jq.enq("test",importtest)
|
|
|
|
jq.enq("caves",importtest)
|
|
|
|
jq.enq("people",importtest)
|
|
|
|
elif "caves" in sys.argv:
|
|
|
|
jq.enq("caves",import_caves)
|
2020-04-14 20:46:45 +01:00
|
|
|
elif "logbooks" in sys.argv:
|
|
|
|
# management.call_command('syncdb', interactive=False) # this sets the path so that import settings works in import_survex
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("logbooks",import_logbooks)
|
2013-07-02 00:34:58 +01:00
|
|
|
elif "people" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("logbooks",import_people)
|
2011-07-11 02:10:22 +01:00
|
|
|
elif "QMs" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("QMs",import_QMs)
|
2020-04-14 20:46:45 +01:00
|
|
|
elif "reload_db" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("reload_db",reload_db)
|
2011-07-11 02:10:22 +01:00
|
|
|
elif "reset" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("reload",reload_db)
|
|
|
|
jq.enq("makedirs",make_dirs)
|
|
|
|
jq.enq("redirect",pageredirects)
|
|
|
|
jq.enq("caves",import_caves)
|
|
|
|
jq.enq("logbooks",import_people)
|
|
|
|
jq.enq("scans",import_surveyscans)
|
|
|
|
jq.enq("logbooks",import_logbooks)
|
|
|
|
jq.enq("QMs",import_QMs)
|
|
|
|
jq.enq("survex",import_survex)
|
|
|
|
jq.enq("tunnel",import_tunnelfiles)
|
|
|
|
jq.enq("surveys",import_surveys)
|
2020-04-14 20:46:45 +01:00
|
|
|
elif "scans" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("scans",import_surveyscans)
|
2011-07-11 02:10:22 +01:00
|
|
|
elif "survex" in sys.argv:
|
2019-03-30 13:58:38 +00:00
|
|
|
# management.call_command('syncdb', interactive=False) # this sets the path so that import settings works in import_survex
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("survex",import_survex)
|
2012-06-10 14:59:21 +01:00
|
|
|
elif "survexpos" in sys.argv:
|
2019-03-30 13:58:38 +00:00
|
|
|
# management.call_command('syncdb', interactive=False) # this sets the path so that import settings works in import_survex
|
2012-06-10 14:59:21 +01:00
|
|
|
import parsers.survex
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("survexpos",parsers.survex.LoadPos)
|
2019-02-24 14:29:14 +00:00
|
|
|
elif "surveys" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("surveys",import_surveys)
|
2020-04-14 20:46:45 +01:00
|
|
|
elif "tunnel" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("tunnel",import_tunnelfiles)
|
2013-06-24 01:31:14 +01:00
|
|
|
elif "help" in sys.argv:
|
|
|
|
usage()
|
2020-04-14 20:46:45 +01:00
|
|
|
elif "resetend" in sys.argv:
|
2020-04-15 04:09:28 +01:00
|
|
|
jq.enq("QMs",import_QMs)
|
|
|
|
jq.enq("tunnel",import_tunnelfiles)
|
|
|
|
jq.enq("surveys",import_surveys)
|
2020-04-14 20:46:45 +01:00
|
|
|
#import_descriptions() # no longer present
|
|
|
|
#parse_descriptions() # no longer present
|
|
|
|
# elif "writeCaves" in sys.argv:
|
|
|
|
# writeCaves() # no longer present
|
|
|
|
elif "autologbooks" in sys.argv:
|
|
|
|
import_auto_logbooks()
|
|
|
|
elif "dumplogbooks" in sys.argv:
|
|
|
|
dumplogbooks()
|
2020-02-21 14:00:33 +00:00
|
|
|
else:
|
2019-02-24 13:03:34 +00:00
|
|
|
print("%s not recognised" % sys.argv)
|
2013-06-24 01:31:14 +01:00
|
|
|
usage()
|
2020-04-15 04:09:28 +01:00
|
|
|
|
|
|
|
jq.run()
|