2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2024-09-23 08:25:27 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
2024-09-23 08:25:27 +00:00
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
2023-04-04 16:39:45 +00:00
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
2024-09-01 17:05:54 +00:00
|
|
|
import mimetypes
|
2024-08-05 08:46:15 +00:00
|
|
|
from urllib.parse import quote, urljoin
|
2017-04-24 15:51:12 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
# This file contains all the views that concern the page model
|
2024-06-24 11:07:36 +00:00
|
|
|
from wsgiref.util import FileWrapper
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
from ajax_select import make_ajax_field
|
2024-06-24 11:07:36 +00:00
|
|
|
from django import forms
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.exceptions import PermissionDenied
|
|
|
|
from django.forms.models import modelform_factory
|
2024-08-04 20:30:54 +00:00
|
|
|
from django.http import Http404, HttpRequest, HttpResponse
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.shortcuts import get_object_or_404, redirect
|
|
|
|
from django.urls import reverse
|
|
|
|
from django.utils.http import http_date
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from django.views.generic import DetailView, ListView, TemplateView
|
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
|
from django.views.generic.edit import DeleteView, FormMixin, UpdateView
|
2016-12-18 16:59:08 +00:00
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from core.models import Notification, RealGroup, SithFile
|
2023-05-02 11:07:36 +00:00
|
|
|
from core.views import (
|
|
|
|
CanEditMixin,
|
|
|
|
CanEditPropMixin,
|
2024-06-24 11:07:36 +00:00
|
|
|
CanViewMixin,
|
2023-05-02 11:07:36 +00:00
|
|
|
can_view,
|
|
|
|
)
|
2024-08-05 08:46:15 +00:00
|
|
|
from counter.utils import is_logged_in_counter
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2024-08-04 20:30:54 +00:00
|
|
|
def send_file(
|
|
|
|
request: HttpRequest,
|
|
|
|
file_id: int,
|
|
|
|
file_class: type[SithFile] = SithFile,
|
|
|
|
file_attr: str = "file",
|
2024-08-04 22:36:29 +00:00
|
|
|
) -> HttpResponse:
|
|
|
|
"""Send a protected file, if the user can see it.
|
|
|
|
|
|
|
|
In prod, the server won't handle the download itself,
|
|
|
|
but set the appropriate headers in the response to make the reverse-proxy
|
|
|
|
deal with it.
|
|
|
|
In debug mode, the server will directly send the file.
|
2016-08-10 03:48:06 +00:00
|
|
|
"""
|
2019-09-15 14:22:13 +00:00
|
|
|
f = get_object_or_404(file_class, id=file_id)
|
2024-08-05 08:46:15 +00:00
|
|
|
if not can_view(f, request.user) and not is_logged_in_counter(request):
|
2016-08-10 03:48:06 +00:00
|
|
|
raise PermissionDenied
|
2024-08-04 20:30:54 +00:00
|
|
|
name = getattr(f, file_attr).name
|
2023-05-02 11:07:36 +00:00
|
|
|
|
2024-08-29 09:42:21 +00:00
|
|
|
response = HttpResponse(
|
|
|
|
headers={"Content-Disposition": f'inline; filename="{quote(name)}"'}
|
|
|
|
)
|
2024-08-04 22:36:29 +00:00
|
|
|
if not settings.DEBUG:
|
|
|
|
# When receiving a response with the Accel-Redirect header,
|
|
|
|
# the reverse proxy will automatically handle the file sending.
|
|
|
|
# This is really hard to test (thus isn't tested)
|
|
|
|
# so please do not mess with this.
|
2024-08-29 09:42:21 +00:00
|
|
|
response["Content-Type"] = "" # automatically set by nginx
|
2024-08-05 08:46:15 +00:00
|
|
|
response["X-Accel-Redirect"] = quote(urljoin(settings.MEDIA_URL, name))
|
2024-08-04 22:36:29 +00:00
|
|
|
return response
|
|
|
|
|
2024-08-29 09:42:21 +00:00
|
|
|
filepath = settings.MEDIA_ROOT / name
|
|
|
|
# check if file exists on disk
|
|
|
|
if not filepath.exists():
|
|
|
|
raise Http404
|
2024-07-26 13:14:37 +00:00
|
|
|
with open(filepath, "rb") as filename:
|
2024-08-29 09:42:21 +00:00
|
|
|
response.content = FileWrapper(filename)
|
2024-09-01 17:05:54 +00:00
|
|
|
response["Content-Type"] = mimetypes.guess_type(filepath)[0]
|
2022-08-07 14:08:56 +00:00
|
|
|
response["Last-Modified"] = http_date(f.date.timestamp())
|
2024-07-26 13:14:37 +00:00
|
|
|
response["Content-Length"] = filepath.stat().st_size
|
2016-08-10 03:48:06 +00:00
|
|
|
return response
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2024-06-22 19:16:42 +00:00
|
|
|
class MultipleFileInput(forms.ClearableFileInput):
|
|
|
|
allow_multiple_selected = True
|
|
|
|
|
|
|
|
|
|
|
|
class _MultipleFieldMixin:
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
kwargs.setdefault("widget", MultipleFileInput())
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def clean(self, data, initial=None):
|
|
|
|
single_file_clean = super().clean
|
|
|
|
if isinstance(data, (list, tuple)):
|
|
|
|
result = [single_file_clean(d, initial) for d in data]
|
|
|
|
else:
|
|
|
|
result = [single_file_clean(data, initial)]
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2024-06-24 09:56:38 +00:00
|
|
|
class MultipleFileField(_MultipleFieldMixin, forms.FileField): ...
|
2024-06-22 19:16:42 +00:00
|
|
|
|
|
|
|
|
2024-06-24 09:56:38 +00:00
|
|
|
class MultipleImageField(_MultipleFieldMixin, forms.ImageField): ...
|
2024-06-22 19:16:42 +00:00
|
|
|
|
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
class AddFilesForm(forms.Form):
|
2018-10-04 19:29:19 +00:00
|
|
|
folder_name = forms.CharField(
|
|
|
|
label=_("Add a new folder"), max_length=30, required=False
|
|
|
|
)
|
2024-06-22 19:16:42 +00:00
|
|
|
file_field = MultipleFileField(
|
2018-10-04 19:29:19 +00:00
|
|
|
label=_("Files"),
|
|
|
|
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:
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.cleaned_data["folder_name"] != "":
|
|
|
|
folder = SithFile(
|
|
|
|
parent=parent, name=self.cleaned_data["folder_name"], owner=owner
|
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
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:
|
2018-10-04 19:29:19 +00:00
|
|
|
self.add_error(
|
|
|
|
None,
|
|
|
|
_("Error creating folder %(folder_name)s: %(msg)s")
|
|
|
|
% {"folder_name": self.cleaned_data["folder_name"], "msg": repr(e)},
|
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
for f in files:
|
2018-10-04 19:29:19 +00:00
|
|
|
new_file = SithFile(
|
|
|
|
parent=parent,
|
|
|
|
name=f.name,
|
|
|
|
file=f,
|
|
|
|
owner=owner,
|
|
|
|
is_folder=False,
|
|
|
|
mime_type=f.content_type,
|
2019-10-06 12:11:38 +00:00
|
|
|
size=f.size,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
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:
|
2018-10-04 19:29:19 +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:
|
2018-10-04 19:29:19 +00:00
|
|
|
for u in (
|
|
|
|
RealGroup.objects.filter(id=settings.SITH_GROUP_COM_ADMIN_ID)
|
|
|
|
.first()
|
|
|
|
.users.all()
|
|
|
|
):
|
|
|
|
if not u.notifications.filter(
|
|
|
|
type="FILE_MODERATION", viewed=False
|
|
|
|
).exists():
|
|
|
|
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):
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/file_list.jinja"
|
2016-08-10 03:48:06 +00:00
|
|
|
context_object_name = "file_list"
|
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
return SithFile.objects.filter(parent=None)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = ""
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = "popup"
|
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 FileEditView(CanEditMixin, UpdateView):
|
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/file_edit.jinja"
|
2016-08-10 03:48:06 +00:00
|
|
|
context_object_name = "file"
|
|
|
|
|
|
|
|
def get_form_class(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["name", "is_moderated"]
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.object.is_file:
|
2024-10-15 09:36:26 +00:00
|
|
|
fields = ["file", *fields]
|
2016-08-10 03:48:06 +00:00
|
|
|
return modelform_factory(SithFile, fields=fields)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
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": ""}
|
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = ""
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = "popup"
|
2016-08-10 03:48:06 +00:00
|
|
|
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
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["parent", "owner", "edit_groups", "view_groups"]
|
|
|
|
|
|
|
|
parent = make_ajax_field(SithFile, "parent", "files", help_text="")
|
|
|
|
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"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/file_edit.jinja"
|
2016-08-10 03:48:06 +00:00
|
|
|
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):
|
2024-06-27 12:46:43 +00:00
|
|
|
form = super().get_form(form_class)
|
2018-10-04 19:29:19 +00:00
|
|
|
form.fields["parent"].queryset = SithFile.objects.filter(is_folder=True)
|
2016-08-10 03:48:06 +00:00
|
|
|
return form
|
|
|
|
|
2017-01-12 19:55:31 +00:00
|
|
|
def form_valid(self, form):
|
2024-06-27 12:46:43 +00:00
|
|
|
ret = super().form_valid(form)
|
2018-10-04 19:29:19 +00:00
|
|
|
if form.cleaned_data["recursive"]:
|
2017-01-12 19:55:31 +00:00
|
|
|
self.object.apply_rights_recursively()
|
|
|
|
return ret
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse(
|
|
|
|
"core:file_detail",
|
2022-08-03 22:26:43 +00:00
|
|
|
kwargs={"file_id": self.object.id, "popup": self.kwargs.get("popup", "")},
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = ""
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = "popup"
|
2016-08-10 03:48:06 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 12:48:18 +00:00
|
|
|
class FileView(CanViewMixin, DetailView, FormMixin):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Handle the upload of new files into a folder."""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
model = SithFile
|
|
|
|
pk_url_kwarg = "file_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/file_detail.jinja"
|
2016-08-10 03:48:06 +00:00
|
|
|
context_object_name = "file"
|
2016-08-11 02:24:32 +00:00
|
|
|
form_class = AddFilesForm
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2024-06-27 12:30:58 +00:00
|
|
|
@staticmethod
|
|
|
|
def handle_clipboard(request, obj):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Handle the clipboard in the view.
|
|
|
|
|
2018-03-20 21:09:27 +00:00
|
|
|
This method can fail, since it does not catch the exceptions coming from
|
|
|
|
below, allowing proper handling in the calling view.
|
|
|
|
Use this method like this:
|
|
|
|
|
|
|
|
FileView.handle_clipboard(request, self.object)
|
|
|
|
|
2024-06-27 12:30:58 +00:00
|
|
|
`request` is usually the self.request obj in your view
|
|
|
|
`obj` is the SithFile object you want to put in the clipboard, or
|
2018-03-20 21:09:27 +00:00
|
|
|
where you want to paste the clipboard
|
|
|
|
"""
|
2024-10-15 09:36:26 +00:00
|
|
|
if "delete" in request.POST:
|
2018-10-04 19:29:19 +00:00
|
|
|
for f_id in request.POST.getlist("file_list"):
|
2024-10-15 09:36:26 +00:00
|
|
|
file = SithFile.objects.filter(id=f_id).first()
|
|
|
|
if file:
|
|
|
|
file.delete()
|
|
|
|
if "clear" in request.POST:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["clipboard"] = []
|
2024-10-15 09:36:26 +00:00
|
|
|
if "cut" in request.POST:
|
|
|
|
for f_id_str in request.POST.getlist("file_list"):
|
|
|
|
f_id = int(f_id_str)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
2024-06-27 12:30:58 +00:00
|
|
|
f_id in [c.id for c in obj.children.all()]
|
2018-10-04 19:29:19 +00:00
|
|
|
and f_id not in request.session["clipboard"]
|
|
|
|
):
|
|
|
|
request.session["clipboard"].append(f_id)
|
2024-10-15 09:36:26 +00:00
|
|
|
if "paste" in request.POST:
|
2018-10-04 19:29:19 +00:00
|
|
|
for f_id in request.session["clipboard"]:
|
2024-10-15 09:36:26 +00:00
|
|
|
file = SithFile.objects.filter(id=f_id).first()
|
|
|
|
if file:
|
|
|
|
file.move_to(obj)
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["clipboard"] = []
|
2016-12-13 16:17:58 +00:00
|
|
|
request.session.modified = True
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.form = self.get_form()
|
2024-10-15 09:36:26 +00:00
|
|
|
if "clipboard" not in request.session:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["clipboard"] = []
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().get(request, *args, **kwargs)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
2024-10-15 09:36:26 +00:00
|
|
|
if "clipboard" not in request.session:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["clipboard"] = []
|
2016-12-12 23:45:20 +00:00
|
|
|
if request.user.can_edit(self.object):
|
2018-03-20 21:09:27 +00:00
|
|
|
# XXX this call can fail!
|
2024-06-27 12:30:58 +00:00
|
|
|
self.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
|
2018-10-04 19:29:19 +00:00
|
|
|
files = request.FILES.getlist("file_field")
|
|
|
|
if (
|
2019-10-05 23:34:21 +00:00
|
|
|
request.user.is_authenticated
|
2018-10-04 19:29:19 +00:00
|
|
|
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():
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().form_valid(self.form)
|
2016-08-10 03:48:06 +00:00
|
|
|
return self.form_invalid(self.form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse(
|
|
|
|
"core:file_detail",
|
2022-08-03 22:26:43 +00:00
|
|
|
kwargs={"file_id": self.object.id, "popup": self.kwargs.get("popup", "")},
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = ""
|
|
|
|
kwargs["form"] = self.form
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = "popup"
|
|
|
|
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"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/file_delete_confirm.jinja"
|
2016-08-10 03:48:06 +00:00
|
|
|
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
|
2024-09-20 12:08:29 +00:00
|
|
|
if "next" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
return self.request.GET["next"]
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.object.parent is None:
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse(
|
2022-08-03 22:26:43 +00:00
|
|
|
"core:file_list", kwargs={"popup": self.kwargs.get("popup", "")}
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
|
|
|
return reverse(
|
|
|
|
"core:file_detail",
|
|
|
|
kwargs={
|
|
|
|
"file_id": self.object.parent.id,
|
2022-08-03 22:26:43 +00:00
|
|
|
"popup": self.kwargs.get("popup", ""),
|
2018-10-04 19:29:19 +00:00
|
|
|
},
|
|
|
|
)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = ""
|
2022-08-03 22:26:43 +00:00
|
|
|
if self.kwargs.get("popup") is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["popup"] = "popup"
|
2016-08-10 03:48:06 +00:00
|
|
|
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):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_context_data(**kwargs)
|
2018-10-04 19:29:19 +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"
|
|
|
|
|
2024-09-09 19:37:28 +00:00
|
|
|
# FIXME : wrong http method. This should be a POST or a DELETE request
|
2016-11-09 08:13:57 +00:00
|
|
|
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()
|
2024-10-15 09:36:26 +00:00
|
|
|
if "next" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
return redirect(self.request.GET["next"])
|
|
|
|
return redirect("core:file_moderation")
|