2009-05-13 05:16:55 +01:00
|
|
|
import os
|
2009-05-13 06:15:48 +01:00
|
|
|
import time
|
2009-05-13 05:16:55 +01:00
|
|
|
import settings
|
|
|
|
os.environ['PYTHONPATH'] = settings.PYTHON_PATH
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
|
|
|
from django.core import management
|
|
|
|
from django.db import connection
|
|
|
|
from django.contrib.auth.models import User
|
2009-05-14 06:19:46 +01:00
|
|
|
from django.http import HttpResponse
|
2009-05-13 06:15:48 +01:00
|
|
|
|
2009-05-21 22:55:08 +01:00
|
|
|
|
2009-05-21 20:24:21 +01:00
|
|
|
|
2009-05-13 06:15:48 +01:00
|
|
|
def reload_db():
|
2011-05-01 19:32:41 +01:00
|
|
|
if settings.DATABASE_ENGINE == 'sqlite3':
|
|
|
|
try:
|
|
|
|
os.remove(settings.DATABASE_NAME)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("DROP DATABASE %s" % settings.DATABASE_NAME)
|
|
|
|
cursor.execute("CREATE DATABASE %s" % settings.DATABASE_NAME)
|
|
|
|
cursor.execute("ALTER DATABASE %s CHARACTER SET=utf8" % settings.DATABASE_NAME)
|
|
|
|
cursor.execute("USE %s" % settings.DATABASE_NAME)
|
2009-05-21 19:47:19 +01:00
|
|
|
management.call_command('syncdb', interactive=False)
|
2009-08-29 18:33:28 +01:00
|
|
|
user = User.objects.create_user('expo', 'goatchurch@gmail.com', 'gosser')
|
2009-05-13 06:15:48 +01:00
|
|
|
user.is_staff = True
|
|
|
|
user.is_superuser = True
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
def make_dirs():
|
|
|
|
"""Make directories that troggle requires"""
|
2009-05-21 20:17:07 +01:00
|
|
|
#should also deal with permissions here.
|
2009-05-13 06:15:48 +01:00
|
|
|
if not os.path.isdir(settings.PHOTOS_ROOT):
|
|
|
|
os.mkdir(settings.PHOTOS_ROOT)
|
|
|
|
|
2009-08-29 18:34:18 +01:00
|
|
|
|
2009-08-29 18:35:02 +01:00
|
|
|
|
2009-05-13 06:15:48 +01:00
|
|
|
def import_cavetab():
|
|
|
|
import parsers.cavetab
|
2009-08-01 07:31:27 +01:00
|
|
|
print "importing cavetab"
|
2009-05-21 20:17:07 +01:00
|
|
|
parsers.cavetab.LoadCaveTab()
|
2009-05-13 06:15:48 +01:00
|
|
|
|
|
|
|
def import_people():
|
|
|
|
import parsers.people
|
|
|
|
parsers.people.LoadPersonsExpos()
|
|
|
|
|
|
|
|
def import_logbooks():
|
2009-05-22 01:50:16 +01:00
|
|
|
# The below line was causing errors I didn't understand (it said LOGFILE was a string), and I couldn't be bothered to figure
|
|
|
|
# what was going on so I just catch the error with a try. - AC 21 May
|
|
|
|
try:
|
|
|
|
settings.LOGFILE.write('\nBegun importing logbooks at ' + time.asctime() +'\n'+'-'*60)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2009-05-13 06:15:48 +01:00
|
|
|
import parsers.logbooks
|
|
|
|
parsers.logbooks.LoadLogbooks()
|
|
|
|
|
|
|
|
def import_survex():
|
|
|
|
import parsers.survex
|
|
|
|
parsers.survex.LoadAllSurvexBlocks()
|
|
|
|
|
|
|
|
def import_QMs():
|
|
|
|
import parsers.QMs
|
|
|
|
|
|
|
|
def import_surveys():
|
|
|
|
import parsers.surveys
|
2009-05-15 03:29:19 +01:00
|
|
|
parsers.surveys.parseSurveys(logfile=settings.LOGFILE)
|
2009-05-13 06:15:48 +01:00
|
|
|
|
2009-09-10 22:07:31 +01:00
|
|
|
def import_surveyscans():
|
|
|
|
import parsers.surveys
|
2009-09-14 22:52:46 +01:00
|
|
|
parsers.surveys.LoadListScans()
|
2009-09-10 22:07:31 +01:00
|
|
|
|
|
|
|
|
2009-07-04 16:42:17 +01:00
|
|
|
def import_descriptions():
|
|
|
|
import parsers.descriptions
|
|
|
|
parsers.descriptions.getDescriptions()
|
|
|
|
|
|
|
|
def parse_descriptions():
|
|
|
|
import parsers.descriptions
|
|
|
|
parsers.descriptions.parseDescriptions()
|
2009-07-16 05:37:33 +01:00
|
|
|
parsers.descriptions.parseDescriptionsOnCaveObjects()
|
2009-07-04 16:42:17 +01:00
|
|
|
|
2009-09-11 23:56:47 +01:00
|
|
|
def import_tunnelfiles():
|
|
|
|
import parsers.surveys
|
2009-09-13 17:27:46 +01:00
|
|
|
parsers.surveys.LoadTunnelFiles()
|
2009-09-11 23:56:47 +01:00
|
|
|
|
|
|
|
|
2009-05-13 06:15:48 +01:00
|
|
|
def reset():
|
2009-05-21 19:47:19 +01:00
|
|
|
""" Wipe the troggle database and import everything from legacy data
|
|
|
|
"""
|
2009-05-13 06:15:48 +01:00
|
|
|
reload_db()
|
|
|
|
make_dirs()
|
|
|
|
import_cavetab()
|
|
|
|
import_people()
|
2009-09-10 22:07:31 +01:00
|
|
|
import_surveyscans()
|
2009-05-13 06:15:48 +01:00
|
|
|
import_survex()
|
2009-08-01 07:31:27 +01:00
|
|
|
import_logbooks()
|
2009-05-13 06:15:48 +01:00
|
|
|
import_QMs()
|
2009-09-11 23:56:47 +01:00
|
|
|
import_tunnelfiles()
|
|
|
|
#import_surveys()
|
2009-07-04 16:42:17 +01:00
|
|
|
import_descriptions()
|
|
|
|
parse_descriptions()
|
2009-05-14 06:19:46 +01:00
|
|
|
|
2009-07-04 16:42:17 +01:00
|
|
|
def resetdesc():
|
|
|
|
""" Wipe the troggle database and import descriptions
|
|
|
|
"""
|
|
|
|
import core.models
|
|
|
|
for desc in core.models.CaveDescription.objects.all():
|
|
|
|
desc.delete()
|
|
|
|
import_descriptions()
|
|
|
|
parse_descriptions()
|
|
|
|
|
2009-05-14 06:19:46 +01:00
|
|
|
def export_cavetab():
|
|
|
|
from export import tocavetab
|
|
|
|
outfile=file(os.path.join(settings.EXPOWEB, "noinfo", "CAVETAB2.CSV"),'w')
|
|
|
|
tocavetab.writeCaveTab(outfile)
|
|
|
|
outfile.close()
|
2009-07-04 16:42:17 +01:00
|
|
|
|
2011-05-01 19:32:41 +01:00
|
|
|
def import_auto_logbooks():
|
|
|
|
import parsers.logbooks
|
|
|
|
import os
|
|
|
|
for pt in core.models.PersonTrip.objects.all():
|
|
|
|
pt.delete()
|
|
|
|
for lbe in core.models.LogbookEntry.objects.all():
|
|
|
|
lbe.delete()
|
|
|
|
for expedition in core.models.Expedition.objects.all():
|
|
|
|
directory = os.path.join(settings.EXPOWEB,
|
|
|
|
"years",
|
|
|
|
expedition.year,
|
|
|
|
"autologbook")
|
|
|
|
for root, dirs, filenames in os.walk(directory):
|
|
|
|
for filename in filenames:
|
|
|
|
print os.path.join(root, filename)
|
|
|
|
parsers.logbooks.parseAutoLogBookEntry(os.path.join(root, filename))
|
|
|
|
|
|
|
|
#Temporary function until definative source of data transfered.
|
|
|
|
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
|
|
|
|
for lbe in core.models.LogbookEntry.objects.all():
|
|
|
|
dateStr = lbe.date.strftime("%Y-%m-%d")
|
|
|
|
directory = os.path.join(settings.EXPOWEB,
|
|
|
|
"years",
|
|
|
|
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:
|
|
|
|
print lbe.cave.reference()
|
|
|
|
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()
|
|
|
|
|
2009-07-04 16:42:17 +01:00
|
|
|
if __name__ == "__main__":
|
2009-08-01 07:31:27 +01:00
|
|
|
import core.models
|
2009-06-28 20:47:11 +01:00
|
|
|
import sys
|
2009-07-04 16:42:17 +01:00
|
|
|
if "desc" in sys.argv:
|
|
|
|
resetdesc()
|
2009-09-10 22:07:31 +01:00
|
|
|
elif "scans" in sys.argv:
|
|
|
|
import_surveyscans()
|
2011-05-01 19:32:41 +01:00
|
|
|
elif "QMs" in sys.argv:
|
|
|
|
import_QMs()
|
2009-09-11 23:56:47 +01:00
|
|
|
elif "tunnel" in sys.argv:
|
|
|
|
import_tunnelfiles()
|
2009-07-04 16:42:17 +01:00
|
|
|
elif "reset" in sys.argv:
|
2009-06-28 20:47:11 +01:00
|
|
|
reset()
|
2009-08-01 07:31:27 +01:00
|
|
|
elif "survex" in sys.argv:
|
|
|
|
management.call_command('syncdb', interactive=False) # this sets the path so that import settings works in import_survex
|
2009-08-05 11:58:36 +01:00
|
|
|
import_survex()
|
|
|
|
|
|
|
|
elif "logbooks" in sys.argv:
|
|
|
|
management.call_command('syncdb', interactive=False) # this sets the path so that import settings works in import_survex
|
2009-08-01 07:31:27 +01:00
|
|
|
import_logbooks()
|
2011-05-01 19:32:41 +01:00
|
|
|
elif "autologbooks" in sys.argv:
|
|
|
|
import_auto_logbooks()
|
|
|
|
elif "dumplogbooks" in sys.argv:
|
|
|
|
dumplogbooks()
|
2009-06-28 20:47:11 +01:00
|
|
|
else:
|
|
|
|
print "Do 'python databaseReset.py reset'"
|
2009-05-14 06:19:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-06-28 20:47:11 +01:00
|
|
|
|