+# -*- coding: utf-8 -*-
+#
+# This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
import json
import os
-from zipfile import ZipFile
from urllib import quote
from django.conf import settings
-from django.http import HttpResponse, HttpResponseRedirect, HttpResponseForbidden, Http404
+from django.http import HttpResponse, Http404
from django.utils.decorators import method_decorator
from django.views.decorators.vary import vary_on_headers
-from django.views.generic import FormView, View, RedirectView
+from django.views.generic import FormView
+from unidecode import unidecode
+
from .forms import UploadForm
else:
def thumbnail(relpath):
try:
- return default.backend.get_thumbnail(relpath, "x50").url
+ thumb = default.backend.get_thumbnail(relpath, "x50")
+ if not thumb.exists():
+ # That's not an image. No thumb.
+ return None
+ return thumb.url
except IOError:
# That's not an image. No thumb.
return None
content = json.dumps(obj)
super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs)
+
class UploadViewMixin(object):
def get_safe_path(self, filename=""):
"""Finds absolute filesystem path of the browsed dir of file.
raise Http404
return path
+
class UploadView(UploadViewMixin, FormView):
template_name = "fileupload/picture_form.html"
form_class = UploadForm
directory = os.path.dirname(directory)
now_path = (os.path.dirname(now_path))
while directory:
- crumbs.insert(0, (os.path.basename(directory), now_path+'/'))
+ crumbs.insert(0, (os.path.basename(directory), now_path + '/'))
directory = os.path.dirname(directory)
now_path = os.path.dirname(now_path)
crumbs.insert(0, ('media', now_path))
quote(f.encode('utf-8'))),
'delete_type': "DELETE"
})
- thumbnail_url = thumbnail(self.get_directory() + f),
files.append(file_info)
return JSONResponse(files)
else:
os.makedirs(path)
data = []
for f in flist:
+ f.name = unidecode(f.name)
with open(self.get_safe_path(f.name), 'w') as destination:
for chunk in f.chunks():
destination.write(chunk)
'name': f.name,
'url': self.get_url(f.name),
'thumbnail_url': thumbnail(self.get_directory() + f.name),
- 'delete_url': "%s?file=%s" % (
- self.request.get_full_path(),
- quote(f.name.encode('utf-8'))),
+ 'delete_url': "%s?file=%s" % (
+ self.request.get_full_path(),
+ quote(f.name.encode('utf-8'))),
'delete_type': "DELETE"
})
response = JSONResponse(data)
response = JSONResponse(True)
response['Content-Disposition'] = 'inline; filename=files.json'
return response
-
-
-class PackageView(UploadViewMixin, RedirectView):
- def dispatch(self, request, *args, **kwargs):
- self.object = self.get_object(request, *args, **kwargs)
- path = self.get_safe_path()
- with ZipFile(os.path.join(path, 'package.zip'), 'w') as zip_file:
- for f in os.listdir(path):
- if f == 'package.zip':
- continue
- zip_file.write(os.path.join(path, f), arcname = f)
- return super(PackageView, self).dispatch(request, *args, **kwargs)