2021-05-05 00:35:10 +01:00
|
|
|
import re, os
|
|
|
|
import subprocess
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from django import forms
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.urls import reverse
|
|
|
|
from django.db.models import Q
|
|
|
|
from django.http import HttpResponse, HttpResponseRedirect
|
|
|
|
from django.shortcuts import render
|
|
|
|
from django.template import Context, loader
|
|
|
|
from django.core.files.storage import FileSystemStorage, default_storage
|
|
|
|
|
|
|
|
from troggle.parsers.imports import import_caves, import_people, import_surveyscans
|
|
|
|
from troggle.parsers.imports import import_logbooks, import_QMs, import_drawingsfiles, import_survex
|
|
|
|
# from databaseReset import reinit_db # don't do this. databaseRest runs code *at import time*
|
|
|
|
from troggle.core.models.troggle import Expedition, Person, PersonExpedition
|
|
|
|
from troggle.core.models.caves import LogbookEntry, QM, Cave, PersonTrip
|
|
|
|
from troggle.core.models.survex import DrawingFile
|
|
|
|
from .auth import login_required_if_public
|
|
|
|
|
|
|
|
'''File upload 'views'
|
|
|
|
'''
|
|
|
|
|
|
|
|
todo = '''
|
|
|
|
-Move upload forms to proper file locations
|
|
|
|
'''
|
|
|
|
|
|
|
|
class FilesForm(forms.Form): # not a model-form, just a form-form
|
|
|
|
uploadfiles = forms.FileField()
|
|
|
|
|
|
|
|
@login_required_if_public
|
|
|
|
def scanupload(request, wallet=None):
|
|
|
|
'''Upload scanned image files into a wallet on /expofiles
|
|
|
|
This does NOT use a Django model linked to a Django form. Just a simple Django form.
|
|
|
|
'''
|
|
|
|
filesaved = False
|
|
|
|
actual_saved = []
|
|
|
|
# print(f'! - FORM scanupload - start {wallet}')
|
|
|
|
if wallet is None:
|
|
|
|
wallet = "2021#01" # improve this later
|
|
|
|
if not re.match('(19|20)\d\d:\d\d', wallet):
|
|
|
|
wallet = "2021:01" # improve this later
|
|
|
|
|
|
|
|
year = wallet[:4]
|
|
|
|
if int(year) < 1977:
|
|
|
|
year = "1977"
|
|
|
|
if int(year) > 2050:
|
|
|
|
year = "2050"
|
|
|
|
nexty = f'{int(year)+1}'
|
|
|
|
prevy = f'{int(year)-1}'
|
|
|
|
|
|
|
|
wnumber = wallet[5:]
|
|
|
|
next = f'{int(wnumber)+1:02d}'
|
|
|
|
prev = f'{int(wnumber)-1:02d}'
|
|
|
|
|
|
|
|
if int(wnumber) == 0:
|
|
|
|
prev = f'{int(wnumber):02d}'
|
|
|
|
|
|
|
|
context = {'year': year, 'prev': prev, 'next': next, 'prevy': prevy, 'nexty': nexty}
|
|
|
|
|
|
|
|
wallet = wallet.replace(':','#')
|
|
|
|
dirpath = Path(settings.SURVEY_SCANS, year, wallet)
|
|
|
|
|
|
|
|
form = FilesForm()
|
|
|
|
|
|
|
|
if request.method == 'POST':
|
|
|
|
form = FilesForm(request.POST,request.FILES)
|
|
|
|
if form.is_valid():
|
|
|
|
f = request.FILES["uploadfiles"]
|
|
|
|
multiple = request.FILES.getlist('uploadfiles')
|
|
|
|
fs = FileSystemStorage(os.path.join(settings.SURVEY_SCANS, year, wallet))
|
|
|
|
|
|
|
|
actual_saved = []
|
|
|
|
if multiple:
|
|
|
|
for f in multiple:
|
|
|
|
actual_saved.append( fs.save(f.name, content=f) )
|
|
|
|
# print(f'! - FORM scanupload multiple {actual_saved}')
|
|
|
|
filesaved = True
|
|
|
|
|
|
|
|
files = []
|
|
|
|
dirs = []
|
|
|
|
# print(f'! - FORM scanupload - start {wallet} {dirpath}')
|
|
|
|
try:
|
|
|
|
for f in dirpath.iterdir():
|
|
|
|
if f.is_dir():
|
|
|
|
dirs.append(f.name)
|
|
|
|
if f.is_file():
|
|
|
|
if f.name != 'contents.json' and f.name != 'walletindex.html':
|
|
|
|
files.append(f.name)
|
|
|
|
except FileNotFoundError:
|
|
|
|
files.append('(no wallet yet - would be created)')
|
|
|
|
if len(files) ==0 :
|
|
|
|
files.append('(no image files in wallet)')
|
|
|
|
else:
|
|
|
|
files = sorted(files)
|
|
|
|
|
|
|
|
if dirs:
|
|
|
|
dirs = sorted(dirs)
|
|
|
|
|
|
|
|
return render(request, 'scanuploadform.html',
|
|
|
|
{'form': form, 'wallet': wallet, **context, 'files': files, 'dirs': dirs, 'filesaved': filesaved, 'actual_saved': actual_saved})
|
|
|
|
|
|
|
|
@login_required_if_public
|
2021-10-31 17:25:45 +00:00
|
|
|
def dwgupload(request, folder=None, gitdisable='no'):
|
2021-05-05 00:35:10 +01:00
|
|
|
'''Upload DRAWING files (tunnel or therion) into the upload folder in :drawings:
|
|
|
|
This does NOT use a Django model linked to a Django form. Just a simple Django form.
|
|
|
|
|
|
|
|
We use get_or_create instead of simply creating a new object in case someone uploads the same file
|
|
|
|
several times in one session, and expects them to be overwritten in the database. Although
|
2022-03-05 20:29:01 +00:00
|
|
|
the actual file will be duplicated in the filesystem with different random name ending.
|
2021-05-05 00:35:10 +01:00
|
|
|
'''
|
|
|
|
def dwgvalid(name):
|
2022-03-05 20:29:01 +00:00
|
|
|
if name in [ '.gitignore', ]:
|
2021-05-05 00:35:10 +01:00
|
|
|
return False
|
2022-03-05 20:29:01 +00:00
|
|
|
if Path(name).suffix.lower() in ['.xml', '.th', '.th2', '', '.svg', '.jpg', '.pdf', '.jpeg', '.txt']:
|
2021-10-31 17:25:45 +00:00
|
|
|
return True # dangerous, we should check the actual file binary signature
|
2021-05-05 00:35:10 +01:00
|
|
|
return False
|
|
|
|
|
|
|
|
filesaved = False
|
|
|
|
actual_saved = []
|
|
|
|
refused = []
|
|
|
|
doesnotexist = ''
|
2021-10-31 17:25:45 +00:00
|
|
|
# print(f'! - FORM dwgupload - start "{folder}" - gitdisable "{gitdisable}"')
|
2021-05-05 00:35:10 +01:00
|
|
|
if folder is None:
|
|
|
|
folder = "" # improve this later
|
|
|
|
dirpath = Path(settings.DRAWINGS_DATA)
|
|
|
|
urlfile = '/dwgdataraw'
|
|
|
|
urldir = '/dwgupload'
|
|
|
|
else:
|
|
|
|
dirpath = Path(settings.DRAWINGS_DATA, folder)
|
|
|
|
urlfile = Path('/dwgdataraw/') / folder
|
|
|
|
urldir = Path('/dwgupload/') / folder
|
|
|
|
|
|
|
|
form = FilesForm()
|
|
|
|
|
|
|
|
if request.method == 'POST':
|
|
|
|
form = FilesForm(request.POST,request.FILES)
|
|
|
|
if form.is_valid():
|
|
|
|
f = request.FILES["uploadfiles"]
|
|
|
|
multiple = request.FILES.getlist('uploadfiles')
|
|
|
|
fs = FileSystemStorage(os.path.join(settings.DRAWINGS_DATA, folder))
|
|
|
|
|
|
|
|
actual_saved = []
|
|
|
|
refused = []
|
2022-03-05 17:05:15 +00:00
|
|
|
|
|
|
|
# GIT see also core/views/expo.py editexpopage()
|
|
|
|
# GIT see also core/models/cave.py writetrogglefile()
|
2021-10-31 17:25:45 +00:00
|
|
|
if gitdisable != 'yes': # set in url 'dwguploadnogit/'
|
|
|
|
git = settings.GIT
|
|
|
|
else:
|
|
|
|
git = 'echo'
|
|
|
|
|
2021-05-05 00:35:10 +01:00
|
|
|
if multiple:
|
|
|
|
for f in multiple:
|
|
|
|
if dwgvalid(f.name):
|
|
|
|
saved_filename = fs.save(f.name, content=f)
|
|
|
|
actual_saved.append(saved_filename)
|
2021-10-31 17:25:45 +00:00
|
|
|
if gitdisable != 'yes':
|
|
|
|
subprocess.call([git, "add", saved_filename], cwd=dirpath)
|
2021-05-05 00:35:10 +01:00
|
|
|
dwgfile, created = DrawingFile.objects.get_or_create(dwgpath=saved_filename, dwgname=Path(f.name).stem, filesize=f.size)
|
|
|
|
dwgfile.save()
|
|
|
|
else:
|
|
|
|
refused.append(f.name)
|
2022-03-05 20:29:01 +00:00
|
|
|
print(f'REFUSED {f.name}')
|
2021-10-31 17:25:45 +00:00
|
|
|
if actual_saved: # maybe all were refused by the suffix test in dwgvalid()
|
|
|
|
filesaved = True
|
|
|
|
if gitdisable != 'yes':
|
2022-03-05 20:29:01 +00:00
|
|
|
subprocess.call([git, "commit", "-m", f'Drawings upload - {list(multiple)}'], cwd=dirpath)
|
2021-10-31 17:25:45 +00:00
|
|
|
|
|
|
|
|
2021-05-05 00:35:10 +01:00
|
|
|
files = []
|
|
|
|
dirs = []
|
2021-10-31 17:25:45 +00:00
|
|
|
# print(f'! - FORM dwgupload - start {folder} \n"{dirpath}" \n"{dirpath.parent}" \n"{dirpath.exists()}"')
|
2021-05-05 00:35:10 +01:00
|
|
|
try:
|
|
|
|
for f in dirpath.iterdir():
|
|
|
|
if f.is_dir():
|
|
|
|
if f.name not in ['.git' ]:
|
|
|
|
dirs.append(f.name)
|
|
|
|
continue
|
|
|
|
if f.is_file():
|
|
|
|
if dwgvalid(f.name):
|
|
|
|
files.append(f.name)
|
|
|
|
continue
|
|
|
|
except FileNotFoundError:
|
|
|
|
doesnotexist = True
|
|
|
|
if files:
|
|
|
|
files = sorted(files)
|
|
|
|
|
|
|
|
if dirs:
|
|
|
|
dirs = sorted(dirs)
|
|
|
|
|
|
|
|
return render(request, 'dwguploadform.html',
|
|
|
|
{'form': form, 'doesnotexist': doesnotexist, 'urlfile': urlfile, 'urldir': urldir,'folder': folder, 'files': files, 'dirs': dirs, 'filesaved': filesaved, 'actual_saved': actual_saved, 'refused': refused})
|