2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
# This file contains all the views that concern the page model
|
2017-06-12 07:42:03 +00:00
|
|
|
from django.shortcuts import redirect
|
2016-11-09 08:13:57 +00:00
|
|
|
from django.views.generic import ListView, DetailView, TemplateView
|
2017-06-12 07:42:03 +00:00
|
|
|
from django.views.generic.edit import UpdateView, FormMixin, DeleteView
|
2016-11-09 08:13:57 +00:00
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
2016-08-10 03:48:06 +00:00
|
|
|
from django.forms.models import modelform_factory
|
|
|
|
from django.conf import settings
|
2017-03-27 13:16:01 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2016-08-10 03:48:06 +00:00
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.core.servers.basehttp import FileWrapper
|
|
|
|
from django.core.urlresolvers import reverse
|
2017-06-12 07:42:03 +00:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2016-08-10 03:48:06 +00:00
|
|
|
from django import forms
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
from ajax_select import make_ajax_field
|
2016-12-18 16:59:08 +00:00
|
|
|
|
2016-12-08 18:47:28 +00:00
|
|
|
from core.models import SithFile, RealGroup, Notification
|
2017-06-12 07:42:03 +00:00
|
|
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, can_view, not_found
|
2016-12-18 10:55:45 +00:00
|
|
|
from counter.models import Counter
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-20 10:56:33 +00:00
|
|
|
def send_file(request, file_id, file_class=SithFile, file_attr="file"):
|
2016-08-10 03:48:06 +00:00
|
|
|
"""
|
|
|
|
Send a file through Django without loading the whole file into
|
|
|
|
memory at once. The FileWrapper will turn the file object into an
|
|
|
|
iterator for chunks of 8KB.
|
|
|
|
"""
|
2016-10-26 17:21:19 +00:00
|
|
|
f = file_class.objects.filter(id=file_id).first()
|
2016-11-30 08:28:22 +00:00
|
|
|
if f is None or not f.file:
|
2016-08-10 03:48:06 +00:00
|
|
|
return not_found(request)
|
2016-09-26 09:17:00 +00:00
|
|
|
if not (can_view(f, request.user) or
|
|
|
|
('counter_token' in request.session.keys() and
|
2017-06-12 07:42:03 +00:00
|
|
|
request.session['counter_token'] and # check if not null for counters that have no token set
|
2016-09-26 09:17:00 +00:00
|
|
|
Counter.objects.filter(token=request.session['counter_token']).exists())
|
|
|
|
):
|
2016-08-10 03:48:06 +00:00
|
|
|
raise PermissionDenied
|
2016-11-20 10:56:33 +00:00
|
|
|
name = f.__getattribute__(file_attr).name
|
2017-03-30 17:13:47 +00:00
|
|
|
filepath = os.path.join(settings.MEDIA_ROOT, name)
|
|
|
|
with open(filepath.encode('utf-8'), 'rb') as filename:
|
2016-08-10 03:48:06 +00:00
|
|
|
wrapper = FileWrapper(filename)
|
|
|
|
response = HttpResponse(wrapper, content_type=f.mime_type)
|
2017-03-30 17:13:47 +00:00
|
|
|
response['Content-Length'] = os.path.getsize(filepath.encode('utf-8'))
|
2016-11-25 17:59:22 +00:00
|
|
|
response['Content-Disposition'] = ('inline; filename="%s"' % f.name).encode('utf-8')
|
2016-08-10 03:48:06 +00:00
|
|
|
return response
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
class AddFilesForm(forms.Form):
|
2016-08-10 03:48:06 +00:00
|
|
|
folder_name = forms.CharField(label=_("Add a new folder"), max_length=30, required=False)
|
|
|
|
file_field = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}), label=_("Files"),
|
2017-06-12 07:42:03 +00:00
|
|
|
required=False)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def process(self, parent, owner, files):
|
2016-12-08 18:47:28 +00:00
|
|
|
notif = False
|
2016-08-10 03:48:06 +00:00
|
|
|
try:
|
|
|
|
if self.cleaned_data['folder_name'] != "":
|
|
|
|
folder = SithFile(parent=parent, name=self.cleaned_data['folder_name'], owner=owner)
|
|
|
|
folder.clean()
|
|
|
|
folder.save()
|
2016-12-08 18:47:28 +00:00
|
|
|
notif = True
|
2016-08-10 03:48:06 +00:00
|
|
|
except Exception as e:
|
|
|
|
self.add_error(None, _("Error creating folder %(folder_name)s: %(msg)s") %
|
2017-06-12 07:42:03 +00:00
|
|
|
{'folder_name': self.cleaned_data['folder_name'], 'msg': repr(e)})
|
2016-08-10 03:48:06 +00:00
|
|
|
for f in files:
|
|
|
|
new_file = SithFile(parent=parent, name=f.name, file=f, owner=owner, is_folder=False,
|
2017-06-12 07:42:03 +00:00
|
|
|
mime_type=f.content_type, size=f._size)
|
2016-08-10 03:48:06 +00:00
|
|
|
try:
|
|
|
|
new_file.clean()
|
|
|
|
new_file.save()
|
2016-12-08 18:47:28 +00:00
|
|
|
notif = True
|
2016-08-10 03:48:06 +00:00
|
|
|
except Exception as e:
|
2016-08-31 00:05:04 +00:00
|
|
|
self.add_error(None, _("Error uploading file %(file_name)s: %(msg)s") % {'file_name': f, 'msg': repr(e)})
|
2016-12-08 18:47:28 +00:00
|
|
|
if notif:
|
2016-12-12 23:45:20 +00:00
|
|
|
for u in RealGroup.objects.filter(id=settings.SITH_GROUP_COM_ADMIN_ID).first().users.all():
|
2016-12-14 08:11:26 +00:00
|
|
|
if not u.notifications.filter(type="FILE_MODERATION", viewed=False).exists():
|
2016-12-09 23:06:17 +00:00
|
|
|
Notification(user=u, url=reverse("core:file_moderation"), type="FILE_MODERATION").save()
|
2016-12-08 18:47:28 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 14:23:12 +00:00
|
|
|
class FileListView(ListView):
|
2016-08-10 03:48:06 +00:00
|
|
|
template_name = 'core/file_list.jinja'
|
|
|
|
context_object_name = "file_list"
|
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
return SithFile.objects.filter(parent=None)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileListView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['popup'] = ""
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
kwargs['popup'] = 'popup'
|
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
class FileEditView(CanEditMixin, UpdateView):
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
|
|
|
template_name = 'core/file_edit.jinja'
|
|
|
|
context_object_name = "file"
|
|
|
|
|
|
|
|
def get_form_class(self):
|
2016-11-09 08:13:57 +00:00
|
|
|
fields = ['name', 'is_moderated']
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.object.is_file:
|
|
|
|
fields = ['file'] + fields
|
|
|
|
return modelform_factory(SithFile, fields=fields)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
return reverse('core:file_detail', kwargs={'file_id': self.object.id, 'popup': "popup"})
|
|
|
|
return reverse('core:file_detail', kwargs={'file_id': self.object.id, 'popup': ""})
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileEditView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['popup'] = ""
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
kwargs['popup'] = 'popup'
|
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-12-18 16:59:08 +00:00
|
|
|
class FileEditPropForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = SithFile
|
|
|
|
fields = ['parent', 'owner', 'edit_groups', 'view_groups']
|
|
|
|
parent = make_ajax_field(SithFile, 'parent', 'files', help_text="")
|
2017-03-27 13:16:01 +00:00
|
|
|
edit_groups = make_ajax_field(SithFile, 'edit_groups', 'groups', help_text="", label=_("edit group"))
|
|
|
|
view_groups = make_ajax_field(SithFile, 'view_groups', 'groups', help_text="", label=_("view group"))
|
2017-01-12 19:55:31 +00:00
|
|
|
recursive = forms.BooleanField(label=_("Apply rights recursively"), required=False)
|
2016-12-18 16:59:08 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
class FileEditPropView(CanEditPropMixin, UpdateView):
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
|
|
|
template_name = 'core/file_edit.jinja'
|
|
|
|
context_object_name = "file"
|
2016-12-18 16:59:08 +00:00
|
|
|
form_class = FileEditPropForm
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def get_form(self, form_class=None):
|
|
|
|
form = super(FileEditPropView, self).get_form(form_class)
|
|
|
|
form.fields['parent'].queryset = SithFile.objects.filter(is_folder=True)
|
|
|
|
return form
|
|
|
|
|
2017-01-12 19:55:31 +00:00
|
|
|
def form_valid(self, form):
|
|
|
|
ret = super(FileEditPropView, self).form_valid(form)
|
|
|
|
if form.cleaned_data['recursive']:
|
|
|
|
self.object.apply_rights_recursively()
|
|
|
|
return ret
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('core:file_detail', kwargs={'file_id': self.object.id, 'popup': self.kwargs['popup'] or ""})
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileEditPropView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['popup'] = ""
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
kwargs['popup'] = 'popup'
|
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 12:48:18 +00:00
|
|
|
class FileView(CanViewMixin, DetailView, FormMixin):
|
2016-08-10 03:48:06 +00:00
|
|
|
"""This class handle the upload of new files into a folder"""
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
|
|
|
template_name = 'core/file_detail.jinja'
|
|
|
|
context_object_name = "file"
|
2016-08-11 02:24:32 +00:00
|
|
|
form_class = AddFilesForm
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2016-12-13 16:17:58 +00:00
|
|
|
def handle_clipboard(request, object):
|
|
|
|
if 'delete' in request.POST.keys():
|
|
|
|
for f_id in request.POST.getlist('file_list'):
|
|
|
|
sf = SithFile.objects.filter(id=f_id).first()
|
|
|
|
if sf:
|
|
|
|
sf.delete()
|
|
|
|
if 'clear' in request.POST.keys():
|
|
|
|
request.session['clipboard'] = []
|
|
|
|
if 'cut' in request.POST.keys():
|
|
|
|
for f_id in request.POST.getlist('file_list'):
|
|
|
|
f_id = int(f_id)
|
|
|
|
if f_id in [c.id for c in object.children.all()] and f_id not in request.session['clipboard']:
|
|
|
|
print(f_id)
|
|
|
|
request.session['clipboard'].append(f_id)
|
|
|
|
if 'paste' in request.POST.keys():
|
|
|
|
for f_id in request.session['clipboard']:
|
|
|
|
sf = SithFile.objects.filter(id=f_id).first()
|
|
|
|
if sf:
|
|
|
|
sf.move_to(object)
|
|
|
|
request.session['clipboard'] = []
|
|
|
|
request.session.modified = True
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.form = self.get_form()
|
2016-12-13 00:24:23 +00:00
|
|
|
if 'clipboard' not in request.session.keys():
|
|
|
|
request.session['clipboard'] = []
|
2016-08-10 03:48:06 +00:00
|
|
|
return super(FileView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
2016-12-13 00:24:23 +00:00
|
|
|
if 'clipboard' not in request.session.keys():
|
|
|
|
request.session['clipboard'] = []
|
2016-12-12 23:45:20 +00:00
|
|
|
if request.user.can_edit(self.object):
|
2016-12-13 16:17:58 +00:00
|
|
|
FileView.handle_clipboard(request, self.object)
|
2017-06-12 07:42:03 +00:00
|
|
|
self.form = self.get_form() # The form handle only the file upload
|
2016-08-10 03:48:06 +00:00
|
|
|
files = request.FILES.getlist('file_field')
|
2016-08-10 12:48:18 +00:00
|
|
|
if request.user.is_authenticated() and request.user.can_edit(self.object) and self.form.is_valid():
|
2016-08-10 03:48:06 +00:00
|
|
|
self.form.process(parent=self.object, owner=request.user, files=files)
|
|
|
|
if self.form.is_valid():
|
|
|
|
return super(FileView, self).form_valid(self.form)
|
|
|
|
return self.form_invalid(self.form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('core:file_detail', kwargs={'file_id': self.object.id, 'popup': self.kwargs['popup'] or ""})
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['popup'] = ""
|
|
|
|
kwargs['form'] = self.form
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
kwargs['popup'] = 'popup'
|
2016-12-13 00:24:23 +00:00
|
|
|
kwargs['clipboard'] = SithFile.objects.filter(id__in=self.request.session['clipboard'])
|
2016-08-10 03:48:06 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
class FileDeleteView(CanEditPropMixin, DeleteView):
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
|
|
|
template_name = 'core/file_delete_confirm.jinja'
|
|
|
|
context_object_name = "file"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2017-06-12 07:42:03 +00:00
|
|
|
self.object.file.delete() # Doing it here or overloading delete() is the same, so let's do it here
|
2016-11-09 08:13:57 +00:00
|
|
|
if 'next' in self.request.GET.keys():
|
|
|
|
return self.request.GET['next']
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.object.parent is None:
|
|
|
|
return reverse('core:file_list', kwargs={'popup': self.kwargs['popup'] or ""})
|
|
|
|
return reverse('core:file_detail', kwargs={'file_id': self.object.parent.id, 'popup': self.kwargs['popup'] or ""})
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileDeleteView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['popup'] = ""
|
|
|
|
if self.kwargs['popup']:
|
|
|
|
kwargs['popup'] = 'popup'
|
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-09 08:13:57 +00:00
|
|
|
class FileModerationView(TemplateView):
|
|
|
|
template_name = "core/file_moderation.jinja"
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(FileModerationView, self).get_context_data(**kwargs)
|
2016-12-09 14:48:09 +00:00
|
|
|
kwargs['files'] = SithFile.objects.filter(is_moderated=False)[:100]
|
2016-11-09 08:13:57 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-09 08:13:57 +00:00
|
|
|
class FileModerateView(CanEditPropMixin, SingleObjectMixin):
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.object.is_moderated = True
|
2016-12-12 16:23:06 +00:00
|
|
|
self.object.moderator = request.user
|
2016-11-09 08:13:57 +00:00
|
|
|
self.object.save()
|
|
|
|
if 'next' in self.request.GET.keys():
|
|
|
|
return redirect(self.request.GET['next'])
|
|
|
|
return redirect('core:file_moderation')
|