Private
Public Access
1
0

Processing of zipped files

This commit is contained in:
Sander Roosendaal
2016-12-18 16:57:42 +01:00
parent f5236d429e
commit 4bda2f3539
4 changed files with 17 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ class DocumentsForm(forms.Form):
('ergdata' , 'ErgData CSV'), ('ergdata' , 'ErgData CSV'),
('ergstick' , 'ErgStick CSV'), ('ergstick' , 'ErgStick CSV'),
('painsleddesktop' , 'Painsled Desktop CSV'), ('painsleddesktop' , 'Painsled Desktop CSV'),
('zip','Zipped file'),
) )
title = forms.CharField(required=False) title = forms.CharField(required=False)
file = forms.FileField(required=True, file = forms.FileField(required=True,

View File

@@ -100,6 +100,14 @@ def make_new_workout_from_email(rr,f2,name,cntr=0):
workouttype = 'rower' workouttype = 'rower'
f2 = f2.name f2 = f2.name
fileformat = get_file_type('media/'+f2) fileformat = get_file_type('media/'+f2)
if len(fileformat)==3 and fileformat[0]=='zip':
f_to_be_deleted = f2
with zipfile.ZipFile(f2) as z:
f2 = z.extract(z.namelist()[0],path='media/')
fileformat = fileformat[2]
os.remove(f_to_be_deleted)
if fileformat == 'unknown': if fileformat == 'unknown':
if settings.DEBUG: if settings.DEBUG:
res = handle_sendemail_unrecognized.delay(f2, res = handle_sendemail_unrecognized.delay(f2,

View File

@@ -1,4 +1,5 @@
import time import time
import zipfile
import operator import operator
from django.views.generic.base import TemplateView from django.views.generic.base import TemplateView
from django.db.models import Q from django.db.models import Q
@@ -3694,6 +3695,12 @@ def workout_upload_view(request,message=""):
# new # new
fileformat = get_file_type(f2) fileformat = get_file_type(f2)
if len(fileformat)==3 and fileformat[0]=='zip':
f_to_be_deleted = f2
with zipfile.ZipFile(f2) as z:
f2 = z.extract(z.namelist()[0],path='media/')
fileformat = fileformat[2]
os.remove(f_to_be_deleted)
if fileformat == 'unknown': if fileformat == 'unknown':
message = "We couldn't recognize the file type" message = "We couldn't recognize the file type"

View File

@@ -48,7 +48,7 @@ def format_time(x,pos=None):
def validate_file_extension(value): def validate_file_extension(value):
import os import os
ext = os.path.splitext(value.name)[1] ext = os.path.splitext(value.name)[1]
valid_extensions = ['.tcx','.csv','.TCX','.CSV','.fit','.FIT'] valid_extensions = ['.tcx','.csv','.TCX','.CSV','.fit','.FIT','.zip','.ZIP']
if not ext in valid_extensions: if not ext in valid_extensions:
raise ValidationError(u'File not supported!') raise ValidationError(u'File not supported!')