mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-13 11:35:44 +00:00
Compare commits
43 Commits
photos
...
room-reser
Author | SHA1 | Date | |
---|---|---|---|
|
4cc93395a7 | ||
|
6fde7eb4a9 | ||
|
bf74356b83 | ||
|
251732aa8d | ||
|
0e33ff5d9d | ||
|
4fa7f672a6 | ||
|
3c93e167ea | ||
|
177e873648 | ||
|
4c8e4c42d8 | ||
|
18be0746aa | ||
|
c10999f5ad | ||
|
7eb0dc56cc | ||
f1355a2e96 | |||
|
b767079c5a | ||
|
37961e437b | ||
|
b97a1a2e56 | ||
|
fdf5e4fbe9 | ||
|
4e08591721 | ||
|
27b98f4a48 | ||
|
cb454935ad | ||
|
17c50934bb | ||
|
5646f22968 | ||
|
cf3daa2574 | ||
|
03759fd83e | ||
|
83c96884d8 | ||
|
8524996f06 | ||
|
57e3a930ba | ||
|
2086d23b50 | ||
|
d8f907fc70 | ||
|
81260b34a2 | ||
|
7bd3f69c76 | ||
|
257ad0f7e4 | ||
f3fe67cf75
|
|||
142dd6a16f
|
|||
|
e864e82573 | ||
|
95b476b212 | ||
|
0e9c470f41 | ||
ed9c718cf1
|
|||
25099528bf
|
|||
0bc18be75e
|
|||
f44fe72423
|
|||
c016dbc8bc
|
|||
|
5b57f75b4e |
14
.github/dependabot.yml
vendored
14
.github/dependabot.yml
vendored
@@ -4,11 +4,19 @@
|
|||||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
|
||||||
- package-ecosystem: "pip" # See documentation for possible values
|
multi-ecosystem-groups:
|
||||||
directory: "/" # Location of package manifests
|
common:
|
||||||
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
target-branch: "taiste"
|
target-branch: "taiste"
|
||||||
commit-message:
|
commit-message:
|
||||||
prefix: "[UPDATE] "
|
prefix: "[UPDATE] "
|
||||||
|
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "uv"
|
||||||
|
multi-ecosystem-group: "common"
|
||||||
|
|
||||||
|
- package-ecosystem: "npm"
|
||||||
|
multi-ecosystem-group: "common"
|
||||||
|
@@ -29,7 +29,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddConstraint(
|
migrations.AddConstraint(
|
||||||
model_name="membership",
|
model_name="membership",
|
||||||
constraint=models.CheckConstraint(
|
constraint=models.CheckConstraint(
|
||||||
check=models.Q(("end_date__gte", models.F("start_date"))),
|
condition=models.Q(("end_date__gte", models.F("start_date"))),
|
||||||
name="end_after_start",
|
name="end_after_start",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@@ -347,7 +347,7 @@ class Membership(models.Model):
|
|||||||
class Meta:
|
class Meta:
|
||||||
constraints = [
|
constraints = [
|
||||||
models.CheckConstraint(
|
models.CheckConstraint(
|
||||||
check=Q(end_date__gte=F("start_date")), name="end_after_start"
|
condition=Q(end_date__gte=F("start_date")), name="end_after_start"
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@@ -1,6 +1,14 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
{% from 'core/macros.jinja' import user_profile_link %}
|
{% from 'core/macros.jinja' import user_profile_link %}
|
||||||
|
|
||||||
|
{% block title -%}
|
||||||
|
{{ club.name }}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{{ club.short_description }}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div id="club_detail">
|
<div id="club_detail">
|
||||||
{% if club.logo %}
|
{% if club.logo %}
|
||||||
|
@@ -1,8 +1,12 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title -%}
|
||||||
{% trans %}Club list{% endtrans %}
|
{% trans %}Club list{% endtrans %}
|
||||||
{% endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{% trans %}The list of all clubs existing at UTBM.{% endtrans %}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% macro display_club(club) -%}
|
{% macro display_club(club) -%}
|
||||||
|
|
||||||
@@ -21,7 +25,7 @@
|
|||||||
|
|
||||||
{%- if club.children.all()|length != 0 %}
|
{%- if club.children.all()|length != 0 %}
|
||||||
<ul>
|
<ul>
|
||||||
{%- for c in club.children.order_by('name') %}
|
{%- for c in club.children.order_by('name').prefetch_related("children") %}
|
||||||
{{ display_club(c) }}
|
{{ display_club(c) }}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
@@ -36,8 +40,8 @@
|
|||||||
{% if club_list %}
|
{% if club_list %}
|
||||||
<h3>{% trans %}Club list{% endtrans %}</h3>
|
<h3>{% trans %}Club list{% endtrans %}</h3>
|
||||||
<ul>
|
<ul>
|
||||||
{%- for c in club_list.all().order_by('name') if c.parent is none %}
|
{%- for club in club_list %}
|
||||||
{{ display_club(c) }}
|
{{ display_club(club) }}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@@ -1,25 +1,63 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
{% from "reservation/macros.jinja" import room_detail %}
|
||||||
|
|
||||||
|
{% block additional_css %}
|
||||||
|
<link rel="stylesheet" href="{{ static("core/components/card.scss") }}">
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>{% trans %}Club tools{% endtrans %}</h3>
|
<h3>{% trans %}Club tools{% endtrans %} ({{ club.name }})</h3>
|
||||||
<div>
|
<div>
|
||||||
<h4>{% trans %}Communication:{% endtrans %}</h4>
|
<h4>{% trans %}Communication:{% endtrans %}</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li> <a href="{{ url('com:news_new') }}?club={{ object.id }}">{% trans %}Create a news{% endtrans %}</a></li>
|
<li>
|
||||||
<li> <a href="{{ url('com:weekmail_article') }}?club={{ object.id }}">{% trans %}Post in the Weekmail{% endtrans %}</a></li>
|
<a href="{{ url('com:news_new') }}?club={{ object.id }}">
|
||||||
|
{% trans %}Create a news{% endtrans %}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="{{ url('com:weekmail_article') }}?club={{ object.id }}">
|
||||||
|
{% trans %}Post in the Weekmail{% endtrans %}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
{% if object.trombi %}
|
{% if object.trombi %}
|
||||||
<li> <a href="{{ url('trombi:detail', trombi_id=object.trombi.id) }}">{% trans %}Edit Trombi{% endtrans %}</a></li>
|
<li>
|
||||||
|
<a href="{{ url('trombi:detail', trombi_id=object.trombi.id) }}">
|
||||||
|
{% trans %}Edit Trombi{% endtrans %}</a>
|
||||||
|
</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li> <a href="{{ url('trombi:create', club_id=object.id) }}">{% trans %}New Trombi{% endtrans %}</a></li>
|
<li><a href="{{ url('trombi:create', club_id=object.id) }}">{% trans %}New Trombi{% endtrans %}</a></li>
|
||||||
<li> <a href="{{ url('club:poster_list', club_id=object.id) }}">{% trans %}Posters{% endtrans %}</a></li>
|
<li><a href="{{ url('club:poster_list', club_id=object.id) }}">{% trans %}Posters{% endtrans %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
<h4>{% trans %}Reservable rooms{% endtrans %}</h4>
|
||||||
|
<a
|
||||||
|
href="{{ url("reservation:room_create") }}?club={{ object.id }}"
|
||||||
|
class="btn btn-blue"
|
||||||
|
>
|
||||||
|
{% trans %}Add a room{% endtrans %}
|
||||||
|
</a>
|
||||||
|
{%- if reservable_rooms|length > 0 -%}
|
||||||
|
<ul class="card-group">
|
||||||
|
{%- for room in reservable_rooms -%}
|
||||||
|
{{ room_detail(
|
||||||
|
room,
|
||||||
|
can_edit=user.can_edit(room),
|
||||||
|
can_delete=request.user.has_perm("reservation.delete_room")
|
||||||
|
) }}
|
||||||
|
{%- endfor -%}
|
||||||
|
</ul>
|
||||||
|
{%- else -%}
|
||||||
|
<p>
|
||||||
|
{% trans %}This club manages no reservable room{% endtrans %}
|
||||||
|
</p>
|
||||||
|
{%- endif -%}
|
||||||
<h4>{% trans %}Counters:{% endtrans %}</h4>
|
<h4>{% trans %}Counters:{% endtrans %}</h4>
|
||||||
<ul>
|
<ul>
|
||||||
{% for c in object.counters.filter(type="OFFICE") %}
|
{% for counter in counters %}
|
||||||
<li>{{ c }}:
|
<li>{{ counter }}:
|
||||||
<a href="{{ url('counter:details', counter_id=c.id) }}">View</a>
|
<a href="{{ url('counter:details', counter_id=counter.id) }}">View</a>
|
||||||
<a href="{{ url('counter:admin', counter_id=c.id) }}">Edit</a>
|
<a href="{{ url('counter:admin', counter_id=counter.id) }}">Edit</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
@@ -171,6 +171,10 @@ class ClubListView(ListView):
|
|||||||
|
|
||||||
model = Club
|
model = Club
|
||||||
template_name = "club/club_list.jinja"
|
template_name = "club/club_list.jinja"
|
||||||
|
queryset = (
|
||||||
|
Club.objects.filter(parent=None).order_by("name").prefetch_related("children")
|
||||||
|
)
|
||||||
|
context_object_name = "club_list"
|
||||||
|
|
||||||
|
|
||||||
class ClubView(ClubTabsMixin, DetailView):
|
class ClubView(ClubTabsMixin, DetailView):
|
||||||
@@ -241,6 +245,12 @@ class ClubToolsView(ClubTabsMixin, CanEditMixin, DetailView):
|
|||||||
template_name = "club/club_tools.jinja"
|
template_name = "club/club_tools.jinja"
|
||||||
current_tab = "tools"
|
current_tab = "tools"
|
||||||
|
|
||||||
|
def get_context_data(self, **kwargs):
|
||||||
|
return super().get_context_data(**kwargs) | {
|
||||||
|
"reservable_rooms": list(self.object.reservable_rooms.all()),
|
||||||
|
"counters": list(self.object.counters.filter(type="OFFICE")),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class ClubMembersView(ClubTabsMixin, CanViewMixin, DetailFormView):
|
class ClubMembersView(ClubTabsMixin, CanViewMixin, DetailFormView):
|
||||||
"""View of a club's members."""
|
"""View of a club's members."""
|
||||||
|
@@ -68,7 +68,7 @@ class IcsCalendar:
|
|||||||
start=news_date.start_date,
|
start=news_date.start_date,
|
||||||
end=news_date.end_date,
|
end=news_date.end_date,
|
||||||
url=as_absolute_url(
|
url=as_absolute_url(
|
||||||
reverse("com:news_detail", kwargs={"news_id": news_date.news.id})
|
reverse("com:news_detail", kwargs={"news_id": news_date.news_id})
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
calendar.events.append(event)
|
calendar.events.append(event)
|
||||||
|
@@ -54,7 +54,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddConstraint(
|
migrations.AddConstraint(
|
||||||
model_name="newsdate",
|
model_name="newsdate",
|
||||||
constraint=models.CheckConstraint(
|
constraint=models.CheckConstraint(
|
||||||
check=models.Q(("end_date__gte", models.F("start_date"))),
|
condition=models.Q(("end_date__gte", models.F("start_date"))),
|
||||||
name="news_date_end_date_after_start_date",
|
name="news_date_end_date_after_start_date",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@@ -27,7 +27,7 @@ from django.conf import settings
|
|||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.mail import EmailMultiAlternatives
|
from django.core.mail import EmailMultiAlternatives
|
||||||
from django.db import models, transaction
|
from django.db import models, transaction
|
||||||
from django.db.models import F, Q
|
from django.db.models import Exists, F, OuterRef, Q
|
||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
from django.templatetags.static import static
|
from django.templatetags.static import static
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
@@ -55,9 +55,17 @@ class Sith(models.Model):
|
|||||||
|
|
||||||
|
|
||||||
class NewsQuerySet(models.QuerySet):
|
class NewsQuerySet(models.QuerySet):
|
||||||
def moderated(self) -> Self:
|
def published(self) -> Self:
|
||||||
return self.filter(is_published=True)
|
return self.filter(is_published=True)
|
||||||
|
|
||||||
|
def waiting_moderation(self) -> Self:
|
||||||
|
"""Filter all non-finished non-published news"""
|
||||||
|
# Because of the way News and NewsDates are created,
|
||||||
|
# there may be some cases where this method is called before
|
||||||
|
# the NewsDates linked to a Date are actually persisted in db.
|
||||||
|
# Thus, it's important to filter by "not past date" rather than by "future date"
|
||||||
|
return self.filter(~Q(dates__start_date__lt=timezone.now()), is_published=False)
|
||||||
|
|
||||||
def viewable_by(self, user: User) -> Self:
|
def viewable_by(self, user: User) -> Self:
|
||||||
"""Filter news that the given user can view.
|
"""Filter news that the given user can view.
|
||||||
|
|
||||||
@@ -127,20 +135,28 @@ class News(models.Model):
|
|||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
super().save(*args, **kwargs)
|
super().save(*args, **kwargs)
|
||||||
if self.is_published:
|
if not self.is_published:
|
||||||
return
|
admins_without_notif = User.objects.filter(
|
||||||
for user in User.objects.filter(
|
~Exists(
|
||||||
groups__id__in=[settings.SITH_GROUP_COM_ADMIN_ID]
|
Notification.objects.filter(
|
||||||
):
|
user=OuterRef("pk"), type="NEWS_MODERATION"
|
||||||
Notification.objects.create(
|
)
|
||||||
user=user, url=reverse("com:news_admin_list"), type="NEWS_MODERATION"
|
),
|
||||||
|
groups__id=settings.SITH_GROUP_COM_ADMIN_ID,
|
||||||
)
|
)
|
||||||
|
notif_url = reverse("com:news_admin_list")
|
||||||
|
new_notifs = [
|
||||||
|
Notification(user=user, url=notif_url, type="NEWS_MODERATION")
|
||||||
|
for user in admins_without_notif
|
||||||
|
]
|
||||||
|
Notification.objects.bulk_create(new_notifs)
|
||||||
|
self.update_moderation_notifs()
|
||||||
|
|
||||||
def get_absolute_url(self):
|
def get_absolute_url(self):
|
||||||
return reverse("com:news_detail", kwargs={"news_id": self.id})
|
return reverse("com:news_detail", kwargs={"news_id": self.id})
|
||||||
|
|
||||||
def get_full_url(self):
|
def get_full_url(self):
|
||||||
return "https://%s%s" % (settings.SITH_URL, self.get_absolute_url())
|
return f"https://{settings.SITH_URL}{self.get_absolute_url()}"
|
||||||
|
|
||||||
def is_owned_by(self, user):
|
def is_owned_by(self, user):
|
||||||
if user.is_anonymous:
|
if user.is_anonymous:
|
||||||
@@ -159,19 +175,16 @@ class News(models.Model):
|
|||||||
or (user.is_authenticated and self.author_id == user.id)
|
or (user.is_authenticated and self.author_id == user.id)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
def news_notification_callback(notif: Notification):
|
def update_moderation_notifs():
|
||||||
# the NewsDate linked to the News
|
count = News.objects.waiting_moderation().count()
|
||||||
# which creation triggered this callback may not exist yet,
|
notifs_qs = Notification.objects.filter(
|
||||||
# so it's important to filter by "not past date" rather than by "future date"
|
type="NEWS_MODERATION", user__groups__id=settings.SITH_GROUP_COM_ADMIN_ID
|
||||||
count = News.objects.filter(
|
)
|
||||||
~Q(dates__start_date__gt=timezone.now()), is_published=False
|
if count:
|
||||||
).count()
|
notifs_qs.update(viewed=False, param=str(count))
|
||||||
if count:
|
else:
|
||||||
notif.viewed = False
|
notifs_qs.update(viewed=True)
|
||||||
notif.param = str(count)
|
|
||||||
else:
|
|
||||||
notif.viewed = True
|
|
||||||
|
|
||||||
|
|
||||||
class NewsDateQuerySet(models.QuerySet):
|
class NewsDateQuerySet(models.QuerySet):
|
||||||
@@ -212,7 +225,7 @@ class NewsDate(models.Model):
|
|||||||
verbose_name_plural = _("news dates")
|
verbose_name_plural = _("news dates")
|
||||||
constraints = [
|
constraints = [
|
||||||
models.CheckConstraint(
|
models.CheckConstraint(
|
||||||
check=Q(end_date__gte=F("start_date")),
|
condition=Q(end_date__gte=F("start_date")),
|
||||||
name="news_date_end_date_after_start_date",
|
name="news_date_end_date_after_start_date",
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
@@ -81,9 +81,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#links_content {
|
#links_content {
|
||||||
overflow: auto;
|
|
||||||
box-shadow: $shadow-color 1px 1px 1px;
|
box-shadow: $shadow-color 1px 1px 1px;
|
||||||
height: 20em;
|
padding: .5rem;
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
@@ -1,13 +1,11 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
{% from "com/macros.jinja" import news_moderation_alert %}
|
{% from "com/macros.jinja" import news_moderation_alert %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}AE UTBM{% endblock %}
|
||||||
{% trans %}News{% endtrans %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block additional_css %}
|
{% block additional_css %}
|
||||||
<link rel="stylesheet" href="{{ static('com/css/news-list.scss') }}">
|
<link rel="stylesheet" href="{{ static('com/css/news-list.scss') }}">
|
||||||
<link rel="stylesheet" href="{{ static('com/components/ics-calendar.scss') }}">
|
<link rel="stylesheet" href="{{ static('core/components/calendar.scss') }}">
|
||||||
|
|
||||||
{# Atom feed discovery, not really css but also goes there #}
|
{# Atom feed discovery, not really css but also goes there #}
|
||||||
<link rel="alternate" type="application/rss+xml" title="{% trans %}News feed{% endtrans %}" href="{{ url("com:news_feed") }}">
|
<link rel="alternate" type="application/rss+xml" title="{% trans %}News feed{% endtrans %}" href="{{ url("com:news_feed") }}">
|
||||||
@@ -213,6 +211,12 @@
|
|||||||
<i class="fa-solid fa-magnifying-glass fa-xl"></i>
|
<i class="fa-solid fa-magnifying-glass fa-xl"></i>
|
||||||
<a href="{{ url("matmat:search_clear") }}">{% trans %}Matmatronch{% endtrans %}</a>
|
<a href="{{ url("matmat:search_clear") }}">{% trans %}Matmatronch{% endtrans %}</a>
|
||||||
</li>
|
</li>
|
||||||
|
{% if user.has_perm("reservation.view_reservationslot") %}
|
||||||
|
<li>
|
||||||
|
<i class="fa-solid fa-thumbtack fa-xl"></i>
|
||||||
|
<a href="{{ url("reservation:main") }}">{% trans %}Room reservation{% endtrans %}</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
<li>
|
<li>
|
||||||
<i class="fa-solid fa-check-to-slot fa-xl"></i>
|
<i class="fa-solid fa-check-to-slot fa-xl"></i>
|
||||||
<a href="{{ url("election:list") }}">{% trans %}Elections{% endtrans %}</a>
|
<a href="{{ url("election:list") }}">{% trans %}Elections{% endtrans %}</a>
|
||||||
|
@@ -1,13 +1,22 @@
|
|||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
from django.utils.timezone import now
|
||||||
from model_bakery import baker
|
from model_bakery import baker
|
||||||
|
|
||||||
from com.models import News
|
from com.models import News, NewsDate
|
||||||
|
from core.baker_recipes import subscriber_user
|
||||||
from core.models import Group, Notification, User
|
from core.models import Group, Notification, User
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
@pytest.mark.django_db
|
||||||
def test_notification_created():
|
def test_notification_created():
|
||||||
|
# this news is unpublished, but is set in the past
|
||||||
|
# it shouldn't be taken into account when counting the number
|
||||||
|
# of news that are to be moderated
|
||||||
|
past_news = baker.make(News, is_published=False)
|
||||||
|
baker.make(NewsDate, news=past_news, start_date=now() - timedelta(days=1))
|
||||||
com_admin_group = Group.objects.get(pk=settings.SITH_GROUP_COM_ADMIN_ID)
|
com_admin_group = Group.objects.get(pk=settings.SITH_GROUP_COM_ADMIN_ID)
|
||||||
com_admin_group.users.all().delete()
|
com_admin_group.users.all().delete()
|
||||||
Notification.objects.all().delete()
|
Notification.objects.all().delete()
|
||||||
@@ -15,9 +24,28 @@ def test_notification_created():
|
|||||||
for i in range(2):
|
for i in range(2):
|
||||||
# news notifications are permanent, so the notification created
|
# news notifications are permanent, so the notification created
|
||||||
# during the first iteration should be reused during the second one.
|
# during the first iteration should be reused during the second one.
|
||||||
baker.make(News)
|
baker.make(News, is_published=False)
|
||||||
notifications = list(Notification.objects.all())
|
notifications = list(Notification.objects.all())
|
||||||
assert len(notifications) == 1
|
assert len(notifications) == 1
|
||||||
assert notifications[0].user == com_admin
|
assert notifications[0].user == com_admin
|
||||||
assert notifications[0].type == "NEWS_MODERATION"
|
assert notifications[0].type == "NEWS_MODERATION"
|
||||||
assert notifications[0].param == str(i + 1)
|
assert notifications[0].param == str(i + 1)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_notification_edited_when_moderating_news():
|
||||||
|
com_admin_group = Group.objects.get(pk=settings.SITH_GROUP_COM_ADMIN_ID)
|
||||||
|
com_admins = subscriber_user.make(_quantity=3)
|
||||||
|
com_admin_group.users.set(com_admins)
|
||||||
|
Notification.objects.all().delete()
|
||||||
|
news = baker.make(News, is_published=False)
|
||||||
|
assert Notification.objects.count() == 3
|
||||||
|
assert Notification.objects.filter(viewed=False).count() == 3
|
||||||
|
|
||||||
|
news.is_published = True
|
||||||
|
news.moderator = com_admins[0]
|
||||||
|
news.save()
|
||||||
|
# when the news is moderated, the notification should be marked as read
|
||||||
|
# for all admins
|
||||||
|
assert Notification.objects.count() == 3
|
||||||
|
assert Notification.objects.filter(viewed=False).count() == 0
|
||||||
|
@@ -88,9 +88,9 @@ class PageAdmin(admin.ModelAdmin):
|
|||||||
|
|
||||||
@admin.register(SithFile)
|
@admin.register(SithFile)
|
||||||
class SithFileAdmin(admin.ModelAdmin):
|
class SithFileAdmin(admin.ModelAdmin):
|
||||||
list_display = ("name", "owner", "size", "date")
|
list_display = ("name", "owner", "size", "date", "is_in_sas")
|
||||||
autocomplete_fields = ("parent", "owner", "moderator")
|
autocomplete_fields = ("parent", "owner", "moderator")
|
||||||
search_fields = ("name",)
|
search_fields = ("name", "parent__name")
|
||||||
|
|
||||||
|
|
||||||
@admin.register(OperationLog)
|
@admin.register(OperationLog)
|
||||||
|
@@ -97,7 +97,7 @@ class SithFileController(ControllerBase):
|
|||||||
)
|
)
|
||||||
@paginate(PageNumberPaginationExtra, page_size=50)
|
@paginate(PageNumberPaginationExtra, page_size=50)
|
||||||
def search_files(self, search: Annotated[str, annotated_types.MinLen(1)]):
|
def search_files(self, search: Annotated[str, annotated_types.MinLen(1)]):
|
||||||
return SithFile.objects.filter(name__icontains=search)
|
return SithFile.objects.filter(is_in_sas=False).filter(name__icontains=search)
|
||||||
|
|
||||||
|
|
||||||
@api_controller("/group")
|
@api_controller("/group")
|
||||||
|
41
core/management/commands/add_promo_logo.py
Normal file
41
core/management/commands/add_promo_logo.py
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import pathlib
|
||||||
|
|
||||||
|
from django.apps import apps
|
||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
from PIL import Image, UnidentifiedImageError
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
def add_arguments(self, parser):
|
||||||
|
parser.add_argument("number", type=int)
|
||||||
|
parser.add_argument("path", type=pathlib.Path)
|
||||||
|
parser.add_argument("-f", "--force", action="store_true")
|
||||||
|
|
||||||
|
def handle(self, number: int, path: pathlib.Path, force: int, *args, **options):
|
||||||
|
if not path.exists() or path.is_dir():
|
||||||
|
self.stderr.write(f"{path} is not a file or does not exist")
|
||||||
|
return
|
||||||
|
|
||||||
|
dest_path = (
|
||||||
|
pathlib.Path(apps.get_app_config("core").path)
|
||||||
|
/ "static"
|
||||||
|
/ "core"
|
||||||
|
/ "img"
|
||||||
|
/ f"promo_{number}.png"
|
||||||
|
)
|
||||||
|
|
||||||
|
if dest_path.exists() and not force:
|
||||||
|
over = input("File already exists, do you want to overwrite it? (y/N):")
|
||||||
|
if over.lower() != "y":
|
||||||
|
self.stdout.write("exiting")
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
im = Image.open(path)
|
||||||
|
im.resize((120, 120), resample=Image.Resampling.LANCZOS).save(
|
||||||
|
dest_path, format="PNG"
|
||||||
|
)
|
||||||
|
self.stdout.write(
|
||||||
|
f"Promo logo moved and resized successfully at {dest_path}"
|
||||||
|
)
|
||||||
|
except UnidentifiedImageError:
|
||||||
|
self.stderr.write("image cannot be opened and identified.")
|
@@ -110,6 +110,7 @@ class Command(BaseCommand):
|
|||||||
p.save(force_lock=True)
|
p.save(force_lock=True)
|
||||||
|
|
||||||
club_root = SithFile.objects.create(name="clubs", owner=root)
|
club_root = SithFile.objects.create(name="clubs", owner=root)
|
||||||
|
sas = SithFile.objects.create(name="SAS", owner=root)
|
||||||
main_club = Club.objects.create(
|
main_club = Club.objects.create(
|
||||||
id=1, name="AE", address="6 Boulevard Anatole France, 90000 Belfort"
|
id=1, name="AE", address="6 Boulevard Anatole France, 90000 Belfort"
|
||||||
)
|
)
|
||||||
@@ -692,21 +693,33 @@ class Command(BaseCommand):
|
|||||||
# SAS
|
# SAS
|
||||||
for f in self.SAS_FIXTURE_PATH.glob("*"):
|
for f in self.SAS_FIXTURE_PATH.glob("*"):
|
||||||
if f.is_dir():
|
if f.is_dir():
|
||||||
album = Album.objects.create(name=f.name, is_moderated=True)
|
album = Album(
|
||||||
|
parent=sas,
|
||||||
|
name=f.name,
|
||||||
|
owner=root,
|
||||||
|
is_folder=True,
|
||||||
|
is_in_sas=True,
|
||||||
|
is_moderated=True,
|
||||||
|
)
|
||||||
|
album.clean()
|
||||||
|
album.save()
|
||||||
for p in f.iterdir():
|
for p in f.iterdir():
|
||||||
file = resize_image(Image.open(p), 1000, "WEBP")
|
file = resize_image(Image.open(p), 1000, "WEBP")
|
||||||
pict = Picture(
|
pict = Picture(
|
||||||
parent=album,
|
parent=album,
|
||||||
name=p.name,
|
name=p.name,
|
||||||
original=file,
|
file=file,
|
||||||
owner=root,
|
owner=root,
|
||||||
|
is_folder=False,
|
||||||
|
is_in_sas=True,
|
||||||
is_moderated=True,
|
is_moderated=True,
|
||||||
|
mime_type="image/webp",
|
||||||
|
size=file.size,
|
||||||
)
|
)
|
||||||
pict.original.name = pict.name
|
pict.file.name = p.name
|
||||||
pict.generate_thumbnails()
|
|
||||||
pict.full_clean()
|
pict.full_clean()
|
||||||
|
pict.generate_thumbnails()
|
||||||
pict.save()
|
pict.save()
|
||||||
album.generate_thumbnail()
|
|
||||||
|
|
||||||
img_skia = Picture.objects.get(name="skia.jpg")
|
img_skia = Picture.objects.get(name="skia.jpg")
|
||||||
img_sli = Picture.objects.get(name="sli.jpg")
|
img_sli = Picture.objects.get(name="sli.jpg")
|
||||||
@@ -776,7 +789,11 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
subscribers = Group.objects.create(name="Cotisants")
|
subscribers = Group.objects.create(name="Cotisants")
|
||||||
subscribers.permissions.add(
|
subscribers.permissions.add(
|
||||||
*list(perms.filter(codename__in=["add_news", "add_uvcomment"]))
|
*list(
|
||||||
|
perms.filter(
|
||||||
|
codename__in=["add_news", "add_uvcomment", "view_reservationslot"]
|
||||||
|
)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
old_subscribers = Group.objects.create(name="Anciens cotisants")
|
old_subscribers = Group.objects.create(name="Anciens cotisants")
|
||||||
old_subscribers.permissions.add(
|
old_subscribers.permissions.add(
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
import random
|
import random
|
||||||
from datetime import date, timedelta
|
from datetime import date, timedelta
|
||||||
from datetime import timezone as tz
|
from datetime import timezone as tz
|
||||||
|
from math import ceil
|
||||||
from typing import Iterator
|
from typing import Iterator
|
||||||
|
|
||||||
from dateutil.relativedelta import relativedelta
|
from dateutil.relativedelta import relativedelta
|
||||||
@@ -24,6 +25,7 @@ from counter.models import (
|
|||||||
)
|
)
|
||||||
from forum.models import Forum, ForumMessage, ForumTopic
|
from forum.models import Forum, ForumMessage, ForumTopic
|
||||||
from pedagogy.models import UV
|
from pedagogy.models import UV
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
from subscription.models import Subscription
|
from subscription.models import Subscription
|
||||||
|
|
||||||
|
|
||||||
@@ -40,45 +42,20 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
self.stdout.write("Creating users...")
|
self.stdout.write("Creating users...")
|
||||||
users = self.create_users()
|
users = self.create_users()
|
||||||
|
# len(subscribers) is approximately 480
|
||||||
subscribers = random.sample(users, k=int(0.8 * len(users)))
|
subscribers = random.sample(users, k=int(0.8 * len(users)))
|
||||||
self.stdout.write("Creating subscriptions...")
|
self.stdout.write("Creating subscriptions...")
|
||||||
self.create_subscriptions(subscribers)
|
self.create_subscriptions(subscribers)
|
||||||
self.stdout.write("Creating club memberships...")
|
self.stdout.write("Creating club memberships...")
|
||||||
users_qs = User.objects.filter(id__in=[s.id for s in subscribers])
|
self.create_club_memberships(subscribers)
|
||||||
subscribers_now = list(
|
self.stdout.write("Creating rooms and reservation...")
|
||||||
users_qs.annotate(
|
self.create_resources_and_reservations(random.sample(subscribers, k=40))
|
||||||
filter=Exists(
|
|
||||||
Subscription.objects.filter(
|
|
||||||
member_id=OuterRef("pk"), subscription_end__gte=now()
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
old_subscribers = list(
|
|
||||||
users_qs.annotate(
|
|
||||||
filter=Exists(
|
|
||||||
Subscription.objects.filter(
|
|
||||||
member_id=OuterRef("pk"), subscription_end__lt=now()
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
self.make_club(
|
|
||||||
Club.objects.get(id=settings.SITH_MAIN_CLUB_ID),
|
|
||||||
random.sample(subscribers_now, k=min(30, len(subscribers_now))),
|
|
||||||
random.sample(old_subscribers, k=min(60, len(old_subscribers))),
|
|
||||||
)
|
|
||||||
self.make_club(
|
|
||||||
Club.objects.get(name="Troll Penché"),
|
|
||||||
random.sample(subscribers_now, k=min(20, len(subscribers_now))),
|
|
||||||
random.sample(old_subscribers, k=min(80, len(old_subscribers))),
|
|
||||||
)
|
|
||||||
self.stdout.write("Creating uvs...")
|
self.stdout.write("Creating uvs...")
|
||||||
self.create_uvs()
|
self.create_uvs()
|
||||||
self.stdout.write("Creating products...")
|
self.stdout.write("Creating products...")
|
||||||
self.create_products()
|
self.create_products()
|
||||||
self.stdout.write("Creating sales and refills...")
|
self.stdout.write("Creating sales and refills...")
|
||||||
sellers = random.sample(list(User.objects.all()), 100)
|
sellers = list(User.objects.order_by("?")[:100])
|
||||||
self.create_sales(sellers)
|
self.create_sales(sellers)
|
||||||
self.stdout.write("Creating permanences...")
|
self.stdout.write("Creating permanences...")
|
||||||
self.create_permanences(sellers)
|
self.create_permanences(sellers)
|
||||||
@@ -188,6 +165,97 @@ class Command(BaseCommand):
|
|||||||
memberships = Membership.objects.bulk_create(memberships)
|
memberships = Membership.objects.bulk_create(memberships)
|
||||||
Membership._add_club_groups(memberships)
|
Membership._add_club_groups(memberships)
|
||||||
|
|
||||||
|
def create_club_memberships(self, users: list[User]):
|
||||||
|
users_qs = User.objects.filter(id__in=[s.id for s in users])
|
||||||
|
subscribers_now = list(
|
||||||
|
users_qs.annotate(
|
||||||
|
filter=Exists(
|
||||||
|
Subscription.objects.filter(
|
||||||
|
member_id=OuterRef("pk"), subscription_end__gte=now()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
old_subscribers = list(
|
||||||
|
users_qs.annotate(
|
||||||
|
filter=Exists(
|
||||||
|
Subscription.objects.filter(
|
||||||
|
member_id=OuterRef("pk"), subscription_end__lt=now()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
self.make_club(
|
||||||
|
Club.objects.get(id=settings.SITH_MAIN_CLUB_ID),
|
||||||
|
random.sample(subscribers_now, k=min(30, len(subscribers_now))),
|
||||||
|
random.sample(old_subscribers, k=min(60, len(old_subscribers))),
|
||||||
|
)
|
||||||
|
self.make_club(
|
||||||
|
Club.objects.get(name="Troll Penché"),
|
||||||
|
random.sample(subscribers_now, k=min(20, len(subscribers_now))),
|
||||||
|
random.sample(old_subscribers, k=min(80, len(old_subscribers))),
|
||||||
|
)
|
||||||
|
|
||||||
|
def create_resources_and_reservations(self, users: list[User]):
|
||||||
|
"""Generate reservable rooms and reservations slots for those rooms.
|
||||||
|
|
||||||
|
Contrary to the other data generator,
|
||||||
|
this one generates more data than what is expected on the real db.
|
||||||
|
"""
|
||||||
|
ae = Club.objects.get(id=settings.SITH_MAIN_CLUB_ID)
|
||||||
|
pdf = Club.objects.get(id=settings.SITH_PDF_CLUB_ID)
|
||||||
|
troll = Club.objects.get(name="Troll Penché")
|
||||||
|
rooms = [
|
||||||
|
Room(
|
||||||
|
name=name,
|
||||||
|
club=club,
|
||||||
|
location=location,
|
||||||
|
description=self.faker.text(100),
|
||||||
|
)
|
||||||
|
for name, club, location in [
|
||||||
|
("Champi", ae, "BELFORT"),
|
||||||
|
("Muzik", ae, "BELFORT"),
|
||||||
|
("Pôle Tech", ae, "BELFORT"),
|
||||||
|
("Jolly", troll, "BELFORT"),
|
||||||
|
("Cookut", pdf, "BELFORT"),
|
||||||
|
("Lucky", pdf, "BELFORT"),
|
||||||
|
("Potards", pdf, "SEVENANS"),
|
||||||
|
("Bureau AE", ae, "SEVENANS"),
|
||||||
|
]
|
||||||
|
]
|
||||||
|
rooms = Room.objects.bulk_create(rooms)
|
||||||
|
reservations = []
|
||||||
|
for room in rooms:
|
||||||
|
# how much people use this room.
|
||||||
|
# The higher the number, the more reservations exist,
|
||||||
|
# the smaller the interval between two slot is,
|
||||||
|
# and the more future reservations have already been made ahead of time
|
||||||
|
affluence = random.randint(2, 6)
|
||||||
|
slot_start = make_aware(self.faker.past_datetime("-5y").replace(minute=0))
|
||||||
|
generate_until = make_aware(
|
||||||
|
self.faker.future_datetime(timedelta(days=1) * affluence**2)
|
||||||
|
)
|
||||||
|
while slot_start < generate_until:
|
||||||
|
if slot_start.hour < 8:
|
||||||
|
# if a reservation would start in the middle of the night
|
||||||
|
# make it start the next morning instead
|
||||||
|
slot_start += timedelta(hours=10 - slot_start.hour)
|
||||||
|
duration = timedelta(minutes=15) * (1 + int(random.gammavariate(3, 2)))
|
||||||
|
reservations.append(
|
||||||
|
ReservationSlot(
|
||||||
|
room=room,
|
||||||
|
author=random.choice(users),
|
||||||
|
start_at=slot_start,
|
||||||
|
end_at=slot_start + duration,
|
||||||
|
created_at=slot_start - self.faker.time_delta("+7d"),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
slot_start += duration + (
|
||||||
|
timedelta(minutes=15) * ceil(random.expovariate(affluence / 192))
|
||||||
|
)
|
||||||
|
reservations.sort(key=lambda slot: slot.created_at)
|
||||||
|
ReservationSlot.objects.bulk_create(reservations)
|
||||||
|
|
||||||
def create_uvs(self):
|
def create_uvs(self):
|
||||||
root = User.objects.get(username="root")
|
root = User.objects.get(username="root")
|
||||||
categories = ["CS", "TM", "OM", "QC", "EC"]
|
categories = ["CS", "TM", "OM", "QC", "EC"]
|
||||||
@@ -385,7 +453,7 @@ class Command(BaseCommand):
|
|||||||
Permanency.objects.bulk_create(perms)
|
Permanency.objects.bulk_create(perms)
|
||||||
|
|
||||||
def create_forums(self):
|
def create_forums(self):
|
||||||
forumers = random.sample(list(User.objects.all()), 100)
|
forumers = list(User.objects.order_by("?")[:100])
|
||||||
most_actives = random.sample(forumers, 10)
|
most_actives = random.sample(forumers, 10)
|
||||||
categories = list(Forum.objects.filter(is_category=True))
|
categories = list(Forum.objects.filter(is_category=True))
|
||||||
new_forums = [
|
new_forums = [
|
||||||
@@ -403,7 +471,7 @@ class Command(BaseCommand):
|
|||||||
for _ in range(100)
|
for _ in range(100)
|
||||||
]
|
]
|
||||||
ForumTopic.objects.bulk_create(new_topics)
|
ForumTopic.objects.bulk_create(new_topics)
|
||||||
topics = list(ForumTopic.objects.all())
|
topics = list(ForumTopic.objects.values_list("id", flat=True))
|
||||||
|
|
||||||
def get_author():
|
def get_author():
|
||||||
if random.random() > 0.5:
|
if random.random() > 0.5:
|
||||||
@@ -411,7 +479,7 @@ class Command(BaseCommand):
|
|||||||
return random.choice(forumers)
|
return random.choice(forumers)
|
||||||
|
|
||||||
messages = []
|
messages = []
|
||||||
for t in topics:
|
for topic_id in topics:
|
||||||
nb_messages = max(1, int(random.normalvariate(mu=90, sigma=50)))
|
nb_messages = max(1, int(random.normalvariate(mu=90, sigma=50)))
|
||||||
dates = sorted(
|
dates = sorted(
|
||||||
[
|
[
|
||||||
@@ -423,7 +491,7 @@ class Command(BaseCommand):
|
|||||||
messages.extend(
|
messages.extend(
|
||||||
[
|
[
|
||||||
ForumMessage(
|
ForumMessage(
|
||||||
topic=t,
|
topic_id=topic_id,
|
||||||
author=get_author(),
|
author=get_author(),
|
||||||
date=d,
|
date=d,
|
||||||
message="\n\n".join(
|
message="\n\n".join(
|
||||||
|
@@ -154,7 +154,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddConstraint(
|
migrations.AddConstraint(
|
||||||
model_name="userban",
|
model_name="userban",
|
||||||
constraint=models.CheckConstraint(
|
constraint=models.CheckConstraint(
|
||||||
check=models.Q(("expires_at__gte", models.F("created_at"))),
|
condition=models.Q(("expires_at__gte", models.F("created_at"))),
|
||||||
name="user_ban_end_after_start",
|
name="user_ban_end_after_start",
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@@ -1,27 +0,0 @@
|
|||||||
# Generated by Django 4.2.17 on 2025-01-26 15:01
|
|
||||||
|
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
from django.db.migrations.state import StateApps
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
|
||||||
import core.models
|
|
||||||
|
|
||||||
|
|
||||||
def remove_sas_sithfiles(apps: StateApps, schema_editor):
|
|
||||||
SithFile: type[core.models.SithFile] = apps.get_model("core", "SithFile")
|
|
||||||
SithFile.objects.filter(is_in_sas=True).delete()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [
|
|
||||||
("core", "0047_alter_notification_date_alter_notification_type"),
|
|
||||||
("sas", "0007_alter_peoplepicturerelation_picture_and_more"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(
|
|
||||||
remove_sas_sithfiles, reverse_code=migrations.RunPython.noop, elidable=True
|
|
||||||
)
|
|
||||||
]
|
|
@@ -1,9 +0,0 @@
|
|||||||
# Generated by Django 4.2.17 on 2025-02-14 11:58
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [("core", "0048_remove_sithfiles")]
|
|
||||||
|
|
||||||
operations = [migrations.RemoveField(model_name="sithfile", name="is_in_sas")]
|
|
@@ -560,7 +560,7 @@ class User(AbstractUser):
|
|||||||
"""Determine if the object is owned by the user."""
|
"""Determine if the object is owned by the user."""
|
||||||
if hasattr(obj, "is_owned_by") and obj.is_owned_by(self):
|
if hasattr(obj, "is_owned_by") and obj.is_owned_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "owner_group") and self.is_in_group(pk=obj.owner_group.id):
|
if hasattr(obj, "owner_group") and self.is_in_group(pk=obj.owner_group_id):
|
||||||
return True
|
return True
|
||||||
return self.is_root
|
return self.is_root
|
||||||
|
|
||||||
@@ -569,9 +569,15 @@ class User(AbstractUser):
|
|||||||
if hasattr(obj, "can_be_edited_by") and obj.can_be_edited_by(self):
|
if hasattr(obj, "can_be_edited_by") and obj.can_be_edited_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "edit_groups"):
|
if hasattr(obj, "edit_groups"):
|
||||||
for pk in obj.edit_groups.values_list("pk", flat=True):
|
if (
|
||||||
if self.is_in_group(pk=pk):
|
hasattr(obj, "_prefetched_objects_cache")
|
||||||
return True
|
and "edit_groups" in obj._prefetched_objects_cache
|
||||||
|
):
|
||||||
|
pks = [g.id for g in obj.edit_groups.all()]
|
||||||
|
else:
|
||||||
|
pks = list(obj.edit_groups.values_list("id", flat=True))
|
||||||
|
if any(self.is_in_group(pk=pk) for pk in pks):
|
||||||
|
return True
|
||||||
if isinstance(obj, User) and obj == self:
|
if isinstance(obj, User) and obj == self:
|
||||||
return True
|
return True
|
||||||
return self.is_owner(obj)
|
return self.is_owner(obj)
|
||||||
@@ -581,9 +587,18 @@ class User(AbstractUser):
|
|||||||
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "view_groups"):
|
if hasattr(obj, "view_groups"):
|
||||||
for pk in obj.view_groups.values_list("pk", flat=True):
|
# if "view_groups" has already been prefetched, use
|
||||||
if self.is_in_group(pk=pk):
|
# the prefetch cache, else fetch only the ids, to make
|
||||||
return True
|
# the query lighter.
|
||||||
|
if (
|
||||||
|
hasattr(obj, "_prefetched_objects_cache")
|
||||||
|
and "view_groups" in obj._prefetched_objects_cache
|
||||||
|
):
|
||||||
|
pks = [g.id for g in obj.view_groups.all()]
|
||||||
|
else:
|
||||||
|
pks = list(obj.view_groups.values_list("id", flat=True))
|
||||||
|
if any(self.is_in_group(pk=pk) for pk in pks):
|
||||||
|
return True
|
||||||
return self.can_edit(obj)
|
return self.can_edit(obj)
|
||||||
|
|
||||||
def can_be_edited_by(self, user):
|
def can_be_edited_by(self, user):
|
||||||
@@ -745,7 +760,7 @@ class UserBan(models.Model):
|
|||||||
fields=["ban_group", "user"], name="unique_ban_type_per_user"
|
fields=["ban_group", "user"], name="unique_ban_type_per_user"
|
||||||
),
|
),
|
||||||
models.CheckConstraint(
|
models.CheckConstraint(
|
||||||
check=Q(expires_at__gte=F("created_at")),
|
condition=Q(expires_at__gte=F("created_at")),
|
||||||
name="user_ban_end_after_start",
|
name="user_ban_end_after_start",
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
@@ -863,6 +878,9 @@ class SithFile(models.Model):
|
|||||||
on_delete=models.CASCADE,
|
on_delete=models.CASCADE,
|
||||||
)
|
)
|
||||||
asked_for_removal = models.BooleanField(_("asked for removal"), default=False)
|
asked_for_removal = models.BooleanField(_("asked for removal"), default=False)
|
||||||
|
is_in_sas = models.BooleanField(
|
||||||
|
_("is in the SAS"), default=False, db_index=True
|
||||||
|
) # Allows to query this flag, updated at each call to save()
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("file")
|
verbose_name = _("file")
|
||||||
@@ -871,10 +889,22 @@ class SithFile(models.Model):
|
|||||||
return self.get_parent_path() + "/" + self.name
|
return self.get_parent_path() + "/" + self.name
|
||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
|
sas = SithFile.objects.filter(id=settings.SITH_SAS_ROOT_DIR_ID).first()
|
||||||
|
self.is_in_sas = sas in self.get_parent_list() or self == sas
|
||||||
adding = self._state.adding
|
adding = self._state.adding
|
||||||
super().save(*args, **kwargs)
|
super().save(*args, **kwargs)
|
||||||
if adding:
|
if adding:
|
||||||
self.copy_rights()
|
self.copy_rights()
|
||||||
|
if self.is_in_sas:
|
||||||
|
for user in User.objects.filter(
|
||||||
|
groups__id__in=[settings.SITH_GROUP_SAS_ADMIN_ID]
|
||||||
|
):
|
||||||
|
Notification(
|
||||||
|
user=user,
|
||||||
|
url=reverse("sas:moderation"),
|
||||||
|
type="SAS_MODERATION",
|
||||||
|
param="1",
|
||||||
|
).save()
|
||||||
|
|
||||||
def is_owned_by(self, user: User) -> bool:
|
def is_owned_by(self, user: User) -> bool:
|
||||||
if user.is_anonymous:
|
if user.is_anonymous:
|
||||||
@@ -887,6 +917,8 @@ class SithFile(models.Model):
|
|||||||
return user.is_board_member
|
return user.is_board_member
|
||||||
if user.is_com_admin:
|
if user.is_com_admin:
|
||||||
return True
|
return True
|
||||||
|
if self.is_in_sas and user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID):
|
||||||
|
return True
|
||||||
return user.id == self.owner_id
|
return user.id == self.owner_id
|
||||||
|
|
||||||
def can_be_viewed_by(self, user: User) -> bool:
|
def can_be_viewed_by(self, user: User) -> bool:
|
||||||
@@ -913,6 +945,8 @@ class SithFile(models.Model):
|
|||||||
super().clean()
|
super().clean()
|
||||||
if "/" in self.name:
|
if "/" in self.name:
|
||||||
raise ValidationError(_("Character '/' not authorized in name"))
|
raise ValidationError(_("Character '/' not authorized in name"))
|
||||||
|
if self == self.parent:
|
||||||
|
raise ValidationError(_("Loop in folder tree"), code="loop")
|
||||||
if self == self.parent or (
|
if self == self.parent or (
|
||||||
self.parent is not None and self in self.get_parent_list()
|
self.parent is not None and self in self.get_parent_list()
|
||||||
):
|
):
|
||||||
@@ -1050,6 +1084,18 @@ class SithFile(models.Model):
|
|||||||
def is_file(self):
|
def is_file(self):
|
||||||
return not self.is_folder
|
return not self.is_folder
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def as_picture(self):
|
||||||
|
from sas.models import Picture
|
||||||
|
|
||||||
|
return Picture.objects.filter(id=self.id).first()
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def as_album(self):
|
||||||
|
from sas.models import Album
|
||||||
|
|
||||||
|
return Album.objects.filter(id=self.id).first()
|
||||||
|
|
||||||
def get_parent_list(self):
|
def get_parent_list(self):
|
||||||
parents = []
|
parents = []
|
||||||
current = self.parent
|
current = self.parent
|
||||||
@@ -1353,9 +1399,9 @@ class Page(models.Model):
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def is_club_page(self):
|
def is_club_page(self):
|
||||||
club_root_page = Page.objects.filter(name=settings.SITH_CLUB_ROOT_PAGE).first()
|
return (
|
||||||
return club_root_page is not None and (
|
self.name == settings.SITH_CLUB_ROOT_PAGE
|
||||||
self == club_root_page or club_root_page in self.get_parent_list()
|
or settings.SITH_CLUB_ROOT_PAGE in [p.name for p in self.get_parent_list()]
|
||||||
)
|
)
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
|
import { morph } from "@alpinejs/morph";
|
||||||
import sort from "@alpinejs/sort";
|
import sort from "@alpinejs/sort";
|
||||||
import Alpine from "alpinejs";
|
import Alpine from "alpinejs";
|
||||||
|
|
||||||
Alpine.plugin(sort);
|
Alpine.plugin([sort, morph]);
|
||||||
window.Alpine = Alpine;
|
window.Alpine = Alpine;
|
||||||
|
|
||||||
window.addEventListener("DOMContentLoaded", () => {
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
import htmx from "htmx.org";
|
import htmx from "htmx.org";
|
||||||
|
import "htmx-ext-alpine-morph";
|
||||||
|
|
||||||
document.body.addEventListener("htmx:beforeRequest", (event) => {
|
document.body.addEventListener("htmx:beforeRequest", (event) => {
|
||||||
event.target.ariaBusy = true;
|
event.target.ariaBusy = true;
|
||||||
|
@@ -16,14 +16,74 @@
|
|||||||
--event-details-padding: 20px;
|
--event-details-padding: 20px;
|
||||||
--event-details-border: 1px solid #EEEEEE;
|
--event-details-border: 1px solid #EEEEEE;
|
||||||
--event-details-border-radius: 4px;
|
--event-details-border-radius: 4px;
|
||||||
--event-details-box-shadow: 0px 6px 20px 4px rgb(0 0 0 / 16%);
|
--event-details-box-shadow: 0 6px 20px 4px rgb(0 0 0 / 16%);
|
||||||
--event-details-max-width: 600px;
|
--event-details-max-width: 600px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ics-calendar {
|
ics-calendar,
|
||||||
|
room-scheduler {
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
||||||
|
a.fc-col-header-cell-cushion,
|
||||||
|
a.fc-col-header-cell-cushion:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fc-daygrid-day-number,
|
||||||
|
a.fc-daygrid-day-number:hover {
|
||||||
|
color: rgb(34, 34, 34);
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
overflow: visible; // Show events on multiple days
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
text-align: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Reset from style.scss
|
||||||
|
table {
|
||||||
|
box-shadow: none;
|
||||||
|
border-radius: 0;
|
||||||
|
-moz-border-radius: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset from style.scss
|
||||||
|
thead {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset from style.scss
|
||||||
|
tbody > tr {
|
||||||
|
&:nth-child(even):not(.highlight) {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc .fc-toolbar.fc-footer-toolbar {
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.text-copy,
|
||||||
|
button.text-copy:focus,
|
||||||
|
button.text-copy:hover {
|
||||||
|
background-color: #67AE6E !important;
|
||||||
|
transition: 500ms ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.text-copied,
|
||||||
|
button.text-copied:focus,
|
||||||
|
button.text-copied:hover {
|
||||||
|
transition: 500ms ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
ics-calendar {
|
||||||
#event-details {
|
#event-details {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
max-width: 1151px;
|
max-width: 1151px;
|
||||||
@@ -60,82 +120,60 @@ ics-calendar {
|
|||||||
align-items: start;
|
align-items: start;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
background-color: var(--event-details-background-color);
|
background-color: var(--event-details-background-color);
|
||||||
margin-top: 0px;
|
margin-top: 0;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a.fc-col-header-cell-cushion,
|
// Reset from style.scss
|
||||||
a.fc-col-header-cell-cushion:hover {
|
thead {
|
||||||
color: black;
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset from style.scss
|
||||||
|
tbody > tr {
|
||||||
|
&:nth-child(even):not(.highlight) {
|
||||||
|
background: white;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a.fc-daygrid-day-number,
|
.fc .fc-toolbar.fc-footer-toolbar {
|
||||||
a.fc-daygrid-day-number:hover {
|
margin-bottom: 0.5em;
|
||||||
color: rgb(34, 34, 34);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
button.text-copy,
|
||||||
overflow: visible; // Show events on multiple days
|
button.text-copy:focus,
|
||||||
}
|
button.text-copy:hover {
|
||||||
|
background-color: #67AE6E !important;
|
||||||
|
transition: 500ms ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
//Reset from style.scss
|
button.text-copied,
|
||||||
table {
|
button.text-copied:focus,
|
||||||
box-shadow: none;
|
button.text-copied:hover {
|
||||||
border-radius: 0px;
|
transition: 500ms ease-out;
|
||||||
-moz-border-radius: 0px;
|
}
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset from style.scss
|
.fc .fc-getCalendarLink-button {
|
||||||
thead {
|
margin-right: 0.5rem;
|
||||||
background-color: white;
|
}
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset from style.scss
|
.fc .fc-helpButton-button {
|
||||||
tbody>tr {
|
border-radius: 70%;
|
||||||
&:nth-child(even):not(.highlight) {
|
padding-left: 0.5rem;
|
||||||
background: white;
|
padding-right: 0.5rem;
|
||||||
}
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
}
|
transition: 100ms ease-out;
|
||||||
|
width: 30px;
|
||||||
.fc .fc-toolbar.fc-footer-toolbar {
|
height: 30px;
|
||||||
margin-bottom: 0.5em;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.text-copy,
|
|
||||||
button.text-copy:focus,
|
|
||||||
button.text-copy:hover {
|
|
||||||
background-color: #67AE6E !important;
|
|
||||||
transition: 500ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.text-copied,
|
|
||||||
button.text-copied:focus,
|
|
||||||
button.text-copied:hover {
|
|
||||||
transition: 500ms ease-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc .fc-getCalendarLink-button {
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc .fc-helpButton-button {
|
|
||||||
border-radius: 70%;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
background-color: rgba(0, 0, 0, 0.8);
|
|
||||||
transition: 100ms ease-out;
|
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
|
||||||
font-size: 11px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.fc .fc-helpButton-button:hover {
|
.fc .fc-helpButton-button:hover {
|
||||||
background-color: rgba(20, 20, 20, 0.6);
|
background-color: rgba(20, 20, 20, 0.6);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip.calendar-copy-tooltip {
|
.tooltip.calendar-copy-tooltip {
|
@@ -16,6 +16,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card-group {
|
||||||
|
display: flex;
|
||||||
|
gap: 15px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background-color: $primary-neutral-light-color;
|
background-color: $primary-neutral-light-color;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
@@ -92,13 +99,23 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 765px) {
|
@media screen and (max-width: 765px) {
|
||||||
@include row-layout
|
@include row-layout;
|
||||||
}
|
}
|
||||||
|
|
||||||
// When combined with card, card-row display the card in a row layout,
|
// When combined with card, card-row display the card in a row layout,
|
||||||
// whatever the size of the screen.
|
// whatever the size of the screen.
|
||||||
&.card-row {
|
&.card-row {
|
||||||
@include row-layout
|
@include row-layout;
|
||||||
|
|
||||||
|
&.card-row-m {
|
||||||
|
//width: 50%;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.card-row-s {
|
||||||
|
//width: 33%;
|
||||||
|
max-width: 33%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -10,10 +10,9 @@
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
white-space: nowrap;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 500ms ease-out;
|
transition: opacity 500ms ease-out;
|
||||||
|
width: max-content;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|
||||||
left: 0;
|
left: 0;
|
||||||
|
@@ -2,8 +2,14 @@
|
|||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
{% block head %}
|
{% block head %}
|
||||||
<title>{% block title %}{% trans %}Welcome!{% endtrans %}{% endblock %} - Association des Étudiants UTBM</title>
|
<title>{% block title %}Association des Étudiants de l'UTBM{% endblock %}</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="{% block description -%}
|
||||||
|
{% trans trimmed %}
|
||||||
|
AE UTBM is a voluntary organisation run by UTBM students.
|
||||||
|
It organises student life at UTBM and manages its student facilities.
|
||||||
|
{% endtrans %}
|
||||||
|
{%- endblock %}">
|
||||||
<link rel="shortcut icon" href="{{ static('core/img/favicon.ico') }}">
|
<link rel="shortcut icon" href="{{ static('core/img/favicon.ico') }}">
|
||||||
<link rel="stylesheet" href="{{ static('core/base.css') }}">
|
<link rel="stylesheet" href="{{ static('core/base.css') }}">
|
||||||
<link rel="stylesheet" href="{{ static('core/style.scss') }}">
|
<link rel="stylesheet" href="{{ static('core/style.scss') }}">
|
||||||
|
@@ -5,16 +5,12 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if page_list %}
|
<h3>{% trans %}Page list{% endtrans %}</h3>
|
||||||
<h3>{% trans %}Page list{% endtrans %}</h3>
|
<ul>
|
||||||
<ul>
|
{% for p in page_list %}
|
||||||
{% for p in page_list %}
|
<li><a href="{{ p.get_absolute_url() }}">{{ p.display_name }}</a></li>
|
||||||
<li><a href="{{ p.get_absolute_url() }}">{{ p.get_display_name() }}</a></li>
|
{% endfor %}
|
||||||
{% endfor %}
|
</ul>
|
||||||
</ul>
|
|
||||||
{% else %}
|
|
||||||
{% trans %}There is no page in this website.{% endtrans %}
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -5,7 +5,6 @@ from typing import Callable
|
|||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from django.conf import settings
|
|
||||||
from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
from django.core.files.uploadedfile import SimpleUploadedFile, UploadedFile
|
from django.core.files.uploadedfile import SimpleUploadedFile, UploadedFile
|
||||||
from django.test import Client, TestCase
|
from django.test import Client, TestCase
|
||||||
@@ -18,8 +17,8 @@ from pytest_django.asserts import assertNumQueries
|
|||||||
from core.baker_recipes import board_user, old_subscriber_user, subscriber_user
|
from core.baker_recipes import board_user, old_subscriber_user, subscriber_user
|
||||||
from core.models import Group, QuickUploadImage, SithFile, User
|
from core.models import Group, QuickUploadImage, SithFile, User
|
||||||
from core.utils import RED_PIXEL_PNG
|
from core.utils import RED_PIXEL_PNG
|
||||||
from sas.baker_recipes import picture_recipe
|
|
||||||
from sas.models import Picture
|
from sas.models import Picture
|
||||||
|
from sith import settings
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
@pytest.mark.django_db
|
||||||
@@ -31,19 +30,24 @@ class TestImageAccess:
|
|||||||
lambda: baker.make(
|
lambda: baker.make(
|
||||||
User, groups=[Group.objects.get(pk=settings.SITH_GROUP_SAS_ADMIN_ID)]
|
User, groups=[Group.objects.get(pk=settings.SITH_GROUP_SAS_ADMIN_ID)]
|
||||||
),
|
),
|
||||||
|
lambda: baker.make(
|
||||||
|
User, groups=[Group.objects.get(pk=settings.SITH_GROUP_COM_ADMIN_ID)]
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_sas_image_access(self, user_factory: Callable[[], User]):
|
def test_sas_image_access(self, user_factory: Callable[[], User]):
|
||||||
"""Test that only authorized users can access the sas image."""
|
"""Test that only authorized users can access the sas image."""
|
||||||
user = user_factory()
|
user = user_factory()
|
||||||
picture = picture_recipe.make()
|
picture: SithFile = baker.make(
|
||||||
assert user.can_edit(picture)
|
Picture, parent=SithFile.objects.get(pk=settings.SITH_SAS_ROOT_DIR_ID)
|
||||||
|
)
|
||||||
|
assert picture.is_owned_by(user)
|
||||||
|
|
||||||
def test_sas_image_access_owner(self):
|
def test_sas_image_access_owner(self):
|
||||||
"""Test that the owner of the image can access it."""
|
"""Test that the owner of the image can access it."""
|
||||||
user = baker.make(User)
|
user = baker.make(User)
|
||||||
picture = picture_recipe.make(owner=user)
|
picture: Picture = baker.make(Picture, owner=user)
|
||||||
assert user.can_edit(picture)
|
assert picture.is_owned_by(user)
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"user_factory",
|
"user_factory",
|
||||||
@@ -59,41 +63,7 @@ class TestImageAccess:
|
|||||||
user = user_factory()
|
user = user_factory()
|
||||||
owner = baker.make(User)
|
owner = baker.make(User)
|
||||||
picture: Picture = baker.make(Picture, owner=owner)
|
picture: Picture = baker.make(Picture, owner=owner)
|
||||||
assert not user.can_edit(picture)
|
assert not picture.is_owned_by(user)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
|
||||||
class TestUserPicture:
|
|
||||||
def test_anonymous_user_unauthorized(self, client):
|
|
||||||
"""An anonymous user shouldn't have access to an user's photo page."""
|
|
||||||
response = client.get(
|
|
||||||
reverse(
|
|
||||||
"core:user_pictures",
|
|
||||||
kwargs={"user_id": User.objects.get(username="sli").pk},
|
|
||||||
)
|
|
||||||
)
|
|
||||||
assert response.status_code == 403
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
|
||||||
("username", "status"),
|
|
||||||
[
|
|
||||||
("guy", 403),
|
|
||||||
("root", 200),
|
|
||||||
("skia", 200),
|
|
||||||
("sli", 200),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
def test_page_is_working(self, client, username, status):
|
|
||||||
"""Only user that subscribed (or admins) should be able to see the page."""
|
|
||||||
# Test for simple user
|
|
||||||
client.force_login(User.objects.get(username=username))
|
|
||||||
response = client.get(
|
|
||||||
reverse(
|
|
||||||
"core:user_pictures",
|
|
||||||
kwargs={"user_id": User.objects.get(username="sli").pk},
|
|
||||||
)
|
|
||||||
)
|
|
||||||
assert response.status_code == status
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: many tests on the pages:
|
# TODO: many tests on the pages:
|
||||||
|
@@ -22,7 +22,6 @@ from core.models import Group, User
|
|||||||
from core.views import UserTabsMixin
|
from core.views import UserTabsMixin
|
||||||
from counter.models import Counter, Refilling, Selling
|
from counter.models import Counter, Refilling, Selling
|
||||||
from eboutic.models import Invoice, InvoiceItem
|
from eboutic.models import Invoice, InvoiceItem
|
||||||
from sas.models import Picture
|
|
||||||
|
|
||||||
|
|
||||||
class TestSearchUsers(TestCase):
|
class TestSearchUsers(TestCase):
|
||||||
@@ -30,7 +29,6 @@ class TestSearchUsers(TestCase):
|
|||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
# News.author has on_delete=PROTECT, so news must be deleted beforehand
|
# News.author has on_delete=PROTECT, so news must be deleted beforehand
|
||||||
News.objects.all().delete()
|
News.objects.all().delete()
|
||||||
Picture.objects.all().delete() # same for pictures
|
|
||||||
User.objects.all().delete()
|
User.objects.all().delete()
|
||||||
user_recipe = Recipe(
|
user_recipe = Recipe(
|
||||||
User,
|
User,
|
||||||
|
@@ -12,23 +12,18 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
from dataclasses import dataclass
|
|
||||||
from datetime import date, timedelta
|
from datetime import date, timedelta
|
||||||
|
|
||||||
# Image utils
|
# Image utils
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from typing import Any, Final, Unpack
|
from typing import Final
|
||||||
|
|
||||||
import PIL
|
import PIL
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.files.base import ContentFile
|
from django.core.files.base import ContentFile
|
||||||
from django.core.files.uploadedfile import UploadedFile
|
from django.core.files.uploadedfile import UploadedFile
|
||||||
from django.db import models
|
from django.http import HttpRequest
|
||||||
from django.forms import BaseForm
|
|
||||||
from django.http import Http404, HttpRequest
|
|
||||||
from django.shortcuts import get_list_or_404
|
|
||||||
from django.template.loader import render_to_string
|
|
||||||
from django.utils.safestring import SafeString
|
|
||||||
from django.utils.timezone import localdate
|
from django.utils.timezone import localdate
|
||||||
from PIL import ExifTags
|
from PIL import ExifTags
|
||||||
from PIL.Image import Image, Resampling
|
from PIL.Image import Image, Resampling
|
||||||
@@ -47,21 +42,6 @@ to generate a dummy image that is considered valid nonetheless
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
|
||||||
class FormFragmentTemplateData[T: BaseForm]:
|
|
||||||
"""Dataclass used to pre-render form fragments"""
|
|
||||||
|
|
||||||
form: T
|
|
||||||
template: str
|
|
||||||
context: dict[str, Any]
|
|
||||||
|
|
||||||
def render(self, request: HttpRequest) -> SafeString:
|
|
||||||
# Request is needed for csrf_tokens
|
|
||||||
return render_to_string(
|
|
||||||
self.template, context={"form": self.form, **self.context}, request=request
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def get_start_of_semester(today: date | None = None) -> date:
|
def get_start_of_semester(today: date | None = None) -> date:
|
||||||
"""Return the date of the start of the semester of the given date.
|
"""Return the date of the start of the semester of the given date.
|
||||||
If no date is given, return the start date of the current semester.
|
If no date is given, return the start date of the current semester.
|
||||||
@@ -215,56 +195,3 @@ def get_client_ip(request: HttpRequest) -> str | None:
|
|||||||
return ip
|
return ip
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
Filterable = models.Model | models.QuerySet | models.Manager
|
|
||||||
ListFilter = dict[str, list | tuple | set]
|
|
||||||
|
|
||||||
|
|
||||||
def get_list_exact_or_404(klass: Filterable, **kwargs: Unpack[ListFilter]) -> list:
|
|
||||||
"""Use filter() to return a list of objects from a list of unique keys (like ids)
|
|
||||||
or raises Http404 if the list has not the same length as the given one.
|
|
||||||
|
|
||||||
Work like `get_object_or_404()` but for lists of objects, with some caveats :
|
|
||||||
|
|
||||||
- The filter must be a list, a tuple or a set.
|
|
||||||
- There can't be more than exactly one filter.
|
|
||||||
- There must be no duplicate in the filter.
|
|
||||||
- The filter should consist in unique keys (like ids), or it could fail randomly.
|
|
||||||
|
|
||||||
klass may be a Model, Manager, or QuerySet object. All other passed
|
|
||||||
arguments and keyword arguments are used in the filter() query.
|
|
||||||
|
|
||||||
Raises:
|
|
||||||
Http404: If the list is empty or doesn't have as many elements as the keys list.
|
|
||||||
ValueError: If the first argument is not a Model, Manager, or QuerySet object.
|
|
||||||
ValueError: If more than one filter is passed.
|
|
||||||
TypeError: If the given filter is not a list, a tuple or a set.
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
Get all the products with ids 1, 2, 3: ::
|
|
||||||
|
|
||||||
products = get_list_exact_or_404(Product, id__in=[1, 2, 3])
|
|
||||||
|
|
||||||
Don't work with duplicate ids: ::
|
|
||||||
|
|
||||||
products = get_list_exact_or_404(Product, id__in=[1, 2, 3, 3])
|
|
||||||
# Raises Http404: "The list of keys must contain no duplicates."
|
|
||||||
"""
|
|
||||||
if len(kwargs) > 1:
|
|
||||||
raise ValueError("get_list_exact_or_404() only accepts one filter.")
|
|
||||||
key, list_filter = next(iter(kwargs.items()))
|
|
||||||
if not isinstance(list_filter, (list, tuple, set)):
|
|
||||||
raise TypeError(
|
|
||||||
f"The given filter must be a list, a tuple or a set, not {type(list_filter)}"
|
|
||||||
)
|
|
||||||
if len(list_filter) != len(set(list_filter)):
|
|
||||||
raise ValueError("The list of keys must contain no duplicates.")
|
|
||||||
kwargs = {key: list_filter}
|
|
||||||
obj_list = get_list_or_404(klass, **kwargs)
|
|
||||||
if len(obj_list) != len(list_filter):
|
|
||||||
raise Http404(
|
|
||||||
"The given list of keys doesn't match the number of objects found."
|
|
||||||
f"Expected {len(list_filter)} items, got {len(obj_list)}."
|
|
||||||
)
|
|
||||||
return obj_list
|
|
||||||
|
@@ -374,7 +374,7 @@ class FileDeleteView(AllowFragment, CanEditPropMixin, DeleteView):
|
|||||||
class FileModerationView(AllowFragment, ListView):
|
class FileModerationView(AllowFragment, ListView):
|
||||||
model = SithFile
|
model = SithFile
|
||||||
template_name = "core/file_moderation.jinja"
|
template_name = "core/file_moderation.jinja"
|
||||||
queryset = SithFile.objects.filter(is_moderated=False)
|
queryset = SithFile.objects.filter(is_moderated=False, is_in_sas=False)
|
||||||
ordering = "id"
|
ordering = "id"
|
||||||
paginate_by = 100
|
paginate_by = 100
|
||||||
|
|
||||||
|
@@ -39,9 +39,8 @@ from django.forms import (
|
|||||||
DateInput,
|
DateInput,
|
||||||
DateTimeInput,
|
DateTimeInput,
|
||||||
TextInput,
|
TextInput,
|
||||||
Widget,
|
|
||||||
)
|
)
|
||||||
from django.utils.timezone import now
|
from django.utils.timezone import localtime, now
|
||||||
from django.utils.translation import gettext
|
from django.utils.translation import gettext
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from phonenumber_field.widgets import RegionalPhoneNumberWidget
|
from phonenumber_field.widgets import RegionalPhoneNumberWidget
|
||||||
@@ -115,7 +114,7 @@ class SelectUser(TextInput):
|
|||||||
|
|
||||||
def validate_future_timestamp(value: date | datetime):
|
def validate_future_timestamp(value: date | datetime):
|
||||||
if value <= now():
|
if value <= now():
|
||||||
raise ValueError(_("Ensure this timestamp is set in the future"))
|
raise ValidationError(_("Ensure this timestamp is set in the future"))
|
||||||
|
|
||||||
|
|
||||||
class FutureDateTimeField(forms.DateTimeField):
|
class FutureDateTimeField(forms.DateTimeField):
|
||||||
@@ -123,8 +122,8 @@ class FutureDateTimeField(forms.DateTimeField):
|
|||||||
|
|
||||||
default_validators = [validate_future_timestamp]
|
default_validators = [validate_future_timestamp]
|
||||||
|
|
||||||
def widget_attrs(self, widget: Widget) -> dict[str, str]:
|
def widget_attrs(self, widget: forms.Widget) -> dict[str, str]:
|
||||||
return {"min": widget.format_value(now())}
|
return {"min": widget.format_value(localtime())}
|
||||||
|
|
||||||
|
|
||||||
# Forms
|
# Forms
|
||||||
|
@@ -109,7 +109,7 @@ class FragmentMixin(TemplateResponseMixin, ContextMixin):
|
|||||||
return render(
|
return render(
|
||||||
request,
|
request,
|
||||||
"app/template.jinja",
|
"app/template.jinja",
|
||||||
context={"fragment": fragment(request)
|
context={"fragment": fragment(request)}
|
||||||
}
|
}
|
||||||
|
|
||||||
# in urls.py
|
# in urls.py
|
||||||
|
@@ -12,7 +12,10 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
from django.contrib.auth.mixins import PermissionRequiredMixin
|
from django.contrib.auth.mixins import PermissionRequiredMixin
|
||||||
|
from django.db.models import F, OuterRef, Subquery
|
||||||
|
from django.db.models.functions import Coalesce
|
||||||
|
|
||||||
# This file contains all the views that concern the page model
|
# This file contains all the views that concern the page model
|
||||||
from django.forms.models import modelform_factory
|
from django.forms.models import modelform_factory
|
||||||
@@ -43,6 +46,20 @@ class CanEditPagePropMixin(CanEditPropMixin):
|
|||||||
class PageListView(CanViewMixin, ListView):
|
class PageListView(CanViewMixin, ListView):
|
||||||
model = Page
|
model = Page
|
||||||
template_name = "core/page_list.jinja"
|
template_name = "core/page_list.jinja"
|
||||||
|
queryset = (
|
||||||
|
Page.objects.annotate(
|
||||||
|
display_name=Coalesce(
|
||||||
|
Subquery(
|
||||||
|
PageRev.objects.filter(page=OuterRef("id"))
|
||||||
|
.order_by("-date")
|
||||||
|
.values("title")[:1]
|
||||||
|
),
|
||||||
|
F("name"),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.prefetch_related("view_groups")
|
||||||
|
.select_related("parent")
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class PageView(CanViewMixin, DetailView):
|
class PageView(CanViewMixin, DetailView):
|
||||||
|
@@ -58,7 +58,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddConstraint(
|
migrations.AddConstraint(
|
||||||
model_name="returnableproduct",
|
model_name="returnableproduct",
|
||||||
constraint=models.CheckConstraint(
|
constraint=models.CheckConstraint(
|
||||||
check=models.Q(
|
condition=models.Q(
|
||||||
("product", models.F("returned_product")), _negated=True
|
("product", models.F("returned_product")), _negated=True
|
||||||
),
|
),
|
||||||
name="returnableproduct_product_different_from_returned",
|
name="returnableproduct_product_different_from_returned",
|
||||||
|
@@ -1278,7 +1278,7 @@ class ReturnableProduct(models.Model):
|
|||||||
verbose_name_plural = _("returnable products")
|
verbose_name_plural = _("returnable products")
|
||||||
constraints = [
|
constraints = [
|
||||||
models.CheckConstraint(
|
models.CheckConstraint(
|
||||||
check=~Q(product=F("returned_product")),
|
condition=~Q(product=F("returned_product")),
|
||||||
name="returnableproduct_product_different_from_returned",
|
name="returnableproduct_product_different_from_returned",
|
||||||
violation_error_message=_(
|
violation_error_message=_(
|
||||||
"The returnable product cannot be the same as the returned one"
|
"The returnable product cannot be the same as the returned one"
|
||||||
|
@@ -12,6 +12,15 @@ nouveau logo d'une promo. C'est un processus manuel.
|
|||||||
de faire cette opération manuellement, ça prend quelques
|
de faire cette opération manuellement, ça prend quelques
|
||||||
minutes et on est certain de la qualité à la fin.
|
minutes et on est certain de la qualité à la fin.
|
||||||
|
|
||||||
|
### avec une commande django
|
||||||
|
```bash
|
||||||
|
./manage.py add_promo_logo numero_de_promo chemin_dacces_du_logo
|
||||||
|
```
|
||||||
|
options:
|
||||||
|
|
||||||
|
* `--force/-f` pour automatiquement écraser les logos de promo avec le même nom.
|
||||||
|
|
||||||
|
### manuellement
|
||||||
Les logos de promo sont à manuellement ajouter dans le projet.
|
Les logos de promo sont à manuellement ajouter dans le projet.
|
||||||
Ils se situent dans le dossier `core/static/core/img/`.
|
Ils se situent dans le dossier `core/static/core/img/`.
|
||||||
|
|
||||||
|
@@ -263,35 +263,3 @@ avec un unique champ permettant de sélectionner des groupes.
|
|||||||
Par défaut, seuls les utilisateurs avec la permission
|
Par défaut, seuls les utilisateurs avec la permission
|
||||||
`auth.change_permission` auront accès à ce formulaire
|
`auth.change_permission` auront accès à ce formulaire
|
||||||
(donc, normalement, uniquement les utilisateurs Root).
|
(donc, normalement, uniquement les utilisateurs Root).
|
||||||
|
|
||||||
```mermaid
|
|
||||||
sequenceDiagram
|
|
||||||
participant A as Utilisateur
|
|
||||||
participant B as ReverseProxy
|
|
||||||
participant C as MarkdownImage
|
|
||||||
participant D as Model
|
|
||||||
|
|
||||||
A->>B: GET /page/foo
|
|
||||||
B->>C: GET /page/foo
|
|
||||||
C-->>B: La page, avec les urls
|
|
||||||
B-->>A: La page, avec les urls
|
|
||||||
alt image publique
|
|
||||||
A->>B: GET markdown/public/2025/img.webp
|
|
||||||
B-->>A: img.webp
|
|
||||||
end
|
|
||||||
alt image privée
|
|
||||||
A->>B: GET markdown_image/{id}
|
|
||||||
B->>C: GET markdown_image/{id}
|
|
||||||
C->>D: user.can_view(image)
|
|
||||||
alt l'utilisateur a le droit de voir l'image
|
|
||||||
D-->>C: True
|
|
||||||
C-->>B: 200 (avec le X-Accel-Redirect)
|
|
||||||
B-->>A: img.webp
|
|
||||||
end
|
|
||||||
alt l'utilisateur n'a pas le droit de l'image
|
|
||||||
D-->>C: False
|
|
||||||
C-->>B: 403
|
|
||||||
B-->>A: 403
|
|
||||||
end
|
|
||||||
end
|
|
||||||
```
|
|
||||||
|
@@ -1,8 +1,12 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title -%}
|
||||||
{% trans %}Eboutic{% endtrans %}
|
{% trans %}Eboutic{% endtrans %}
|
||||||
{% endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{% trans %}The online shop of the association.{% endtrans %}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% block additional_js %}
|
{% block additional_js %}
|
||||||
{# This script contains the code to perform requests to manipulate the
|
{# This script contains the code to perform requests to manipulate the
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
from datetime import datetime, timezone
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
@@ -9,8 +11,13 @@ from pytest_django.asserts import assertRedirects
|
|||||||
|
|
||||||
from core.baker_recipes import subscriber_user
|
from core.baker_recipes import subscriber_user
|
||||||
from core.models import Group, User
|
from core.models import Group, User
|
||||||
from counter.baker_recipes import product_recipe
|
from counter.baker_recipes import product_recipe, refill_recipe, sale_recipe
|
||||||
from counter.models import Counter, ProductType, get_eboutic
|
from counter.models import (
|
||||||
|
Counter,
|
||||||
|
Customer,
|
||||||
|
ProductType,
|
||||||
|
get_eboutic,
|
||||||
|
)
|
||||||
from counter.tests.test_counter import BasketItem
|
from counter.tests.test_counter import BasketItem
|
||||||
from eboutic.models import Basket
|
from eboutic.models import Basket
|
||||||
|
|
||||||
@@ -24,6 +31,96 @@ def test_get_eboutic():
|
|||||||
assert Counter.objects.get(name="Eboutic") == get_eboutic()
|
assert Counter.objects.get(name="Eboutic") == get_eboutic()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_eboutic_access_unregistered(client: Client):
|
||||||
|
eboutic_url = reverse("eboutic:main")
|
||||||
|
assertRedirects(
|
||||||
|
client.get(eboutic_url), reverse("core:login", query={"next": eboutic_url})
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_eboutic_access_new_customer(client: Client):
|
||||||
|
user = baker.make(User)
|
||||||
|
assert not Customer.objects.filter(user=user).exists()
|
||||||
|
|
||||||
|
client.force_login(user)
|
||||||
|
|
||||||
|
assert client.get(reverse("eboutic:main")).status_code == 200
|
||||||
|
assert Customer.objects.filter(user=user).exists()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_eboutic_access_old_customer(client: Client):
|
||||||
|
user = baker.make(User)
|
||||||
|
customer = Customer.get_or_create(user)[0]
|
||||||
|
|
||||||
|
client.force_login(user)
|
||||||
|
|
||||||
|
assert client.get(reverse("eboutic:main")).status_code == 200
|
||||||
|
assert Customer.objects.filter(user=user).first() == customer
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("sellings", "refillings", "expected"),
|
||||||
|
(
|
||||||
|
([], [], None),
|
||||||
|
(
|
||||||
|
[datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
[],
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
[],
|
||||||
|
[datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
[datetime(2025, 2, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
[datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
[datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
[datetime(2025, 2, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
[
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
datetime(2025, 2, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
],
|
||||||
|
[datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc)],
|
||||||
|
datetime(2025, 3, 7, 1, 2, 3, tzinfo=timezone.utc),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
def test_eboutic_basket_expiry(
|
||||||
|
client: Client,
|
||||||
|
sellings: list[datetime],
|
||||||
|
refillings: list[datetime],
|
||||||
|
expected: datetime | None,
|
||||||
|
):
|
||||||
|
eboutic = get_eboutic()
|
||||||
|
|
||||||
|
customer = baker.make(Customer)
|
||||||
|
|
||||||
|
client.force_login(customer.user)
|
||||||
|
|
||||||
|
for date in sellings:
|
||||||
|
sale_recipe.make(
|
||||||
|
customer=customer, counter=eboutic, date=date, is_validated=True
|
||||||
|
)
|
||||||
|
for date in refillings:
|
||||||
|
refill_recipe.make(customer=customer, counter=eboutic, date=date)
|
||||||
|
|
||||||
|
assert (
|
||||||
|
f'x-data="basket({int(expected.timestamp() * 1000) if expected else "null"})"'
|
||||||
|
in client.get(reverse("eboutic:main")).text
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestEboutic(TestCase):
|
class TestEboutic(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
|
@@ -34,6 +34,7 @@ from django.contrib.auth.mixins import (
|
|||||||
from django.contrib.messages.views import SuccessMessageMixin
|
from django.contrib.messages.views import SuccessMessageMixin
|
||||||
from django.core.exceptions import SuspiciousOperation, ValidationError
|
from django.core.exceptions import SuspiciousOperation, ValidationError
|
||||||
from django.db import DatabaseError, transaction
|
from django.db import DatabaseError, transaction
|
||||||
|
from django.db.models import Subquery
|
||||||
from django.db.models.fields import forms
|
from django.db.models.fields import forms
|
||||||
from django.db.utils import cached_property
|
from django.db.utils import cached_property
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
@@ -48,7 +49,14 @@ from django_countries.fields import Country
|
|||||||
from core.auth.mixins import CanViewMixin
|
from core.auth.mixins import CanViewMixin
|
||||||
from core.views.mixins import FragmentMixin, UseFragmentsMixin
|
from core.views.mixins import FragmentMixin, UseFragmentsMixin
|
||||||
from counter.forms import BaseBasketForm, BillingInfoForm, ProductForm
|
from counter.forms import BaseBasketForm, BillingInfoForm, ProductForm
|
||||||
from counter.models import BillingInfo, Customer, Product, Selling, get_eboutic
|
from counter.models import (
|
||||||
|
BillingInfo,
|
||||||
|
Customer,
|
||||||
|
Product,
|
||||||
|
Refilling,
|
||||||
|
Selling,
|
||||||
|
get_eboutic,
|
||||||
|
)
|
||||||
from eboutic.models import (
|
from eboutic.models import (
|
||||||
Basket,
|
Basket,
|
||||||
BasketItem,
|
BasketItem,
|
||||||
@@ -124,13 +132,36 @@ class EbouticMainView(LoginRequiredMixin, FormView):
|
|||||||
context = super().get_context_data(**kwargs)
|
context = super().get_context_data(**kwargs)
|
||||||
context["products"] = self.products
|
context["products"] = self.products
|
||||||
context["customer_amount"] = self.request.user.account_balance
|
context["customer_amount"] = self.request.user.account_balance
|
||||||
last_purchase: Selling | None = (
|
|
||||||
self.customer.buyings.filter(counter__type="EBOUTIC")
|
purchases = (
|
||||||
.order_by("-date")
|
Customer.objects.filter(pk=self.customer.pk)
|
||||||
.first()
|
.annotate(
|
||||||
)
|
last_refill=Subquery(
|
||||||
|
Refilling.objects.filter(
|
||||||
|
counter__type="EBOUTIC", customer_id=self.customer.pk
|
||||||
|
)
|
||||||
|
.order_by("-date")
|
||||||
|
.values("date")[:1]
|
||||||
|
),
|
||||||
|
last_purchase=Subquery(
|
||||||
|
Selling.objects.filter(
|
||||||
|
counter__type="EBOUTIC", customer_id=self.customer.pk
|
||||||
|
)
|
||||||
|
.order_by("-date")
|
||||||
|
.values("date")[:1]
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.values_list("last_refill", "last_purchase")
|
||||||
|
)[0]
|
||||||
|
|
||||||
|
purchase_times = [
|
||||||
|
int(purchase.timestamp() * 1000)
|
||||||
|
for purchase in purchases
|
||||||
|
if purchase is not None
|
||||||
|
]
|
||||||
|
|
||||||
context["last_purchase_time"] = (
|
context["last_purchase_time"] = (
|
||||||
int(last_purchase.date.timestamp() * 1000) if last_purchase else "null"
|
max(purchase_times) if len(purchase_times) > 0 else "null"
|
||||||
)
|
)
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
@@ -2,9 +2,13 @@
|
|||||||
{% from 'core/macros.jinja' import user_profile_link %}
|
{% from 'core/macros.jinja' import user_profile_link %}
|
||||||
{% from 'forum/macros.jinja' import display_forum, display_search_bar %}
|
{% from 'forum/macros.jinja' import display_forum, display_search_bar %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title -%}
|
||||||
{% trans %}Forum{% endtrans %}
|
{% trans %}Forum{% endtrans %}
|
||||||
{% endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{% trans %}A forum dedicated to the UTBM students.{% endtrans %}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% block additional_css %}
|
{% block additional_css %}
|
||||||
<link rel="stylesheet" href="{{ static('forum/css/forum.scss') }}">
|
<link rel="stylesheet" href="{{ static('forum/css/forum.scss') }}">
|
||||||
|
@@ -25,12 +25,13 @@ import warnings
|
|||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from typing import Final, Optional
|
from typing import Final, Optional
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
from django.core.files.base import ContentFile
|
from django.core.files.base import ContentFile
|
||||||
from django.core.management.base import BaseCommand
|
from django.core.management.base import BaseCommand
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
from club.models import Club, Membership
|
from club.models import Club, Membership
|
||||||
from core.models import Group, Page, User
|
from core.models import Group, Page, SithFile, User
|
||||||
from core.utils import RED_PIXEL_PNG
|
from core.utils import RED_PIXEL_PNG
|
||||||
from sas.models import Album, PeoplePictureRelation, Picture
|
from sas.models import Album, PeoplePictureRelation, Picture
|
||||||
from subscription.models import Subscription
|
from subscription.models import Subscription
|
||||||
@@ -90,8 +91,13 @@ class Command(BaseCommand):
|
|||||||
self.NB_CLUBS = options["club_count"]
|
self.NB_CLUBS = options["club_count"]
|
||||||
|
|
||||||
root = User.objects.filter(username="root").first()
|
root = User.objects.filter(username="root").first()
|
||||||
|
sas = SithFile.objects.get(id=settings.SITH_SAS_ROOT_DIR_ID)
|
||||||
self.galaxy_album = Album.objects.create(
|
self.galaxy_album = Album.objects.create(
|
||||||
name="galaxy-register-file", owner=root, is_moderated=True
|
name="galaxy-register-file",
|
||||||
|
owner=root,
|
||||||
|
is_moderated=True,
|
||||||
|
is_in_sas=True,
|
||||||
|
parent=sas,
|
||||||
)
|
)
|
||||||
|
|
||||||
self.make_clubs()
|
self.make_clubs()
|
||||||
@@ -279,10 +285,14 @@ class Command(BaseCommand):
|
|||||||
owner=u,
|
owner=u,
|
||||||
name=f"galaxy-picture {u} {i // self.NB_USERS}",
|
name=f"galaxy-picture {u} {i // self.NB_USERS}",
|
||||||
is_moderated=True,
|
is_moderated=True,
|
||||||
|
is_folder=False,
|
||||||
parent=self.galaxy_album,
|
parent=self.galaxy_album,
|
||||||
original=ContentFile(RED_PIXEL_PNG),
|
is_in_sas=True,
|
||||||
|
file=ContentFile(RED_PIXEL_PNG),
|
||||||
compressed=ContentFile(RED_PIXEL_PNG),
|
compressed=ContentFile(RED_PIXEL_PNG),
|
||||||
thumbnail=ContentFile(RED_PIXEL_PNG),
|
thumbnail=ContentFile(RED_PIXEL_PNG),
|
||||||
|
mime_type="image/png",
|
||||||
|
size=len(RED_PIXEL_PNG),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
self.picts[i].file.name = self.picts[i].name
|
self.picts[i].file.name = self.picts[i].name
|
||||||
|
359
galaxy/models.py
359
galaxy/models.py
@@ -23,20 +23,21 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import itertools
|
||||||
import logging
|
import logging
|
||||||
import math
|
import math
|
||||||
import time
|
import time
|
||||||
|
from collections import defaultdict
|
||||||
from typing import NamedTuple, TypedDict
|
from typing import NamedTuple, TypedDict
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models import Case, Count, F, Q, Value, When
|
from django.db.models import Count, F, Q, QuerySet
|
||||||
from django.db.models.functions import Concat
|
|
||||||
from django.utils.timezone import localdate
|
from django.utils.timezone import localdate
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
from club.models import Club
|
from club.models import Membership
|
||||||
from core.models import User
|
from core.models import User
|
||||||
from sas.models import Picture
|
from sas.models import PeoplePictureRelation, Picture
|
||||||
|
|
||||||
|
|
||||||
class GalaxyStar(models.Model):
|
class GalaxyStar(models.Model):
|
||||||
@@ -114,18 +115,9 @@ class GalaxyLane(models.Model):
|
|||||||
default=0,
|
default=0,
|
||||||
help_text=_("Distance separating star1 and star2"),
|
help_text=_("Distance separating star1 and star2"),
|
||||||
)
|
)
|
||||||
family = models.PositiveIntegerField(
|
family = models.PositiveIntegerField(_("family score"), default=0)
|
||||||
_("family score"),
|
pictures = models.PositiveIntegerField(_("pictures score"), default=0)
|
||||||
default=0,
|
clubs = models.PositiveIntegerField(_("clubs score"), default=0)
|
||||||
)
|
|
||||||
pictures = models.PositiveIntegerField(
|
|
||||||
_("pictures score"),
|
|
||||||
default=0,
|
|
||||||
)
|
|
||||||
clubs = models.PositiveIntegerField(
|
|
||||||
_("clubs score"),
|
|
||||||
default=0,
|
|
||||||
)
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"{self.star1} -> {self.star2} ({self.distance})"
|
return f"{self.star1} -> {self.star2} ({self.distance})"
|
||||||
@@ -174,6 +166,7 @@ class Galaxy(models.Model):
|
|||||||
logger = logging.getLogger("main")
|
logger = logging.getLogger("main")
|
||||||
|
|
||||||
GALAXY_SCALE_FACTOR = 2_000
|
GALAXY_SCALE_FACTOR = 2_000
|
||||||
|
DEFAULT_PICTURE_COUNT_THRESHOLD = 10
|
||||||
FAMILY_LINK_POINTS = 366 # Equivalent to a leap year together in a club, because.
|
FAMILY_LINK_POINTS = 366 # Equivalent to a leap year together in a club, because.
|
||||||
PICTURE_POINTS = 2 # Equivalent to two days as random members of a club.
|
PICTURE_POINTS = 2 # Equivalent to two days as random members of a club.
|
||||||
CLUBS_POINTS = 1 # One day together as random members in a club is one point.
|
CLUBS_POINTS = 1 # One day together as random members in a club is one point.
|
||||||
@@ -187,15 +180,13 @@ class Galaxy(models.Model):
|
|||||||
stars_count = self.stars.count()
|
stars_count = self.stars.count()
|
||||||
s = f"GLX-ID{self.pk}-SC{stars_count}-"
|
s = f"GLX-ID{self.pk}-SC{stars_count}-"
|
||||||
if self.state is None:
|
if self.state is None:
|
||||||
s += "CHS" # CHAOS
|
s += "CHAOS"
|
||||||
else:
|
else:
|
||||||
s += "RLD" # RULED
|
s += "RULED"
|
||||||
return s
|
return s
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_current_galaxy(
|
def get_current_galaxy(cls) -> Galaxy:
|
||||||
cls,
|
|
||||||
) -> Galaxy: # __future__.annotations is required for this
|
|
||||||
return Galaxy.objects.filter(state__isnull=False).last()
|
return Galaxy.objects.filter(state__isnull=False).last()
|
||||||
|
|
||||||
###################
|
###################
|
||||||
@@ -203,7 +194,18 @@ class Galaxy(models.Model):
|
|||||||
###################
|
###################
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def compute_user_score(cls, user: User) -> int:
|
def get_rulable_users(
|
||||||
|
cls, picture_count_threshold: int = DEFAULT_PICTURE_COUNT_THRESHOLD
|
||||||
|
) -> QuerySet[User]:
|
||||||
|
return (
|
||||||
|
User.objects.exclude(subscriptions=None)
|
||||||
|
.annotate(pictures_count=Count("pictures"))
|
||||||
|
.filter(pictures_count__gt=picture_count_threshold)
|
||||||
|
.distinct()
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def compute_individual_scores(cls) -> dict[int, int]:
|
||||||
"""Compute an individual score for each citizen.
|
"""Compute an individual score for each citizen.
|
||||||
|
|
||||||
It will later be used by the graph algorithm to push
|
It will later be used by the graph algorithm to push
|
||||||
@@ -211,87 +213,50 @@ class Galaxy(models.Model):
|
|||||||
|
|
||||||
Idea: This could be added to the computation:
|
Idea: This could be added to the computation:
|
||||||
|
|
||||||
- Forum posts
|
|
||||||
- Picture count
|
- Picture count
|
||||||
- Counter consumption
|
- Counter consumption
|
||||||
- Barman time
|
- Barman time
|
||||||
- ...
|
- ...
|
||||||
"""
|
"""
|
||||||
user_score = 1
|
users = (
|
||||||
user_score += cls.query_user_score(user)
|
User.objects.annotate(
|
||||||
|
score=(
|
||||||
|
Count("godchildren", distinct=True) * cls.FAMILY_LINK_POINTS
|
||||||
|
+ Count("godfathers", distinct=True) * cls.FAMILY_LINK_POINTS
|
||||||
|
+ Count("pictures", distinct=True) * cls.PICTURE_POINTS
|
||||||
|
+ Count("memberships", distinct=True) * cls.CLUBS_POINTS
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.filter(score__gt=0)
|
||||||
|
.values("id", "score")
|
||||||
|
)
|
||||||
# TODO:
|
# TODO:
|
||||||
# Scale that value with some magic number to accommodate to typical data
|
# Scale that value with some magic number to accommodate to typical data
|
||||||
# Really active galaxy citizen after 5 years typically have a score of about XXX
|
# Really active galaxy citizen after 5 years typically have a score of about XXX
|
||||||
# Citizen that were seen regularly without taking much part in organizations typically have a score of about XXX
|
# Citizen that were seen regularly without taking much part in organizations typically have a score of about XXX
|
||||||
# Citizen that only went to a few events typically score about XXX
|
# Citizen that only went to a few events typically score about XXX
|
||||||
user_score = int(math.log2(user_score))
|
res = {u["id"]: int(math.log2(u["score"] + 1)) for u in users}
|
||||||
|
return res
|
||||||
return user_score
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def query_user_score(cls, user: User) -> int:
|
|
||||||
"""Get the individual score of the given user in the galaxy."""
|
|
||||||
score_query = (
|
|
||||||
User.objects.filter(id=user.id)
|
|
||||||
.annotate(
|
|
||||||
godchildren_count=Count("godchildren", distinct=True)
|
|
||||||
* cls.FAMILY_LINK_POINTS,
|
|
||||||
godfathers_count=Count("godfathers", distinct=True)
|
|
||||||
* cls.FAMILY_LINK_POINTS,
|
|
||||||
pictures_score=Count("pictures", distinct=True) * cls.PICTURE_POINTS,
|
|
||||||
clubs_score=Count("memberships", distinct=True) * cls.CLUBS_POINTS,
|
|
||||||
)
|
|
||||||
.aggregate(
|
|
||||||
score=models.Sum(
|
|
||||||
F("godchildren_count")
|
|
||||||
+ F("godfathers_count")
|
|
||||||
+ F("pictures_score")
|
|
||||||
+ F("clubs_score")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
return score_query.get("score")
|
|
||||||
|
|
||||||
####################
|
####################
|
||||||
# Inter-user score #
|
# Inter-user score #
|
||||||
####################
|
####################
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def compute_users_score(cls, user1: User, user2: User) -> RelationScore:
|
def compute_user_family_score(cls, user: User) -> defaultdict[int, int]:
|
||||||
"""Compute the relationship scores of the two given users.
|
|
||||||
|
|
||||||
The computation is done with the following fields :
|
|
||||||
|
|
||||||
- family: if they have some godfather/godchild relation
|
|
||||||
- pictures: in how many pictures are both tagged
|
|
||||||
- clubs: during how many days they were members of the same clubs
|
|
||||||
"""
|
|
||||||
family = cls.compute_users_family_score(user1, user2)
|
|
||||||
pictures = cls.compute_users_pictures_score(user1, user2)
|
|
||||||
clubs = cls.compute_users_clubs_score(user1, user2)
|
|
||||||
return RelationScore(family=family, pictures=pictures, clubs=clubs)
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def compute_users_family_score(cls, user1: User, user2: User) -> int:
|
|
||||||
"""Compute the family score of the relation between the given users.
|
"""Compute the family score of the relation between the given users.
|
||||||
|
|
||||||
This takes into account mutual godfathers.
|
This takes into account mutual godfathers.
|
||||||
|
|
||||||
Returns:
|
|
||||||
366 if user1 is the godfather of user2 (or vice versa) else 0
|
|
||||||
"""
|
"""
|
||||||
link_count = User.objects.filter(
|
godchildren = User.objects.filter(godchildren=user).values_list("id", flat=True)
|
||||||
Q(id=user1.id, godfathers=user2) | Q(id=user2.id, godfathers=user1)
|
godfathers = User.objects.filter(godfathers=user).values_list("id", flat=True)
|
||||||
).count()
|
result = defaultdict(int)
|
||||||
if link_count > 0:
|
for parent in itertools.chain(godchildren, godfathers):
|
||||||
cls.logger.debug(
|
result[parent] += cls.FAMILY_LINK_POINTS
|
||||||
f"\t\t- '{user1}' and '{user2}' have {link_count} direct family link"
|
return result
|
||||||
)
|
|
||||||
return link_count * cls.FAMILY_LINK_POINTS
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def compute_users_pictures_score(cls, user1: User, user2: User) -> int:
|
def compute_user_pictures_score(cls, user: User) -> defaultdict[int, int]:
|
||||||
"""Compute the pictures score of the relation between the given users.
|
"""Compute the pictures score of the relation between the given users.
|
||||||
|
|
||||||
The pictures score is obtained by counting the number
|
The pictures score is obtained by counting the number
|
||||||
@@ -301,19 +266,19 @@ class Galaxy(models.Model):
|
|||||||
Returns:
|
Returns:
|
||||||
The number of pictures both users have in common, times 2
|
The number of pictures both users have in common, times 2
|
||||||
"""
|
"""
|
||||||
picture_count = (
|
common_photos = (
|
||||||
Picture.objects.filter(people__user__in=(user1,))
|
PeoplePictureRelation.objects.filter(
|
||||||
.filter(people__user__in=(user2,))
|
picture__in=Picture.objects.filter(people__user=user)
|
||||||
.count()
|
|
||||||
)
|
|
||||||
if picture_count:
|
|
||||||
cls.logger.debug(
|
|
||||||
f"\t\t- '{user1}' was pictured with '{user2}' {picture_count} times"
|
|
||||||
)
|
)
|
||||||
return picture_count * cls.PICTURE_POINTS
|
.values("user")
|
||||||
|
.annotate(count=Count("user"))
|
||||||
|
)
|
||||||
|
return defaultdict(
|
||||||
|
int, {p["user"]: p["count"] * cls.PICTURE_POINTS for p in common_photos}
|
||||||
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def compute_users_clubs_score(cls, user1: User, user2: User) -> int:
|
def compute_user_clubs_score(cls, user: User) -> defaultdict[int, int]:
|
||||||
"""Compute the clubs score of the relation between the given users.
|
"""Compute the clubs score of the relation between the given users.
|
||||||
|
|
||||||
The club score is obtained by counting the number of days
|
The club score is obtained by counting the number of days
|
||||||
@@ -324,54 +289,36 @@ class Galaxy(models.Model):
|
|||||||
(two years) and user2 was a member of the same club from 01/01/2021 to
|
(two years) and user2 was a member of the same club from 01/01/2021 to
|
||||||
31/12/2022 (also two years, but with an offset of one year), then their
|
31/12/2022 (also two years, but with an offset of one year), then their
|
||||||
club score is 365.
|
club score is 365.
|
||||||
|
|
||||||
Returns:
|
|
||||||
the number of days during which both users were in the same club
|
|
||||||
"""
|
"""
|
||||||
common_clubs = Club.objects.filter(members__in=user1.memberships.all()).filter(
|
memberships = user.memberships.only("start_date", "end_date", "club_id")
|
||||||
members__in=user2.memberships.all()
|
result = defaultdict(int)
|
||||||
)
|
now = localdate()
|
||||||
user1_memberships = user1.memberships.filter(club__in=common_clubs)
|
for membership in memberships:
|
||||||
user2_memberships = user2.memberships.filter(club__in=common_clubs)
|
# This is a N+1 query, but 92% of galaxy users have less than 10 memberships.
|
||||||
|
# Only 5 users have more than 30 memberships.
|
||||||
score = 0
|
common_memberships = (
|
||||||
for user1_membership in user1_memberships:
|
Membership.objects.exclude(user=user)
|
||||||
if user1_membership.end_date is None:
|
.filter(
|
||||||
# user1_membership.save() is not called in this function, hence this is safe
|
Q( # start2 <= start1 <= end2
|
||||||
user1_membership.end_date = localdate()
|
start_date__lte=membership.start_date,
|
||||||
query = Q( # start2 <= start1 <= end2
|
end_date__gte=membership.start_date,
|
||||||
start_date__lte=user1_membership.start_date,
|
|
||||||
end_date__gte=user1_membership.start_date,
|
|
||||||
)
|
|
||||||
query |= Q( # start2 <= start1 <= now
|
|
||||||
start_date__lte=user1_membership.start_date, end_date=None
|
|
||||||
)
|
|
||||||
query |= Q( # start1 <= start2 <= end2
|
|
||||||
start_date__gte=user1_membership.start_date,
|
|
||||||
start_date__lte=user1_membership.end_date,
|
|
||||||
)
|
|
||||||
for user2_membership in user2_memberships.filter(
|
|
||||||
query, club=user1_membership.club
|
|
||||||
):
|
|
||||||
if user2_membership.end_date is None:
|
|
||||||
user2_membership.end_date = localdate()
|
|
||||||
latest_start = max(
|
|
||||||
user1_membership.start_date, user2_membership.start_date
|
|
||||||
)
|
|
||||||
earliest_end = min(user1_membership.end_date, user2_membership.end_date)
|
|
||||||
cls.logger.debug(
|
|
||||||
"\t\t- '%s' was with '%s' in %s starting on %s until %s (%s days)"
|
|
||||||
% (
|
|
||||||
user1,
|
|
||||||
user2,
|
|
||||||
user2_membership.club,
|
|
||||||
latest_start,
|
|
||||||
earliest_end,
|
|
||||||
(earliest_end - latest_start).days,
|
|
||||||
)
|
)
|
||||||
|
| Q( # start2 <= start1 <= now
|
||||||
|
start_date__lte=membership.start_date, end_date=None
|
||||||
|
)
|
||||||
|
| Q( # start1 <= start2 <= end2
|
||||||
|
start_date__gte=membership.start_date,
|
||||||
|
start_date__lte=membership.end_date or now,
|
||||||
|
),
|
||||||
|
club_id=membership.club_id,
|
||||||
)
|
)
|
||||||
score += cls.CLUBS_POINTS * (earliest_end - latest_start).days
|
.only("start_date", "end_date", "user_id")
|
||||||
return score
|
)
|
||||||
|
for other in common_memberships:
|
||||||
|
start = max(membership.start_date, other.start_date)
|
||||||
|
end = min(membership.end_date or now, other.end_date or now)
|
||||||
|
result[other.user_id] += (end - start).days * cls.CLUBS_POINTS
|
||||||
|
return result
|
||||||
|
|
||||||
###################
|
###################
|
||||||
# Rule the galaxy #
|
# Rule the galaxy #
|
||||||
@@ -406,7 +353,9 @@ class Galaxy(models.Model):
|
|||||||
cls.logger.debug(f"\t\t> Scaled distance: {value}")
|
cls.logger.debug(f"\t\t> Scaled distance: {value}")
|
||||||
return int(value)
|
return int(value)
|
||||||
|
|
||||||
def rule(self, picture_count_threshold=10) -> None:
|
def rule(
|
||||||
|
self, picture_count_threshold: int = DEFAULT_PICTURE_COUNT_THRESHOLD
|
||||||
|
) -> None:
|
||||||
"""Main function of the Galaxy.
|
"""Main function of the Galaxy.
|
||||||
|
|
||||||
Iterate over all the rulable users to promote them to citizens.
|
Iterate over all the rulable users to promote them to citizens.
|
||||||
@@ -427,41 +376,30 @@ class Galaxy(models.Model):
|
|||||||
"""
|
"""
|
||||||
total_time = time.time()
|
total_time = time.time()
|
||||||
self.logger.info("Listing rulable citizen.")
|
self.logger.info("Listing rulable citizen.")
|
||||||
rulable_users = (
|
|
||||||
User.objects.filter(subscriptions__isnull=False)
|
|
||||||
.annotate(pictures_count=Count("pictures"))
|
|
||||||
.filter(pictures_count__gt=picture_count_threshold)
|
|
||||||
.distinct()
|
|
||||||
)
|
|
||||||
|
|
||||||
# force fetch of the whole query to make sure there won't
|
# force fetch of the whole query to make sure there won't
|
||||||
# be any more db hits
|
# be any more db hits
|
||||||
# this is memory expensive but prevents a lot of db hits, therefore
|
# this is memory expensive but prevents a lot of db hits, therefore
|
||||||
# is far more time efficient
|
# is far more time efficient
|
||||||
|
|
||||||
rulable_users = list(rulable_users)
|
rulable_users = list(self.get_rulable_users(picture_count_threshold))
|
||||||
rulable_users_count = len(rulable_users)
|
rulable_users_count = len(rulable_users)
|
||||||
user1_count = 0
|
user1_count = 0
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"{rulable_users_count} citizen have been listed. Starting to rule."
|
f"{rulable_users_count} citizen have been listed. Starting to rule."
|
||||||
)
|
)
|
||||||
|
|
||||||
stars = []
|
|
||||||
self.logger.info("Creating stars for all citizen")
|
self.logger.info("Creating stars for all citizen")
|
||||||
for user in rulable_users:
|
individual_scores = self.compute_individual_scores()
|
||||||
star = GalaxyStar(
|
GalaxyStar.objects.bulk_create(
|
||||||
owner=user, galaxy=self, mass=self.compute_user_score(user)
|
[
|
||||||
)
|
GalaxyStar(owner=user, galaxy=self, mass=individual_scores[user.id])
|
||||||
stars.append(star)
|
for user in rulable_users
|
||||||
GalaxyStar.objects.bulk_create(stars)
|
]
|
||||||
|
)
|
||||||
stars = {}
|
stars = {star.owner_id: star for star in self.stars.all()}
|
||||||
for star in GalaxyStar.objects.filter(galaxy=self):
|
|
||||||
stars[star.owner.id] = star
|
|
||||||
|
|
||||||
self.logger.info("Creating lanes between stars")
|
self.logger.info("Creating lanes between stars")
|
||||||
# Display current speed every $speed_count_frequency users
|
|
||||||
speed_count_frequency = max(rulable_users_count // 10, 1) # ten time at most
|
|
||||||
global_avg_speed_accumulator = 0
|
global_avg_speed_accumulator = 0
|
||||||
global_avg_speed_count = 0
|
global_avg_speed_count = 0
|
||||||
t_global_start = time.time()
|
t_global_start = time.time()
|
||||||
@@ -472,20 +410,19 @@ class Galaxy(models.Model):
|
|||||||
|
|
||||||
star1 = stars[user1.id]
|
star1 = stars[user1.id]
|
||||||
|
|
||||||
user_avg_speed = 0
|
|
||||||
user_avg_speed_count = 0
|
|
||||||
|
|
||||||
tstart = time.time()
|
|
||||||
lanes = []
|
lanes = []
|
||||||
for user2_count, user2 in enumerate(rulable_users, start=1):
|
family_scores = self.compute_user_family_score(user1)
|
||||||
self.logger.debug("")
|
picture_scores = self.compute_user_pictures_score(user1)
|
||||||
self.logger.debug(
|
club_scores = self.compute_user_clubs_score(user1)
|
||||||
f"\t> Examining '{user1}' ({user1_count}/{rulable_users_count}) with '{user2}' ({user2_count}/{rulable_users_count2})"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
for user2 in rulable_users:
|
||||||
star2 = stars[user2.id]
|
star2 = stars[user2.id]
|
||||||
|
|
||||||
score = Galaxy.compute_users_score(user1, user2)
|
score = RelationScore(
|
||||||
|
family=family_scores.get(user2.id, 0),
|
||||||
|
pictures=picture_scores.get(user2.id, 0),
|
||||||
|
clubs=club_scores.get(user2.id, 0),
|
||||||
|
)
|
||||||
distance = self.scale_distance(sum(score))
|
distance = self.scale_distance(sum(score))
|
||||||
if distance < 30: # TODO: this needs tuning with real-world data
|
if distance < 30: # TODO: this needs tuning with real-world data
|
||||||
lanes.append(
|
lanes.append(
|
||||||
@@ -498,22 +435,8 @@ class Galaxy(models.Model):
|
|||||||
clubs=score.clubs,
|
clubs=score.clubs,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if user2_count % speed_count_frequency == 0:
|
|
||||||
tend = time.time()
|
|
||||||
delta = tend - tstart
|
|
||||||
speed = float(speed_count_frequency) / delta
|
|
||||||
user_avg_speed += speed
|
|
||||||
user_avg_speed_count += 1
|
|
||||||
self.logger.debug(
|
|
||||||
f"\tSpeed: {speed:.2f} users per second (time for last {speed_count_frequency} citizens: {delta:.2f} second)"
|
|
||||||
)
|
|
||||||
tstart = time.time()
|
|
||||||
|
|
||||||
GalaxyLane.objects.bulk_create(lanes)
|
GalaxyLane.objects.bulk_create(lanes)
|
||||||
|
|
||||||
self.logger.info("")
|
|
||||||
|
|
||||||
t_global_end = time.time()
|
t_global_end = time.time()
|
||||||
global_delta = t_global_end - t_global_start
|
global_delta = t_global_end - t_global_start
|
||||||
speed = 1.0 / global_delta
|
speed = 1.0 / global_delta
|
||||||
@@ -521,21 +444,19 @@ class Galaxy(models.Model):
|
|||||||
global_avg_speed_count += 1
|
global_avg_speed_count += 1
|
||||||
global_avg_speed = global_avg_speed_accumulator / global_avg_speed_count
|
global_avg_speed = global_avg_speed_accumulator / global_avg_speed_count
|
||||||
|
|
||||||
self.logger.info(f" Ruling of {self} ".center(60, "#"))
|
if user1_count % 50 == 0:
|
||||||
self.logger.info(
|
self.logger.info("")
|
||||||
f"Progression: {user1_count}/{rulable_users_count} citizen -- {rulable_users_count - user1_count} remaining"
|
self.logger.info(f" Ruling of {self} ".center(60, "#"))
|
||||||
)
|
self.logger.info(
|
||||||
self.logger.info(f"Speed: {60.0 * global_avg_speed:.2f} citizen per minute")
|
f"Progression: {user1_count}/{rulable_users_count} "
|
||||||
|
f"citizen -- {rulable_users_count - user1_count} remaining"
|
||||||
# We can divide the computed ETA by 2 because each loop, there is one citizen less to check, and maths tell
|
)
|
||||||
# us that this averages to a division by two
|
self.logger.info(f"Speed: {global_avg_speed:.2f} citizen per second")
|
||||||
eta = rulable_users_count2 / global_avg_speed / 2
|
eta = rulable_users_count2 // global_avg_speed
|
||||||
eta_hours = int(eta // 3600)
|
self.logger.info(
|
||||||
eta_minutes = int(eta // 60 % 60)
|
f"ETA: {int(eta // 60 % 60)} minutes {int(eta % 60)} seconds"
|
||||||
self.logger.info(
|
)
|
||||||
f"ETA: {eta_hours} hours {eta_minutes} minutes ({eta / 3600 / 24:.2f} days)"
|
self.logger.info("#" * 60)
|
||||||
)
|
|
||||||
self.logger.info("#" * 60)
|
|
||||||
t_global_start = time.time()
|
t_global_start = time.time()
|
||||||
|
|
||||||
# Here, we get the IDs of the old galaxies that we'll need to delete. In normal operation, only one galaxy
|
# Here, we get the IDs of the old galaxies that we'll need to delete. In normal operation, only one galaxy
|
||||||
@@ -556,11 +477,10 @@ class Galaxy(models.Model):
|
|||||||
Galaxy.objects.filter(pk__in=old_galaxies_pks).delete()
|
Galaxy.objects.filter(pk__in=old_galaxies_pks).delete()
|
||||||
|
|
||||||
total_time = time.time() - total_time
|
total_time = time.time() - total_time
|
||||||
total_time_hours = int(total_time // 3600)
|
|
||||||
total_time_minutes = int(total_time // 60 % 60)
|
total_time_minutes = int(total_time // 60 % 60)
|
||||||
total_time_seconds = int(total_time % 60)
|
total_time_seconds = int(total_time % 60)
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"{self} ruled in {total_time:.2f} seconds ({total_time_hours} hours, {total_time_minutes} minutes, {total_time_seconds} seconds)"
|
f"{self} ruled in {total_time_minutes} minutes, {total_time_seconds} seconds"
|
||||||
)
|
)
|
||||||
|
|
||||||
def make_state(self) -> None:
|
def make_state(self) -> None:
|
||||||
@@ -568,59 +488,34 @@ class Galaxy(models.Model):
|
|||||||
self.logger.info(
|
self.logger.info(
|
||||||
"Caching current Galaxy state for a quicker display of the Empire's power."
|
"Caching current Galaxy state for a quicker display of the Empire's power."
|
||||||
)
|
)
|
||||||
|
|
||||||
without_nickname = Concat(
|
|
||||||
F("owner__first_name"), Value(" "), F("owner__last_name")
|
|
||||||
)
|
|
||||||
with_nickname = Concat(
|
|
||||||
F("owner__first_name"),
|
|
||||||
Value(" "),
|
|
||||||
F("owner__last_name"),
|
|
||||||
Value(" ("),
|
|
||||||
F("owner__nick_name"),
|
|
||||||
Value(")"),
|
|
||||||
)
|
|
||||||
stars = (
|
stars = (
|
||||||
GalaxyStar.objects.filter(galaxy=self)
|
GalaxyStar.objects.filter(galaxy=self)
|
||||||
.order_by(
|
.order_by("owner_id")
|
||||||
"owner"
|
.select_related("owner")
|
||||||
) # This helps determinism for the tests and doesn't cost much
|
|
||||||
.annotate(
|
|
||||||
owner_name=Case(
|
|
||||||
When(owner__nick_name=None, then=without_nickname),
|
|
||||||
default=with_nickname,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
lanes = (
|
lanes = (
|
||||||
GalaxyLane.objects.filter(star1__galaxy=self)
|
GalaxyLane.objects.filter(star1__galaxy=self)
|
||||||
.order_by(
|
.order_by("star1")
|
||||||
"star1"
|
|
||||||
) # This helps determinism for the tests and doesn't cost much
|
|
||||||
.annotate(
|
.annotate(
|
||||||
star1_owner=F("star1__owner__id"),
|
star1_owner=F("star1__owner_id"), star2_owner=F("star2__owner_id")
|
||||||
star2_owner=F("star2__owner__id"),
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
json = GalaxyDict(
|
json = GalaxyDict(
|
||||||
nodes=[
|
nodes=[
|
||||||
StarDict(
|
StarDict(
|
||||||
id=star.owner_id,
|
id=star.owner_id, name=star.owner.get_display_name(), mass=star.mass
|
||||||
name=star.owner_name,
|
|
||||||
mass=star.mass,
|
|
||||||
)
|
)
|
||||||
for star in stars
|
for star in stars
|
||||||
],
|
],
|
||||||
links=[],
|
links=[
|
||||||
)
|
|
||||||
for path in lanes:
|
|
||||||
json["links"].append(
|
|
||||||
{
|
{
|
||||||
"source": path.star1_owner,
|
"source": path.star1_owner,
|
||||||
"target": path.star2_owner,
|
"target": path.star2_owner,
|
||||||
"value": path.distance,
|
"value": path.distance,
|
||||||
}
|
}
|
||||||
)
|
for path in lanes
|
||||||
|
],
|
||||||
|
)
|
||||||
self.state = json
|
self.state = json
|
||||||
self.save()
|
self.save()
|
||||||
self.logger.info(f"{self} is now ready!")
|
self.logger.info(f"{self} is now ready!")
|
||||||
|
@@ -33,7 +33,7 @@ from core.models import User
|
|||||||
from galaxy.models import Galaxy
|
from galaxy.models import Galaxy
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip(reason="Galaxy is disabled for now")
|
# @pytest.mark.skip(reason="Galaxy is disabled for now")
|
||||||
class TestGalaxyModel(TestCase):
|
class TestGalaxyModel(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
@@ -48,15 +48,19 @@ class TestGalaxyModel(TestCase):
|
|||||||
|
|
||||||
def test_user_self_score(self):
|
def test_user_self_score(self):
|
||||||
"""Test that individual user scores are correct."""
|
"""Test that individual user scores are correct."""
|
||||||
with self.assertNumQueries(8):
|
with self.assertNumQueries(1):
|
||||||
assert Galaxy.compute_user_score(self.root) == 9
|
scores = Galaxy.compute_individual_scores()
|
||||||
assert Galaxy.compute_user_score(self.skia) == 10
|
expected = {
|
||||||
assert Galaxy.compute_user_score(self.sli) == 8
|
self.root.id: 9,
|
||||||
assert Galaxy.compute_user_score(self.krophil) == 2
|
self.skia.id: 10,
|
||||||
assert Galaxy.compute_user_score(self.richard) == 10
|
self.sli.id: 8,
|
||||||
assert Galaxy.compute_user_score(self.subscriber) == 8
|
self.krophil.id: 2,
|
||||||
assert Galaxy.compute_user_score(self.public) == 8
|
self.richard.id: 10,
|
||||||
assert Galaxy.compute_user_score(self.com) == 1
|
self.subscriber.id: 8,
|
||||||
|
self.public.id: 8,
|
||||||
|
self.com.id: 1,
|
||||||
|
}
|
||||||
|
assert scores.items() >= expected.items()
|
||||||
|
|
||||||
def test_users_score(self):
|
def test_users_score(self):
|
||||||
"""Test on the default dataset generated by the `populate` command
|
"""Test on the default dataset generated by the `populate` command
|
||||||
@@ -118,17 +122,23 @@ class TestGalaxyModel(TestCase):
|
|||||||
self.com,
|
self.com,
|
||||||
]
|
]
|
||||||
|
|
||||||
with self.assertNumQueries(100):
|
with self.assertNumQueries(44):
|
||||||
while len(users) > 0:
|
while len(users) > 0:
|
||||||
user1 = users.pop(0)
|
user1 = users.pop(0)
|
||||||
|
family_scores = Galaxy.compute_user_family_score(user1)
|
||||||
|
picture_scores = Galaxy.compute_user_pictures_score(user1)
|
||||||
|
club_scores = Galaxy.compute_user_clubs_score(user1)
|
||||||
for user2 in users:
|
for user2 in users:
|
||||||
score = Galaxy.compute_users_score(user1, user2)
|
|
||||||
u1 = computed_scores.get(user1.username, {})
|
u1 = computed_scores.get(user1.username, {})
|
||||||
u1[user2.username] = {
|
u1[user2.username] = {
|
||||||
"score": sum(score),
|
"score": (
|
||||||
"family": score.family,
|
family_scores[user2.id]
|
||||||
"pictures": score.pictures,
|
+ picture_scores[user2.id]
|
||||||
"clubs": score.clubs,
|
+ club_scores[user2.id]
|
||||||
|
),
|
||||||
|
"family": family_scores[user2.id],
|
||||||
|
"pictures": picture_scores[user2.id],
|
||||||
|
"clubs": club_scores[user2.id],
|
||||||
}
|
}
|
||||||
computed_scores[user1.username] = u1
|
computed_scores[user1.username] = u1
|
||||||
|
|
||||||
@@ -140,12 +150,12 @@ class TestGalaxyModel(TestCase):
|
|||||||
that the number of queries to rule the galaxy is stable.
|
that the number of queries to rule the galaxy is stable.
|
||||||
"""
|
"""
|
||||||
galaxy = Galaxy.objects.create()
|
galaxy = Galaxy.objects.create()
|
||||||
with self.assertNumQueries(58):
|
with self.assertNumQueries(39):
|
||||||
galaxy.rule(0) # We want everybody here
|
galaxy.rule(0) # We want everybody here
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.slow
|
@pytest.mark.slow
|
||||||
@pytest.mark.skip(reason="Galaxy is disabled for now")
|
# @pytest.mark.skip(reason="Galaxy is disabled for now")
|
||||||
class TestGalaxyView(TestCase):
|
class TestGalaxyView(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -251,6 +251,14 @@ msgstr "Types de produits réordonnés !"
|
|||||||
msgid "Product type reorganisation failed with status code : %d"
|
msgid "Product type reorganisation failed with status code : %d"
|
||||||
msgstr "La réorganisation des types de produit a échoué avec le code : %d"
|
msgstr "La réorganisation des types de produit a échoué avec le code : %d"
|
||||||
|
|
||||||
|
#: reservation/static/bundled/reservation/components/room-scheduler-index.ts
|
||||||
|
msgid "Rooms"
|
||||||
|
msgstr "Salles"
|
||||||
|
|
||||||
|
#: reservation/static/bundled/reservation/slot-reservation-index.ts
|
||||||
|
msgid "This slot has been successfully moved"
|
||||||
|
msgstr "Ce créneau a été bougé avec succès"
|
||||||
|
|
||||||
#: sas/static/bundled/sas/pictures-download-index.ts
|
#: sas/static/bundled/sas/pictures-download-index.ts
|
||||||
msgid "pictures.%(extension)s"
|
msgid "pictures.%(extension)s"
|
||||||
msgstr "photos.%(extension)s"
|
msgstr "photos.%(extension)s"
|
||||||
|
1167
package-lock.json
generated
1167
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
@@ -21,7 +21,8 @@
|
|||||||
"#core:*": "./core/static/bundled/*",
|
"#core:*": "./core/static/bundled/*",
|
||||||
"#pedagogy:*": "./pedagogy/static/bundled/*",
|
"#pedagogy:*": "./pedagogy/static/bundled/*",
|
||||||
"#counter:*": "./counter/static/bundled/*",
|
"#counter:*": "./counter/static/bundled/*",
|
||||||
"#com:*": "./com/static/bundled/*"
|
"#com:*": "./com/static/bundled/*",
|
||||||
|
"#reservation:*": "./reservation/static/bundled/*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.25.2",
|
"@babel/core": "^7.25.2",
|
||||||
@@ -35,19 +36,23 @@
|
|||||||
"@types/jquery": "^3.5.31",
|
"@types/jquery": "^3.5.31",
|
||||||
"@types/js-cookie": "^3.0.6",
|
"@types/js-cookie": "^3.0.6",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.8.3",
|
||||||
"vite": "^6.2.5",
|
"vite": "^6.2.6",
|
||||||
"vite-bundle-visualizer": "^1.2.1",
|
"vite-bundle-visualizer": "^1.2.1",
|
||||||
"vite-plugin-static-copy": "^3.0.2"
|
"vite-plugin-static-copy": "^3.1.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@alpinejs/morph": "^3.14.9",
|
||||||
"@alpinejs/sort": "^3.14.7",
|
"@alpinejs/sort": "^3.14.7",
|
||||||
"@arendjr/text-clipper": "npm:@jsr/arendjr__text-clipper@^3.0.0",
|
"@arendjr/text-clipper": "npm:@jsr/arendjr__text-clipper@^3.0.0",
|
||||||
"@floating-ui/dom": "^1.6.13",
|
"@floating-ui/dom": "^1.6.13",
|
||||||
"@fortawesome/fontawesome-free": "^6.6.0",
|
"@fortawesome/fontawesome-free": "^6.6.0",
|
||||||
"@fullcalendar/core": "^6.1.15",
|
"@fullcalendar/core": "^6.1.17",
|
||||||
"@fullcalendar/daygrid": "^6.1.15",
|
"@fullcalendar/daygrid": "^6.1.17",
|
||||||
"@fullcalendar/icalendar": "^6.1.15",
|
"@fullcalendar/icalendar": "^6.1.17",
|
||||||
"@fullcalendar/list": "^6.1.15",
|
"@fullcalendar/interaction": "^6.1.17",
|
||||||
|
"@fullcalendar/list": "^6.1.17",
|
||||||
|
"@fullcalendar/resource": "^6.1.17",
|
||||||
|
"@fullcalendar/resource-timeline": "^6.1.17",
|
||||||
"@sentry/browser": "^9.29.0",
|
"@sentry/browser": "^9.29.0",
|
||||||
"@zip.js/zip.js": "^2.7.52",
|
"@zip.js/zip.js": "^2.7.52",
|
||||||
"3d-force-graph": "^1.73.4",
|
"3d-force-graph": "^1.73.4",
|
||||||
@@ -60,6 +65,7 @@
|
|||||||
"d3-force-3d": "^3.0.5",
|
"d3-force-3d": "^3.0.5",
|
||||||
"easymde": "^2.19.0",
|
"easymde": "^2.19.0",
|
||||||
"glob": "^11.0.0",
|
"glob": "^11.0.0",
|
||||||
|
"htmx-ext-alpine-morph": "^2.0.1",
|
||||||
"htmx.org": "^2.0.3",
|
"htmx.org": "^2.0.3",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
|
@@ -2,9 +2,13 @@
|
|||||||
{% from 'core/macros.jinja' import paginate_alpine %}
|
{% from 'core/macros.jinja' import paginate_alpine %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% trans %}UV Guide{% endtrans %}
|
{% trans %}UE Guide{% endtrans %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{% trans %}A guide of courses available at UTBM.{% endtrans %}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% block additional_css %}
|
{% block additional_css %}
|
||||||
<link rel="stylesheet" href="{{ static('pedagogy/css/pedagogy.scss') }}">
|
<link rel="stylesheet" href="{{ static('pedagogy/css/pedagogy.scss') }}">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@@ -43,8 +43,8 @@ dependencies = [
|
|||||||
"tomli<3.0.0,>=2.2.1",
|
"tomli<3.0.0,>=2.2.1",
|
||||||
"django-honeypot>=1.3.0,<2",
|
"django-honeypot>=1.3.0,<2",
|
||||||
"pydantic-extra-types<3.0.0,>=2.10.3",
|
"pydantic-extra-types<3.0.0,>=2.10.3",
|
||||||
"ical>=10.0.3,<11",
|
"ical>=11,<12",
|
||||||
"redis[hiredis]<6.0.0,>=5.3.0",
|
"redis[hiredis]<7,>=5.3.0",
|
||||||
"environs[django]<15.0.0,>=14.1.1",
|
"environs[django]<15.0.0,>=14.1.1",
|
||||||
"requests>=2.32.3",
|
"requests>=2.32.3",
|
||||||
"honcho>=2.0.0",
|
"honcho>=2.0.0",
|
||||||
@@ -63,7 +63,7 @@ prod = [
|
|||||||
"psycopg[c]>=3.2.9,<4.0.0",
|
"psycopg[c]>=3.2.9,<4.0.0",
|
||||||
]
|
]
|
||||||
dev = [
|
dev = [
|
||||||
"django-debug-toolbar>=5.2.0,<6.0.0",
|
"django-debug-toolbar>=6,<7",
|
||||||
"ipython<10.0.0,>=9.0.2",
|
"ipython<10.0.0,>=9.0.2",
|
||||||
"pre-commit<5.0.0,>=4.1.0",
|
"pre-commit<5.0.0,>=4.1.0",
|
||||||
"ruff>=0.11.13,<1.0.0",
|
"ruff>=0.11.13,<1.0.0",
|
||||||
@@ -78,7 +78,7 @@ tests = [
|
|||||||
"pytest-django<5.0.0,>=4.10.0",
|
"pytest-django<5.0.0,>=4.10.0",
|
||||||
"model-bakery<2.0.0,>=1.20.4",
|
"model-bakery<2.0.0,>=1.20.4",
|
||||||
"beautifulsoup4>=4.13.3,<5",
|
"beautifulsoup4>=4.13.3,<5",
|
||||||
"lxml>=5.3.1,<6",
|
"lxml>=6,<7",
|
||||||
]
|
]
|
||||||
docs = [
|
docs = [
|
||||||
"mkdocs<2.0.0,>=1.6.1",
|
"mkdocs<2.0.0,>=1.6.1",
|
||||||
|
0
reservation/__init__.py
Normal file
0
reservation/__init__.py
Normal file
19
reservation/admin.py
Normal file
19
reservation/admin.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(Room)
|
||||||
|
class RoomAdmin(admin.ModelAdmin):
|
||||||
|
list_display = ("name", "club")
|
||||||
|
list_filter = (("club", admin.RelatedOnlyFieldListFilter), "location")
|
||||||
|
autocomplete_fields = ("club",)
|
||||||
|
search_fields = ("name",)
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(ReservationSlot)
|
||||||
|
class ReservationSlotAdmin(admin.ModelAdmin):
|
||||||
|
list_display = ("room", "start_at", "end_at", "author")
|
||||||
|
autocomplete_fields = ("author",)
|
||||||
|
list_filter = ("room",)
|
||||||
|
date_hierarchy = "start_at"
|
64
reservation/api.py
Normal file
64
reservation/api.py
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
from typing import Any, Literal
|
||||||
|
|
||||||
|
from django.core.exceptions import ValidationError
|
||||||
|
from ninja import Query
|
||||||
|
from ninja_extra import ControllerBase, api_controller, paginate, route
|
||||||
|
from ninja_extra.pagination import PageNumberPaginationExtra
|
||||||
|
from ninja_extra.schemas import PaginatedResponseSchema
|
||||||
|
|
||||||
|
from api.permissions import HasPerm
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
from reservation.schemas import (
|
||||||
|
RoomFilterSchema,
|
||||||
|
RoomSchema,
|
||||||
|
SlotFilterSchema,
|
||||||
|
SlotSchema,
|
||||||
|
UpdateReservationSlotSchema,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@api_controller("/reservation/room")
|
||||||
|
class ReservableRoomController(ControllerBase):
|
||||||
|
@route.get(
|
||||||
|
"",
|
||||||
|
response=list[RoomSchema],
|
||||||
|
permissions=[HasPerm("reservation.view_room")],
|
||||||
|
url_name="fetch_reservable_rooms",
|
||||||
|
)
|
||||||
|
def fetch_rooms(self, filters: Query[RoomFilterSchema]):
|
||||||
|
return filters.filter(Room.objects.select_related("club"))
|
||||||
|
|
||||||
|
|
||||||
|
@api_controller("/reservation/slot")
|
||||||
|
class ReservationSlotController(ControllerBase):
|
||||||
|
@route.get(
|
||||||
|
"",
|
||||||
|
response=PaginatedResponseSchema[SlotSchema],
|
||||||
|
permissions=[HasPerm("reservation.view_reservationslot")],
|
||||||
|
url_name="fetch_reservation_slots",
|
||||||
|
)
|
||||||
|
@paginate(PageNumberPaginationExtra)
|
||||||
|
def fetch_slots(self, filters: Query[SlotFilterSchema]):
|
||||||
|
return filters.filter(
|
||||||
|
ReservationSlot.objects.select_related("author").order_by("start_at")
|
||||||
|
)
|
||||||
|
|
||||||
|
@route.patch(
|
||||||
|
"/reservation/slot/{int:slot_id}",
|
||||||
|
permissions=[HasPerm("reservation.change_reservationslot")],
|
||||||
|
response={
|
||||||
|
200: None,
|
||||||
|
409: dict[Literal["detail"], dict[str, list[str]]],
|
||||||
|
422: dict[Literal["detail"], list[dict[str, Any]]],
|
||||||
|
},
|
||||||
|
url_name="change_reservation_slot",
|
||||||
|
)
|
||||||
|
def update_slot(self, slot_id: int, params: UpdateReservationSlotSchema):
|
||||||
|
slot = self.get_object_or_exception(ReservationSlot, id=slot_id)
|
||||||
|
slot.start_at = params.start_at
|
||||||
|
slot.end_at = params.end_at
|
||||||
|
try:
|
||||||
|
slot.full_clean()
|
||||||
|
slot.save()
|
||||||
|
except ValidationError as e:
|
||||||
|
return self.create_response({"detail": dict(e)}, status_code=409)
|
6
reservation/apps.py
Normal file
6
reservation/apps.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationConfig(AppConfig):
|
||||||
|
default_auto_field = "django.db.models.BigAutoField"
|
||||||
|
name = "reservation"
|
60
reservation/forms.py
Normal file
60
reservation/forms.py
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
from django import forms
|
||||||
|
from django.core.exceptions import NON_FIELD_ERRORS
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
from club.widgets.ajax_select import AutoCompleteSelectClub
|
||||||
|
from core.models import User
|
||||||
|
from core.views.forms import FutureDateTimeField, SelectDateTime
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
|
||||||
|
|
||||||
|
class RoomCreateForm(forms.ModelForm):
|
||||||
|
required_css_class = "required"
|
||||||
|
error_css_class = "error"
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = Room
|
||||||
|
fields = ["name", "club", "location", "description"]
|
||||||
|
widgets = {"club": AutoCompleteSelectClub}
|
||||||
|
|
||||||
|
|
||||||
|
class RoomUpdateForm(forms.ModelForm):
|
||||||
|
required_css_class = "required"
|
||||||
|
error_css_class = "error"
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = Room
|
||||||
|
fields = ["name", "club", "location", "description"]
|
||||||
|
widgets = {"club": AutoCompleteSelectClub}
|
||||||
|
|
||||||
|
def __init__(self, *args, request_user: User, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
if not request_user.has_perm("reservation.change_room"):
|
||||||
|
# if the user doesn't have the global edition permission
|
||||||
|
# (i.e. it's a club board member, but not a sith admin)
|
||||||
|
# some fields aren't editable
|
||||||
|
del self.fields["club"]
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationForm(forms.ModelForm):
|
||||||
|
required_css_class = "required"
|
||||||
|
error_css_class = "error"
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = ReservationSlot
|
||||||
|
fields = ["room", "start_at", "end_at", "comment"]
|
||||||
|
field_classes = {"start_at": FutureDateTimeField, "end_at": FutureDateTimeField}
|
||||||
|
widgets = {"start_at": SelectDateTime(), "end_at": SelectDateTime()}
|
||||||
|
error_messages = {
|
||||||
|
NON_FIELD_ERRORS: {
|
||||||
|
"start_after_end": _("The start must be set before the end")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def __init__(self, *args, author: User, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.author = author
|
||||||
|
|
||||||
|
def save(self, commit: bool = True): # noqa FBT001
|
||||||
|
self.instance.author = self.author
|
||||||
|
return super().save(commit)
|
117
reservation/migrations/0001_initial.py
Normal file
117
reservation/migrations/0001_initial.py
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
# Generated by Django 5.2.1 on 2025-06-05 10:44
|
||||||
|
|
||||||
|
import django.core.validators
|
||||||
|
import django.db.models.deletion
|
||||||
|
from django.conf import settings
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
initial = True
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("club", "0014_alter_club_options_rename_unix_name_club_slug_name_and_more"),
|
||||||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name="Room",
|
||||||
|
fields=[
|
||||||
|
(
|
||||||
|
"id",
|
||||||
|
models.BigAutoField(
|
||||||
|
auto_created=True,
|
||||||
|
primary_key=True,
|
||||||
|
serialize=False,
|
||||||
|
verbose_name="ID",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
("name", models.CharField(max_length=100, verbose_name="room name")),
|
||||||
|
(
|
||||||
|
"description",
|
||||||
|
models.TextField(
|
||||||
|
blank=True, default="", verbose_name="description"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"location",
|
||||||
|
models.CharField(
|
||||||
|
blank=True,
|
||||||
|
choices=[
|
||||||
|
("BELFORT", "Belfort"),
|
||||||
|
("SEVENANS", "Sévenans"),
|
||||||
|
("MONTBELIARD", "Montbéliard"),
|
||||||
|
],
|
||||||
|
verbose_name="site",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"club",
|
||||||
|
models.ForeignKey(
|
||||||
|
help_text="The club which manages this room",
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
related_name="reservable_rooms",
|
||||||
|
to="club.club",
|
||||||
|
verbose_name="room owner",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
"verbose_name": "reservable room",
|
||||||
|
"verbose_name_plural": "reservable rooms",
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name="ReservationSlot",
|
||||||
|
fields=[
|
||||||
|
(
|
||||||
|
"id",
|
||||||
|
models.BigAutoField(
|
||||||
|
auto_created=True,
|
||||||
|
primary_key=True,
|
||||||
|
serialize=False,
|
||||||
|
verbose_name="ID",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"comment",
|
||||||
|
models.TextField(blank=True, default="", verbose_name="comment"),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"start_at",
|
||||||
|
models.DateTimeField(db_index=True, verbose_name="slot start"),
|
||||||
|
),
|
||||||
|
("end_at", models.DateTimeField(verbose_name="slot end")),
|
||||||
|
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||||
|
(
|
||||||
|
"author",
|
||||||
|
models.ForeignKey(
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
to=settings.AUTH_USER_MODEL,
|
||||||
|
verbose_name="author",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"room",
|
||||||
|
models.ForeignKey(
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
related_name="slots",
|
||||||
|
to="reservation.room",
|
||||||
|
verbose_name="reserved room",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
"verbose_name": "reservation slot",
|
||||||
|
"verbose_name_plural": "reservation slots",
|
||||||
|
"constraints": [
|
||||||
|
models.CheckConstraint(
|
||||||
|
condition=models.Q(("end_at__gt", models.F("start_at"))),
|
||||||
|
name="reservation_slot_end_after_start",
|
||||||
|
violation_error_code="start_after_end",
|
||||||
|
)
|
||||||
|
],
|
||||||
|
},
|
||||||
|
),
|
||||||
|
]
|
0
reservation/migrations/__init__.py
Normal file
0
reservation/migrations/__init__.py
Normal file
100
reservation/models.py
Normal file
100
reservation/models.py
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Self
|
||||||
|
|
||||||
|
from django.core.exceptions import ValidationError
|
||||||
|
from django.db import models
|
||||||
|
from django.db.models import F, Q
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
from club.models import Club
|
||||||
|
from core.models import User
|
||||||
|
|
||||||
|
|
||||||
|
class Room(models.Model):
|
||||||
|
name = models.CharField(_("room name"), max_length=100)
|
||||||
|
description = models.TextField(_("description"), blank=True, default="")
|
||||||
|
club = models.ForeignKey(
|
||||||
|
Club,
|
||||||
|
on_delete=models.CASCADE,
|
||||||
|
related_name="reservable_rooms",
|
||||||
|
verbose_name=_("room owner"),
|
||||||
|
help_text=_("The club which manages this room"),
|
||||||
|
)
|
||||||
|
location = models.CharField(
|
||||||
|
_("site"),
|
||||||
|
blank=True,
|
||||||
|
choices=[
|
||||||
|
("BELFORT", "Belfort"),
|
||||||
|
("SEVENANS", "Sévenans"),
|
||||||
|
("MONTBELIARD", "Montbéliard"),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("reservable room")
|
||||||
|
verbose_name_plural = _("reservable rooms")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.name
|
||||||
|
|
||||||
|
def can_be_edited_by(self, user: User) -> bool:
|
||||||
|
# a user may edit a room if it has the global perm
|
||||||
|
# or is in the owner club board
|
||||||
|
return user.has_perm("reservation.change_room") or self.club.board_group_id in [
|
||||||
|
g.id for g in user.cached_groups
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationSlotQuerySet(models.QuerySet):
|
||||||
|
def overlapping_with(self, slot: ReservationSlot) -> Self:
|
||||||
|
return self.filter(
|
||||||
|
Q(start_at__lt=slot.start_at, end_at__gt=slot.start_at)
|
||||||
|
| Q(start_at__lt=slot.end_at, end_at__gt=slot.end_at)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationSlot(models.Model):
|
||||||
|
room = models.ForeignKey(
|
||||||
|
Room,
|
||||||
|
on_delete=models.CASCADE,
|
||||||
|
related_name="slots",
|
||||||
|
verbose_name=_("reserved room"),
|
||||||
|
)
|
||||||
|
author = models.ForeignKey(User, on_delete=models.CASCADE, verbose_name=_("author"))
|
||||||
|
comment = models.TextField(_("comment"), blank=True, default="")
|
||||||
|
start_at = models.DateTimeField(_("slot start"), db_index=True)
|
||||||
|
end_at = models.DateTimeField(_("slot end"))
|
||||||
|
created_at = models.DateTimeField(auto_now_add=True)
|
||||||
|
|
||||||
|
objects = ReservationSlotQuerySet.as_manager()
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("reservation slot")
|
||||||
|
verbose_name_plural = _("reservation slots")
|
||||||
|
constraints = [
|
||||||
|
models.CheckConstraint(
|
||||||
|
condition=Q(end_at__gt=F("start_at")),
|
||||||
|
name="reservation_slot_end_after_start",
|
||||||
|
violation_error_code="start_after_end",
|
||||||
|
)
|
||||||
|
]
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return f"{self.room.name} : {self.start_at} - {self.end_at}"
|
||||||
|
|
||||||
|
def clean(self):
|
||||||
|
super().clean()
|
||||||
|
if self.end_at is None or self.start_at is None:
|
||||||
|
# if there is no start or no end, then there is no
|
||||||
|
# point to check if this perm overlap with another,
|
||||||
|
# so in this case, don't do the overlap check and let
|
||||||
|
# Django manage the non-null constraint error.
|
||||||
|
return
|
||||||
|
overlapping = ReservationSlot.objects.overlapping_with(self).filter(
|
||||||
|
room_id=self.room_id
|
||||||
|
)
|
||||||
|
if self.id is not None:
|
||||||
|
overlapping = overlapping.exclude(id=self.id)
|
||||||
|
if overlapping.exists():
|
||||||
|
raise ValidationError(_("There is already a reservation on this slot."))
|
46
reservation/schemas.py
Normal file
46
reservation/schemas.py
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
from ninja import FilterSchema, ModelSchema, Schema
|
||||||
|
from pydantic import Field, FutureDatetime
|
||||||
|
|
||||||
|
from club.schemas import SimpleClubSchema
|
||||||
|
from core.schemas import SimpleUserSchema
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
|
||||||
|
|
||||||
|
class RoomFilterSchema(FilterSchema):
|
||||||
|
club: set[int] | None = Field(None, q="club_id__in")
|
||||||
|
|
||||||
|
|
||||||
|
class RoomSchema(ModelSchema):
|
||||||
|
class Meta:
|
||||||
|
model = Room
|
||||||
|
fields = ["id", "name", "description", "location"]
|
||||||
|
|
||||||
|
club: SimpleClubSchema
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def resolve_location(obj: Room):
|
||||||
|
return obj.get_location_display()
|
||||||
|
|
||||||
|
|
||||||
|
class SlotFilterSchema(FilterSchema):
|
||||||
|
after: datetime = Field(default=None, q="end_at__gt")
|
||||||
|
before: datetime = Field(default=None, q="start_at__lt")
|
||||||
|
room: set[int] | None = None
|
||||||
|
club: set[int] | None = None
|
||||||
|
|
||||||
|
|
||||||
|
class SlotSchema(ModelSchema):
|
||||||
|
class Meta:
|
||||||
|
model = ReservationSlot
|
||||||
|
fields = ["id", "room", "comment"]
|
||||||
|
|
||||||
|
start: datetime = Field(alias="start_at")
|
||||||
|
end: datetime = Field(alias="end_at")
|
||||||
|
author: SimpleUserSchema
|
||||||
|
|
||||||
|
|
||||||
|
class UpdateReservationSlotSchema(Schema):
|
||||||
|
start_at: FutureDatetime
|
||||||
|
end_at: FutureDatetime
|
@@ -0,0 +1,137 @@
|
|||||||
|
import { inheritHtmlElement, registerComponent } from "#core:utils/web-components";
|
||||||
|
import {
|
||||||
|
Calendar,
|
||||||
|
type DateSelectArg,
|
||||||
|
type EventDropArg,
|
||||||
|
type EventSourceFuncArg,
|
||||||
|
} from "@fullcalendar/core";
|
||||||
|
import enLocale from "@fullcalendar/core/locales/en-gb";
|
||||||
|
import frLocale from "@fullcalendar/core/locales/fr";
|
||||||
|
|
||||||
|
import {
|
||||||
|
type ReservationslotFetchSlotsData,
|
||||||
|
type SlotSchema,
|
||||||
|
reservableroomFetchRooms,
|
||||||
|
reservationslotFetchSlots,
|
||||||
|
reservationslotUpdateSlot,
|
||||||
|
} from "#openapi";
|
||||||
|
|
||||||
|
import { paginated } from "#core:utils/api";
|
||||||
|
import type { SlotSelectedEventArg } from "#reservation:reservation/types";
|
||||||
|
import interactionPlugin from "@fullcalendar/interaction";
|
||||||
|
import resourceTimelinePlugin from "@fullcalendar/resource-timeline";
|
||||||
|
|
||||||
|
@registerComponent("room-scheduler")
|
||||||
|
export class RoomScheduler extends inheritHtmlElement("div") {
|
||||||
|
static observedAttributes = ["locale", "can_edit_slot", "can_create_slot"];
|
||||||
|
private scheduler: Calendar;
|
||||||
|
private locale = "en";
|
||||||
|
private canEditSlot = false;
|
||||||
|
private canBookSlot = false;
|
||||||
|
private canDeleteSlot = false;
|
||||||
|
|
||||||
|
attributeChangedCallback(name: string, _oldValue?: string, newValue?: string) {
|
||||||
|
if (name === "locale") {
|
||||||
|
this.locale = newValue;
|
||||||
|
}
|
||||||
|
if (name === "can_edit_slot") {
|
||||||
|
this.canEditSlot = newValue.toLowerCase() === "true";
|
||||||
|
}
|
||||||
|
if (name === "can_create_slot") {
|
||||||
|
this.canBookSlot = newValue.toLowerCase() === "true";
|
||||||
|
}
|
||||||
|
if (name === "can_delete_slot") {
|
||||||
|
this.canDeleteSlot = newValue.toLowerCase() === "true";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch the events displayed in the timeline.
|
||||||
|
* cf https://fullcalendar.io/docs/events-function
|
||||||
|
*/
|
||||||
|
async fetchEvents(fetchInfo: EventSourceFuncArg) {
|
||||||
|
const res: SlotSchema[] = await paginated(reservationslotFetchSlots, {
|
||||||
|
query: { after: fetchInfo.startStr, before: fetchInfo.endStr },
|
||||||
|
} as ReservationslotFetchSlotsData);
|
||||||
|
return res.map((i) =>
|
||||||
|
Object.assign(i, {
|
||||||
|
title: `${i.author.first_name} ${i.author.last_name}`,
|
||||||
|
resourceId: i.room,
|
||||||
|
editable: new Date(i.start) > new Date(),
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch the resources which events are associated with.
|
||||||
|
* cf https://fullcalendar.io/docs/resources-function
|
||||||
|
*/
|
||||||
|
async fetchResources() {
|
||||||
|
const res = await reservableroomFetchRooms();
|
||||||
|
return res.data.map((i) => Object.assign(i, { title: i.name, group: i.location }));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send a request to the API to change
|
||||||
|
* the start and the duration of a reservation slot
|
||||||
|
*/
|
||||||
|
async changeReservation(args: EventDropArg) {
|
||||||
|
const response = await reservationslotUpdateSlot({
|
||||||
|
// biome-ignore lint/style/useNamingConvention: api is snake_case
|
||||||
|
path: { slot_id: Number.parseInt(args.event.id) },
|
||||||
|
// biome-ignore lint/style/useNamingConvention: api is snake_case
|
||||||
|
body: { start_at: args.event.startStr, end_at: args.event.endStr },
|
||||||
|
});
|
||||||
|
if (response.response.ok) {
|
||||||
|
document.dispatchEvent(new CustomEvent("reservationSlotChanged"));
|
||||||
|
this.scheduler.refetchEvents();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
selectFreeSlot(infos: DateSelectArg) {
|
||||||
|
document.dispatchEvent(
|
||||||
|
new CustomEvent<SlotSelectedEventArg>("timeSlotSelected", {
|
||||||
|
detail: {
|
||||||
|
ressource: Number.parseInt(infos.resource.id),
|
||||||
|
start: infos.startStr,
|
||||||
|
end: infos.endStr,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
connectedCallback() {
|
||||||
|
super.connectedCallback();
|
||||||
|
this.scheduler = new Calendar(this.node, {
|
||||||
|
schedulerLicenseKey: "GPL-My-Project-Is-Open-Source",
|
||||||
|
initialView: "resourceTimelineDay",
|
||||||
|
headerToolbar: {
|
||||||
|
left: "prev,next today",
|
||||||
|
center: "title",
|
||||||
|
right: "resourceTimelineDay,resourceTimelineWeek",
|
||||||
|
},
|
||||||
|
plugins: [resourceTimelinePlugin, interactionPlugin],
|
||||||
|
locales: [frLocale, enLocale],
|
||||||
|
height: "auto",
|
||||||
|
locale: this.locale,
|
||||||
|
resourceGroupField: "group",
|
||||||
|
resourceAreaHeaderContent: gettext("Rooms"),
|
||||||
|
editable: this.canEditSlot,
|
||||||
|
snapDuration: "00:15",
|
||||||
|
eventConstraint: { start: new Date() }, // forbid edition of past events
|
||||||
|
eventOverlap: false,
|
||||||
|
eventResourceEditable: false,
|
||||||
|
refetchResourcesOnNavigate: true,
|
||||||
|
resourceAreaWidth: "20%",
|
||||||
|
resources: this.fetchResources,
|
||||||
|
events: this.fetchEvents,
|
||||||
|
select: this.selectFreeSlot,
|
||||||
|
selectOverlap: false,
|
||||||
|
selectable: this.canBookSlot,
|
||||||
|
selectConstraint: { start: new Date() },
|
||||||
|
nowIndicator: true,
|
||||||
|
eventDrop: this.changeReservation,
|
||||||
|
});
|
||||||
|
this.scheduler.render();
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,39 @@
|
|||||||
|
import { AlertMessage } from "#core:utils/alert-message";
|
||||||
|
import type { SlotSelectedEventArg } from "#reservation:reservation/types";
|
||||||
|
|
||||||
|
document.addEventListener("alpine:init", () => {
|
||||||
|
Alpine.data("slotReservation", () => ({
|
||||||
|
start: null as string,
|
||||||
|
end: null as string,
|
||||||
|
room: null as number,
|
||||||
|
showForm: false,
|
||||||
|
|
||||||
|
init() {
|
||||||
|
document.addEventListener(
|
||||||
|
"timeSlotSelected",
|
||||||
|
(event: CustomEvent<SlotSelectedEventArg>) => {
|
||||||
|
this.start = event.detail.start.split("+")[0];
|
||||||
|
this.end = event.detail.end.split("+")[0];
|
||||||
|
this.room = event.detail.ressource;
|
||||||
|
this.showForm = true;
|
||||||
|
this.$nextTick(() => this.$el.scrollIntoView({ behavior: "smooth" })).then();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Component that will catch events sent from the scheduler
|
||||||
|
* to display success messages accordingly.
|
||||||
|
*/
|
||||||
|
Alpine.data("scheduleMessages", () => ({
|
||||||
|
alertMessage: new AlertMessage({ defaultDuration: 2000 }),
|
||||||
|
init() {
|
||||||
|
document.addEventListener("reservationSlotChanged", (_event: CustomEvent) => {
|
||||||
|
this.alertMessage.display(gettext("This slot has been successfully moved"), {
|
||||||
|
success: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
});
|
5
reservation/static/bundled/reservation/types.d.ts
vendored
Normal file
5
reservation/static/bundled/reservation/types.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
export interface SlotSelectedEventArg {
|
||||||
|
start: string;
|
||||||
|
end: string;
|
||||||
|
ressource: number;
|
||||||
|
}
|
39
reservation/static/reservation/reservation.scss
Normal file
39
reservation/static/reservation/reservation.scss
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
#slot-reservation {
|
||||||
|
margin-top: 3em;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
display: block;
|
||||||
|
margin: auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert, .error {
|
||||||
|
display: block;
|
||||||
|
margin: 1em auto auto;
|
||||||
|
max-width: 400px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
text-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: .5em;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
.buttons-row {
|
||||||
|
input[type="submit"], button {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
textarea {
|
||||||
|
max-width: unset;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,51 @@
|
|||||||
|
<section
|
||||||
|
id="slot-reservation"
|
||||||
|
x-data="slotReservation"
|
||||||
|
x-show="showForm"
|
||||||
|
hx-target="this"
|
||||||
|
hx-ext="alpine-morph"
|
||||||
|
hx-swap="morph"
|
||||||
|
>
|
||||||
|
<h3>{% trans %}Book a room{% endtrans %}</h3>
|
||||||
|
{% set non_field_errors = form.non_field_errors() %}
|
||||||
|
{% if non_field_errors %}
|
||||||
|
<div class="alert alert-red">
|
||||||
|
{% for error in non_field_errors %}
|
||||||
|
<span>{{ error }}</span>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<form
|
||||||
|
id="slot-reservation-form"
|
||||||
|
hx-post="{{ url("reservation:make_reservation") }}"
|
||||||
|
hx-disabled-elt="find input[type='submit']"
|
||||||
|
>
|
||||||
|
{% csrf_token %}
|
||||||
|
<div class="form-group">
|
||||||
|
{{ form.room.errors }}
|
||||||
|
{{ form.room.label_tag() }}
|
||||||
|
{{ form.room|add_attr("x-model=room") }}
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
{{ form.start_at.errors }}
|
||||||
|
{{ form.start_at.label_tag() }}
|
||||||
|
{{ form.start_at|add_attr("x-model=start") }}
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
{{ form.end_at.errors }}
|
||||||
|
{{ form.end_at.label_tag() }}
|
||||||
|
{{ form.end_at|add_attr("x-model=end") }}
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
{{ form.comment.errors }}
|
||||||
|
{{ form.comment.label_tag() }}
|
||||||
|
{{ form.comment }}
|
||||||
|
</div>
|
||||||
|
<div class="row gap buttons-row">
|
||||||
|
<button class="btn btn-grey grow" @click.prevent="showForm = false">
|
||||||
|
{% trans %}Cancel{% endtrans %}
|
||||||
|
</button>
|
||||||
|
<input class="btn btn-blue grow" type="submit">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</section>
|
27
reservation/templates/reservation/macros.jinja
Normal file
27
reservation/templates/reservation/macros.jinja
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{% macro room_detail(room, can_edit, can_delete) %}
|
||||||
|
<div class="card card-row card-row-m">
|
||||||
|
<div class="card-content">
|
||||||
|
<strong class="card-title">{{ room.name }}</strong>
|
||||||
|
<em>{{ room.get_location_display() }}</em>
|
||||||
|
<p>{{ room.description|truncate(250) }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="card-top-left">
|
||||||
|
{% if can_edit %}
|
||||||
|
<a
|
||||||
|
class="btn btn-grey btn-no-text"
|
||||||
|
href="{{ url("reservation:room_edit", room_id=room.id) }}"
|
||||||
|
>
|
||||||
|
<i class="fa fa-edit"></i>
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if can_delete %}
|
||||||
|
<a
|
||||||
|
class="btn btn-red btn-no-text"
|
||||||
|
href="{{ url("reservation:room_delete", room_id=room.id) }}"
|
||||||
|
>
|
||||||
|
<i class="fa fa-trash"></i>
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endmacro %}
|
33
reservation/templates/reservation/schedule.jinja
Normal file
33
reservation/templates/reservation/schedule.jinja
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
|
{% block additional_js %}
|
||||||
|
<script type="module" src="{{ static("bundled/reservation/components/room-scheduler-index.ts") }}"></script>
|
||||||
|
<script type="module" src="{{ static("bundled/reservation/slot-reservation-index.ts") }}"></script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block additional_css %}
|
||||||
|
<link rel="stylesheet" href="{{ static('core/components/calendar.scss') }}">
|
||||||
|
<link rel="stylesheet" href="{{ static('reservation/reservation.scss') }}">
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h2 class="margin-bottom">{% trans %}Room reservation{% endtrans %}</h2>
|
||||||
|
<p
|
||||||
|
x-data="scheduleMessages"
|
||||||
|
class="alert snackbar"
|
||||||
|
:class="alertMessage.success ? 'alert-green' : 'alert-red'"
|
||||||
|
x-show="alertMessage.open"
|
||||||
|
x-transition.duration.500ms
|
||||||
|
x-text="alertMessage.content"
|
||||||
|
></p>
|
||||||
|
<room-scheduler
|
||||||
|
locale="{{ LANGUAGE_CODE }}"
|
||||||
|
can_edit_slot="{{ user.has_perm("reservation.change_reservationslot") }}"
|
||||||
|
can_create_slot="{{ user.has_perm("reservation.add_reservationslot") }}"
|
||||||
|
></room-scheduler>
|
||||||
|
{% if user.has_perm("reservation.add_reservationslot") %}
|
||||||
|
<p><em>{% trans %}You can book a room by selecting a free slot in the calendar.{% endtrans %}</em></p>
|
||||||
|
{{ add_slot_fragment }}
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
0
reservation/tests/__init__.py
Normal file
0
reservation/tests/__init__.py
Normal file
113
reservation/tests/test_room.py
Normal file
113
reservation/tests/test_room.py
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
import pytest
|
||||||
|
from django.contrib.auth.models import Permission
|
||||||
|
from django.test import Client
|
||||||
|
from django.urls import reverse
|
||||||
|
from model_bakery import baker
|
||||||
|
from pytest_django.asserts import assertNumQueries, assertRedirects
|
||||||
|
|
||||||
|
from club.models import Club
|
||||||
|
from core.models import User
|
||||||
|
from reservation.forms import RoomUpdateForm
|
||||||
|
from reservation.models import Room
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestFetchRoom:
|
||||||
|
@pytest.fixture
|
||||||
|
def user(self):
|
||||||
|
return baker.make(
|
||||||
|
User,
|
||||||
|
user_permissions=[Permission.objects.get(codename="view_room")],
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_fetch_simple(self, client: Client, user: User):
|
||||||
|
rooms = baker.make(Room, _quantity=3, _bulk_create=True)
|
||||||
|
client.force_login(user)
|
||||||
|
response = client.get(reverse("api:fetch_reservable_rooms"))
|
||||||
|
assert response.status_code == 200
|
||||||
|
assert response.json() == [
|
||||||
|
{
|
||||||
|
"id": room.id,
|
||||||
|
"name": room.name,
|
||||||
|
"description": room.description,
|
||||||
|
"location": room.location,
|
||||||
|
"club": {"id": room.club.id, "name": room.club.name},
|
||||||
|
}
|
||||||
|
for room in rooms
|
||||||
|
]
|
||||||
|
|
||||||
|
def test_nb_queries(self, client: Client, user: User):
|
||||||
|
client.force_login(user)
|
||||||
|
with assertNumQueries(5):
|
||||||
|
# 4 for authentication
|
||||||
|
# 1 to fetch the actual data
|
||||||
|
client.get(reverse("api:fetch_reservable_rooms"))
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestCreateRoom:
|
||||||
|
def test_ok(self, client: Client):
|
||||||
|
perm = Permission.objects.get(codename="add_room")
|
||||||
|
club = baker.make(Club)
|
||||||
|
client.force_login(
|
||||||
|
baker.make(User, user_permissions=[perm], groups=[club.board_group])
|
||||||
|
)
|
||||||
|
response = client.post(
|
||||||
|
reverse("reservation:room_create"),
|
||||||
|
data={"club": club.id, "name": "test", "location": "BELFORT"},
|
||||||
|
)
|
||||||
|
assertRedirects(response, reverse("club:tools", kwargs={"club_id": club.id}))
|
||||||
|
room = Room.objects.last()
|
||||||
|
assert room is not None
|
||||||
|
assert room.club == club
|
||||||
|
assert room.name == "test"
|
||||||
|
assert room.location == "BELFORT"
|
||||||
|
|
||||||
|
def test_permission_denied(self, client: Client):
|
||||||
|
club = baker.make(Club)
|
||||||
|
client.force_login(baker.make(User))
|
||||||
|
response = client.get(reverse("reservation:room_create"))
|
||||||
|
assert response.status_code == 403
|
||||||
|
response = client.post(
|
||||||
|
reverse("reservation:room_create"),
|
||||||
|
data={"club": club.id, "name": "test", "location": "BELFORT"},
|
||||||
|
)
|
||||||
|
assert response.status_code == 403
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestUpdateRoom:
|
||||||
|
def test_ok(self, client: Client):
|
||||||
|
club = baker.make(Club)
|
||||||
|
room = baker.make(Room, club=club)
|
||||||
|
client.force_login(baker.make(User, groups=[club.board_group]))
|
||||||
|
url = reverse("reservation:room_edit", kwargs={"room_id": room.id})
|
||||||
|
response = client.post(url, data={"name": "test", "location": "BELFORT"})
|
||||||
|
assertRedirects(response, url)
|
||||||
|
room.refresh_from_db()
|
||||||
|
assert room.club == club
|
||||||
|
assert room.name == "test"
|
||||||
|
assert room.location == "BELFORT"
|
||||||
|
|
||||||
|
def test_permission_denied(self, client: Client):
|
||||||
|
club = baker.make(Club)
|
||||||
|
room = baker.make(Room, club=club)
|
||||||
|
client.force_login(baker.make(User))
|
||||||
|
url = reverse("reservation:room_edit", kwargs={"room_id": room.id})
|
||||||
|
response = client.get(url)
|
||||||
|
assert response.status_code == 403
|
||||||
|
response = client.post(url, data={"name": "test", "location": "BELFORT"})
|
||||||
|
assert response.status_code == 403
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestUpdateRoomForm:
|
||||||
|
def test_form_club_edition_rights(self):
|
||||||
|
"""The club field should appear only if the request user can edit it."""
|
||||||
|
room = baker.make(Room)
|
||||||
|
perm = Permission.objects.get(codename="change_room")
|
||||||
|
user_authorized = baker.make(User, user_permissions=[perm])
|
||||||
|
assert "club" in RoomUpdateForm(request_user=user_authorized).fields
|
||||||
|
|
||||||
|
user_forbidden = baker.make(User, groups=[room.club.board_group])
|
||||||
|
assert "club" not in RoomUpdateForm(request_user=user_forbidden).fields
|
207
reservation/tests/test_slot.py
Normal file
207
reservation/tests/test_slot.py
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from django.contrib.auth.models import Permission
|
||||||
|
from django.test import Client
|
||||||
|
from django.urls import reverse
|
||||||
|
from django.utils.timezone import now
|
||||||
|
from model_bakery import baker
|
||||||
|
from pytest_django.asserts import assertNumQueries
|
||||||
|
|
||||||
|
from core.models import User
|
||||||
|
from reservation.forms import ReservationForm
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestFetchReservationSlotsApi:
|
||||||
|
@pytest.fixture
|
||||||
|
def user(self):
|
||||||
|
perm = Permission.objects.get(codename="view_reservationslot")
|
||||||
|
return baker.make(User, user_permissions=[perm])
|
||||||
|
|
||||||
|
def test_fetch_simple(self, client: Client, user: User):
|
||||||
|
slots = baker.make(ReservationSlot, _quantity=5, _bulk_create=True)
|
||||||
|
client.force_login(user)
|
||||||
|
response = client.get(reverse("api:fetch_reservation_slots"))
|
||||||
|
assert response.json()["results"] == [
|
||||||
|
{
|
||||||
|
"id": slot.id,
|
||||||
|
"room": slot.room_id,
|
||||||
|
"comment": slot.comment,
|
||||||
|
"start": slot.start_at.isoformat(timespec="milliseconds").replace(
|
||||||
|
"+00:00", "Z"
|
||||||
|
),
|
||||||
|
"end": slot.end_at.isoformat(timespec="milliseconds").replace(
|
||||||
|
"+00:00", "Z"
|
||||||
|
),
|
||||||
|
"author": {
|
||||||
|
"id": slot.author.id,
|
||||||
|
"first_name": slot.author.first_name,
|
||||||
|
"last_name": slot.author.last_name,
|
||||||
|
"nick_name": slot.author.nick_name,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for slot in slots
|
||||||
|
]
|
||||||
|
|
||||||
|
def test_nb_queries(self, client: Client, user: User):
|
||||||
|
client.force_login(user)
|
||||||
|
with assertNumQueries(5):
|
||||||
|
# 4 for authentication
|
||||||
|
# 1 to fetch the actual data
|
||||||
|
client.get(reverse("api:fetch_reservation_slots"))
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestUpdateReservationSlotApi:
|
||||||
|
@pytest.fixture
|
||||||
|
def user(self):
|
||||||
|
perm = Permission.objects.get(codename="change_reservationslot")
|
||||||
|
return baker.make(User, user_permissions=[perm])
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def slot(self):
|
||||||
|
return baker.make(
|
||||||
|
ReservationSlot,
|
||||||
|
start_at=now() + timedelta(hours=2),
|
||||||
|
end_at=now() + timedelta(hours=4),
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_ok(self, client: Client, user: User, slot: ReservationSlot):
|
||||||
|
client.force_login(user)
|
||||||
|
new_start = (slot.start_at + timedelta(hours=1)).replace(microsecond=0)
|
||||||
|
response = client.patch(
|
||||||
|
reverse("api:change_reservation_slot", kwargs={"slot_id": slot.id}),
|
||||||
|
{"start_at": new_start, "end_at": new_start + timedelta(hours=2)},
|
||||||
|
content_type="application/json",
|
||||||
|
)
|
||||||
|
assert response.status_code == 200
|
||||||
|
slot.refresh_from_db()
|
||||||
|
assert slot.start_at.replace(microsecond=0) == new_start
|
||||||
|
assert slot.end_at.replace(microsecond=0) == new_start + timedelta(hours=2)
|
||||||
|
|
||||||
|
def test_change_past_event(self, client, user: User, slot: ReservationSlot):
|
||||||
|
"""Test that moving a slot that already began is impossible."""
|
||||||
|
client.force_login(user)
|
||||||
|
new_start = now() - timedelta(hours=1)
|
||||||
|
response = client.patch(
|
||||||
|
reverse("api:change_reservation_slot", kwargs={"slot_id": slot.id}),
|
||||||
|
{"start_at": new_start, "end_at": new_start + timedelta(hours=2)},
|
||||||
|
content_type="application/json",
|
||||||
|
)
|
||||||
|
|
||||||
|
assert response.status_code == 422
|
||||||
|
|
||||||
|
def test_move_event_to_occupied_slot(
|
||||||
|
self, client: Client, user: User, slot: ReservationSlot
|
||||||
|
):
|
||||||
|
client.force_login(user)
|
||||||
|
other_slot = baker.make(
|
||||||
|
ReservationSlot,
|
||||||
|
room=slot.room,
|
||||||
|
start_at=slot.end_at + timedelta(hours=1),
|
||||||
|
end_at=slot.end_at + timedelta(hours=3),
|
||||||
|
)
|
||||||
|
response = client.patch(
|
||||||
|
reverse("api:change_reservation_slot", kwargs={"slot_id": slot.id}),
|
||||||
|
{
|
||||||
|
"start_at": other_slot.start_at - timedelta(hours=1),
|
||||||
|
"end_at": other_slot.start_at + timedelta(hours=1),
|
||||||
|
},
|
||||||
|
content_type="application/json",
|
||||||
|
)
|
||||||
|
assert response.status_code == 409
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestReservationForm:
|
||||||
|
def test_ok(self):
|
||||||
|
start = now() + timedelta(hours=2)
|
||||||
|
end = start + timedelta(hours=1)
|
||||||
|
form = ReservationForm(
|
||||||
|
author=baker.make(User),
|
||||||
|
data={"room": baker.make(Room), "start_at": start, "end_at": end},
|
||||||
|
)
|
||||||
|
assert form.is_valid()
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("start_date", "end_date", "errors"),
|
||||||
|
[
|
||||||
|
(
|
||||||
|
now() - timedelta(hours=2),
|
||||||
|
now() + timedelta(hours=2),
|
||||||
|
{"start_at": ["Assurez-vous que cet horodatage est dans le futur"]},
|
||||||
|
),
|
||||||
|
(
|
||||||
|
now() + timedelta(hours=3),
|
||||||
|
now() + timedelta(hours=2),
|
||||||
|
{"__all__": ["Le début doit être placé avant la fin"]},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_invalid_timedates(self, start_date, end_date, errors):
|
||||||
|
form = ReservationForm(
|
||||||
|
author=baker.make(User),
|
||||||
|
data={"room": baker.make(Room), "start_at": start_date, "end_at": end_date},
|
||||||
|
)
|
||||||
|
assert not form.is_valid()
|
||||||
|
assert form.errors == errors
|
||||||
|
|
||||||
|
def test_unavailable_room(self):
|
||||||
|
room = baker.make(Room)
|
||||||
|
baker.make(
|
||||||
|
ReservationSlot,
|
||||||
|
room=room,
|
||||||
|
start_at=now() + timedelta(hours=2),
|
||||||
|
end_at=now() + timedelta(hours=4),
|
||||||
|
)
|
||||||
|
form = ReservationForm(
|
||||||
|
author=baker.make(User),
|
||||||
|
data={
|
||||||
|
"room": room,
|
||||||
|
"start_at": now() + timedelta(hours=1),
|
||||||
|
"end_at": now() + timedelta(hours=3),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
assert not form.is_valid()
|
||||||
|
assert form.errors == {
|
||||||
|
"__all__": ["Il y a déjà une réservation sur ce créneau."]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
class TestCreateReservationSlot:
|
||||||
|
@pytest.fixture
|
||||||
|
def user(self):
|
||||||
|
perms = Permission.objects.filter(
|
||||||
|
codename__in=["add_reservationslot", "view_reservationslot"]
|
||||||
|
)
|
||||||
|
return baker.make(User, user_permissions=list(perms))
|
||||||
|
|
||||||
|
def test_ok(self, client: Client, user: User):
|
||||||
|
client.force_login(user)
|
||||||
|
start = now() + timedelta(hours=2)
|
||||||
|
end = start + timedelta(hours=1)
|
||||||
|
room = baker.make(Room)
|
||||||
|
response = client.post(
|
||||||
|
reverse("reservation:make_reservation"),
|
||||||
|
{"room": room.id, "start_at": start, "end_at": end},
|
||||||
|
)
|
||||||
|
assert response.status_code == 200
|
||||||
|
assert response.headers.get("HX-Redirect", "") == reverse("reservation:main")
|
||||||
|
slot = ReservationSlot.objects.filter(room=room).last()
|
||||||
|
assert slot is not None
|
||||||
|
assert slot.start_at == start
|
||||||
|
assert slot.end_at == end
|
||||||
|
assert slot.author == user
|
||||||
|
|
||||||
|
def test_permissions_denied(self, client: Client):
|
||||||
|
client.force_login(baker.make(User))
|
||||||
|
start = now() + timedelta(hours=2)
|
||||||
|
end = start + timedelta(hours=1)
|
||||||
|
response = client.post(
|
||||||
|
reverse("reservation:make_reservation"),
|
||||||
|
{"room": baker.make(Room), "start_at": start, "end_at": end},
|
||||||
|
)
|
||||||
|
assert response.status_code == 403
|
19
reservation/urls.py
Normal file
19
reservation/urls.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
from django.urls import path
|
||||||
|
|
||||||
|
from reservation.views import (
|
||||||
|
ReservationFragment,
|
||||||
|
ReservationScheduleView,
|
||||||
|
RoomCreateView,
|
||||||
|
RoomDeleteView,
|
||||||
|
RoomUpdateView,
|
||||||
|
)
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
path("", ReservationScheduleView.as_view(), name="main"),
|
||||||
|
path("room/create/", RoomCreateView.as_view(), name="room_create"),
|
||||||
|
path("room/<int:room_id>/edit", RoomUpdateView.as_view(), name="room_edit"),
|
||||||
|
path("room/<int:room_id>/delete", RoomDeleteView.as_view(), name="room_delete"),
|
||||||
|
path(
|
||||||
|
"fragment/reservation", ReservationFragment.as_view(), name="make_reservation"
|
||||||
|
),
|
||||||
|
]
|
72
reservation/views.py
Normal file
72
reservation/views.py
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
# Create your views here.
|
||||||
|
|
||||||
|
from django.contrib.auth.mixins import PermissionRequiredMixin
|
||||||
|
from django.contrib.messages.views import SuccessMessageMixin
|
||||||
|
from django.urls import reverse, reverse_lazy
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from django.views.generic import CreateView, DeleteView, TemplateView, UpdateView
|
||||||
|
|
||||||
|
from club.models import Club
|
||||||
|
from core.auth.mixins import CanEditMixin
|
||||||
|
from core.views import UseFragmentsMixin
|
||||||
|
from core.views.mixins import FragmentMixin
|
||||||
|
from reservation.forms import ReservationForm, RoomCreateForm, RoomUpdateForm
|
||||||
|
from reservation.models import ReservationSlot, Room
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationFragment(PermissionRequiredMixin, FragmentMixin, CreateView):
|
||||||
|
model = ReservationSlot
|
||||||
|
form_class = ReservationForm
|
||||||
|
permission_required = "reservation.add_reservationslot"
|
||||||
|
template_name = "reservation/fragments/create_reservation.jinja"
|
||||||
|
success_url = reverse_lazy("reservation:main")
|
||||||
|
reload_on_redirect = True
|
||||||
|
object = None
|
||||||
|
|
||||||
|
def get_form_kwargs(self):
|
||||||
|
return super().get_form_kwargs() | {"author": self.request.user}
|
||||||
|
|
||||||
|
|
||||||
|
class ReservationScheduleView(PermissionRequiredMixin, UseFragmentsMixin, TemplateView):
|
||||||
|
template_name = "reservation/schedule.jinja"
|
||||||
|
permission_required = "reservation.view_reservationslot"
|
||||||
|
fragments = {"add_slot_fragment": ReservationFragment}
|
||||||
|
|
||||||
|
|
||||||
|
class RoomCreateView(PermissionRequiredMixin, CreateView):
|
||||||
|
form_class = RoomCreateForm
|
||||||
|
template_name = "core/create.jinja"
|
||||||
|
permission_required = "reservation.add_room"
|
||||||
|
|
||||||
|
def get_initial(self):
|
||||||
|
init = super().get_initial()
|
||||||
|
if "club" in self.request.GET:
|
||||||
|
club_id = self.request.GET["club"]
|
||||||
|
if club_id.isdigit() and int(club_id) > 0:
|
||||||
|
init["club"] = Club.objects.filter(id=int(club_id)).first()
|
||||||
|
return init
|
||||||
|
|
||||||
|
def get_success_url(self):
|
||||||
|
return reverse("club:tools", kwargs={"club_id": self.object.club_id})
|
||||||
|
|
||||||
|
|
||||||
|
class RoomUpdateView(SuccessMessageMixin, CanEditMixin, UpdateView):
|
||||||
|
model = Room
|
||||||
|
pk_url_kwarg = "room_id"
|
||||||
|
form_class = RoomUpdateForm
|
||||||
|
template_name = "core/edit.jinja"
|
||||||
|
success_message = _("%(name)s was updated successfully")
|
||||||
|
|
||||||
|
def get_form_kwargs(self):
|
||||||
|
return super().get_form_kwargs() | {"request_user": self.request.user}
|
||||||
|
|
||||||
|
def get_success_url(self):
|
||||||
|
return self.request.path
|
||||||
|
|
||||||
|
|
||||||
|
class RoomDeleteView(PermissionRequiredMixin, DeleteView):
|
||||||
|
model = Room
|
||||||
|
pk_url_kwarg = "room_id"
|
||||||
|
template_name = "core/delete_confirm.jinja"
|
||||||
|
success_url = reverse_lazy("reservation:room_list")
|
||||||
|
permission_required = "reservation.delete_room"
|
@@ -20,9 +20,9 @@ from sas.models import Album, PeoplePictureRelation, Picture, PictureModerationR
|
|||||||
|
|
||||||
@admin.register(Picture)
|
@admin.register(Picture)
|
||||||
class PictureAdmin(admin.ModelAdmin):
|
class PictureAdmin(admin.ModelAdmin):
|
||||||
list_display = ("name", "parent", "is_moderated")
|
list_display = ("name", "parent", "date", "size", "is_moderated")
|
||||||
search_fields = ("name",)
|
search_fields = ("name",)
|
||||||
autocomplete_fields = ("owner", "parent", "moderator")
|
autocomplete_fields = ("owner", "parent", "edit_groups", "view_groups", "moderator")
|
||||||
|
|
||||||
|
|
||||||
@admin.register(PeoplePictureRelation)
|
@admin.register(PeoplePictureRelation)
|
||||||
@@ -33,9 +33,9 @@ class PeoplePictureRelationAdmin(admin.ModelAdmin):
|
|||||||
|
|
||||||
@admin.register(Album)
|
@admin.register(Album)
|
||||||
class AlbumAdmin(admin.ModelAdmin):
|
class AlbumAdmin(admin.ModelAdmin):
|
||||||
list_display = ("name", "parent")
|
list_display = ("name", "parent", "date", "owner", "is_moderated")
|
||||||
search_fields = ("name",)
|
search_fields = ("name",)
|
||||||
autocomplete_fields = ("parent", "edit_groups", "view_groups")
|
autocomplete_fields = ("owner", "parent", "edit_groups", "view_groups")
|
||||||
|
|
||||||
|
|
||||||
@admin.register(PictureModerationRequest)
|
@admin.register(PictureModerationRequest)
|
||||||
|
64
sas/api.py
64
sas/api.py
@@ -2,10 +2,8 @@ from typing import Any, Literal
|
|||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.shortcuts import get_list_or_404
|
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from ninja import Body, Query, UploadedFile
|
from ninja import Body, File, Query
|
||||||
from ninja.errors import HttpError
|
|
||||||
from ninja.security import SessionAuth
|
from ninja.security import SessionAuth
|
||||||
from ninja_extra import ControllerBase, api_controller, paginate, route
|
from ninja_extra import ControllerBase, api_controller, paginate, route
|
||||||
from ninja_extra.exceptions import NotFound, PermissionDenied
|
from ninja_extra.exceptions import NotFound, PermissionDenied
|
||||||
@@ -19,12 +17,11 @@ from api.permissions import (
|
|||||||
CanAccessLookup,
|
CanAccessLookup,
|
||||||
CanEdit,
|
CanEdit,
|
||||||
CanView,
|
CanView,
|
||||||
HasPerm,
|
|
||||||
IsInGroup,
|
IsInGroup,
|
||||||
IsRoot,
|
IsRoot,
|
||||||
)
|
)
|
||||||
from core.models import Notification, User
|
from core.models import Notification, User
|
||||||
from core.utils import get_list_exact_or_404
|
from core.schemas import UploadedImage
|
||||||
from sas.models import Album, PeoplePictureRelation, Picture
|
from sas.models import Album, PeoplePictureRelation, Picture
|
||||||
from sas.schemas import (
|
from sas.schemas import (
|
||||||
AlbumAutocompleteSchema,
|
AlbumAutocompleteSchema,
|
||||||
@@ -32,7 +29,6 @@ from sas.schemas import (
|
|||||||
AlbumSchema,
|
AlbumSchema,
|
||||||
IdentifiedUserSchema,
|
IdentifiedUserSchema,
|
||||||
ModerationRequestSchema,
|
ModerationRequestSchema,
|
||||||
MoveAlbumSchema,
|
|
||||||
PictureFilterSchema,
|
PictureFilterSchema,
|
||||||
PictureSchema,
|
PictureSchema,
|
||||||
)
|
)
|
||||||
@@ -75,48 +71,6 @@ class AlbumController(ControllerBase):
|
|||||||
Album.objects.viewable_by(self.context.request.user).order_by("-date")
|
Album.objects.viewable_by(self.context.request.user).order_by("-date")
|
||||||
)
|
)
|
||||||
|
|
||||||
@route.patch("/parent", permissions=[IsAuthenticated])
|
|
||||||
def change_album_parent(self, payload: list[MoveAlbumSchema]):
|
|
||||||
"""Change parents of albums
|
|
||||||
|
|
||||||
Note:
|
|
||||||
For this operation to work, the user must be authorized
|
|
||||||
to edit both the moved albums and their new parent.
|
|
||||||
"""
|
|
||||||
user: User = self.context.request.user
|
|
||||||
albums: list[Album] = get_list_exact_or_404(
|
|
||||||
Album, pk__in={a.id for a in payload}
|
|
||||||
)
|
|
||||||
if not user.has_perm("sas.change_album"):
|
|
||||||
unauthorized = [a.id for a in albums if not user.can_edit(a)]
|
|
||||||
raise PermissionDenied(
|
|
||||||
f"You can't move the following albums : {unauthorized}"
|
|
||||||
)
|
|
||||||
parents: list[Album] = get_list_exact_or_404(
|
|
||||||
Album, pk__in={a.new_parent_id for a in payload}
|
|
||||||
)
|
|
||||||
if not user.has_perm("sas.change_album"):
|
|
||||||
unauthorized = [a.id for a in parents if not user.can_edit(a)]
|
|
||||||
raise PermissionDenied(
|
|
||||||
f"You can't move to the following albums : {unauthorized}"
|
|
||||||
)
|
|
||||||
id_to_new_parent = {i.id: i.new_parent_id for i in payload}
|
|
||||||
for album in albums:
|
|
||||||
album.parent_id = id_to_new_parent[album.id]
|
|
||||||
# known caveat : moving an album won't move it's thumbnail.
|
|
||||||
# E.g. if the album foo/bar is moved to foo/baz,
|
|
||||||
# the thumbnail will still be foo/bar/thumb.webp
|
|
||||||
# This has no impact for the end user
|
|
||||||
# and doing otherwise would be hard for us to implement,
|
|
||||||
# because we would then have to manage rollbacks on fail.
|
|
||||||
Album.objects.bulk_update(albums, fields=["parent_id"])
|
|
||||||
|
|
||||||
@route.delete("", permissions=[HasPerm("sas.delete_album")])
|
|
||||||
def delete_album(self, album_ids: list[int]):
|
|
||||||
# known caveat : deleting an album doesn't delete the pictures on the disk.
|
|
||||||
# It's a db only operation.
|
|
||||||
albums: list[Album] = get_list_or_404(Album, pk__in=album_ids)
|
|
||||||
|
|
||||||
|
|
||||||
@api_controller("/sas/picture")
|
@api_controller("/sas/picture")
|
||||||
class PicturesController(ControllerBase):
|
class PicturesController(ControllerBase):
|
||||||
@@ -149,7 +103,7 @@ class PicturesController(ControllerBase):
|
|||||||
return (
|
return (
|
||||||
filters.filter(Picture.objects.viewable_by(user))
|
filters.filter(Picture.objects.viewable_by(user))
|
||||||
.distinct()
|
.distinct()
|
||||||
.order_by("-parent__event_date", "created_at")
|
.order_by("-parent__date", "date")
|
||||||
.select_related("owner", "parent")
|
.select_related("owner", "parent")
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -163,25 +117,27 @@ class PicturesController(ControllerBase):
|
|||||||
},
|
},
|
||||||
url_name="upload_picture",
|
url_name="upload_picture",
|
||||||
)
|
)
|
||||||
def upload_picture(self, album_id: Body[int], picture: UploadedFile):
|
def upload_picture(self, album_id: Body[int], picture: File[UploadedImage]):
|
||||||
album = self.get_object_or_exception(Album, pk=album_id)
|
album = self.get_object_or_exception(Album, pk=album_id)
|
||||||
user = self.context.request.user
|
user = self.context.request.user
|
||||||
self_moderate = user.has_perm("sas.moderate_sasfile")
|
self_moderate = user.has_perm("sas.moderate_sasfile")
|
||||||
new = Picture(
|
new = Picture(
|
||||||
parent=album,
|
parent=album,
|
||||||
name=picture.name,
|
name=picture.name,
|
||||||
original=picture,
|
file=picture,
|
||||||
owner=user,
|
owner=user,
|
||||||
is_moderated=self_moderate,
|
is_moderated=self_moderate,
|
||||||
|
is_folder=False,
|
||||||
|
mime_type=picture.content_type,
|
||||||
)
|
)
|
||||||
if self_moderate:
|
if self_moderate:
|
||||||
new.moderator = user
|
new.moderator = user
|
||||||
new.generate_thumbnails()
|
|
||||||
try:
|
try:
|
||||||
|
new.generate_thumbnails()
|
||||||
new.full_clean()
|
new.full_clean()
|
||||||
|
new.save()
|
||||||
except ValidationError as e:
|
except ValidationError as e:
|
||||||
raise HttpError(status_code=409, message=str(e)) from e
|
return self.create_response({"detail": dict(e)}, status_code=409)
|
||||||
new.save()
|
|
||||||
|
|
||||||
@route.get(
|
@route.get(
|
||||||
"/{picture_id}/identified",
|
"/{picture_id}/identified",
|
||||||
|
@@ -1,35 +1,18 @@
|
|||||||
from django.core.files.uploadedfile import SimpleUploadedFile
|
|
||||||
from model_bakery import seq
|
from model_bakery import seq
|
||||||
from model_bakery.recipe import Recipe
|
from model_bakery.recipe import Recipe
|
||||||
|
|
||||||
from core.utils import RED_PIXEL_PNG
|
from sas.models import Picture
|
||||||
from sas.models import Album, Picture
|
|
||||||
|
|
||||||
album_recipe = Recipe(
|
|
||||||
Album,
|
|
||||||
name=seq("Album "),
|
|
||||||
thumbnail=SimpleUploadedFile(
|
|
||||||
name="thumb.webp", content=b"", content_type="image/webp"
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
picture_recipe = Recipe(
|
picture_recipe = Recipe(
|
||||||
Picture,
|
Picture,
|
||||||
|
is_in_sas=True,
|
||||||
|
is_folder=False,
|
||||||
is_moderated=True,
|
is_moderated=True,
|
||||||
name=seq("Picture "),
|
name=seq("Picture "),
|
||||||
original=SimpleUploadedFile(
|
|
||||||
# compressed and thumbnail are generated on save (except if bulk creating).
|
|
||||||
# For this step no to fail, original must be a valid image.
|
|
||||||
name="img.png",
|
|
||||||
content=RED_PIXEL_PNG,
|
|
||||||
content_type="image/png",
|
|
||||||
),
|
|
||||||
compressed=SimpleUploadedFile(
|
|
||||||
name="img.webp", content=b"", content_type="image/webp"
|
|
||||||
),
|
|
||||||
thumbnail=SimpleUploadedFile(
|
|
||||||
name="img.webp", content=b"", content_type="image/webp"
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
"""A SAS Picture fixture."""
|
"""A SAS Picture fixture.
|
||||||
|
|
||||||
|
Warnings:
|
||||||
|
If you don't `bulk_create` this, you need
|
||||||
|
to explicitly set the parent album, or it won't work
|
||||||
|
"""
|
||||||
|
@@ -48,12 +48,13 @@ class PictureEditForm(forms.ModelForm):
|
|||||||
class AlbumEditForm(forms.ModelForm):
|
class AlbumEditForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Album
|
model = Album
|
||||||
fields = ["name", "date", "thumbnail", "parent", "edit_groups"]
|
fields = ["name", "date", "file", "parent", "edit_groups"]
|
||||||
widgets = {
|
widgets = {
|
||||||
"parent": AutoCompleteSelectAlbum,
|
"parent": AutoCompleteSelectAlbum,
|
||||||
"edit_groups": AutoCompleteSelectMultipleGroup,
|
"edit_groups": AutoCompleteSelectMultipleGroup,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
name = forms.CharField(max_length=Album.NAME_MAX_LENGTH, label=_("file name"))
|
||||||
date = forms.DateField(label=_("Date"), widget=SelectDate, required=True)
|
date = forms.DateField(label=_("Date"), widget=SelectDate, required=True)
|
||||||
recursive = forms.BooleanField(label=_("Apply rights recursively"), required=False)
|
recursive = forms.BooleanField(label=_("Apply rights recursively"), required=False)
|
||||||
|
|
||||||
|
@@ -1,357 +0,0 @@
|
|||||||
# Generated by Django 4.2.17 on 2025-01-22 21:53
|
|
||||||
import collections
|
|
||||||
import itertools
|
|
||||||
import logging
|
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.conf import settings
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.migrations.state import StateApps
|
|
||||||
|
|
||||||
import sas.models
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
|
||||||
import core.models
|
|
||||||
|
|
||||||
# NB : tous les commentaires sont écrits en français,
|
|
||||||
# parce qu'on est sur des opérations qui sont complexes,
|
|
||||||
# et qui sont surtout DANGEREUSES.
|
|
||||||
# Ici, la clarté des explications prime sur toute autre considération.
|
|
||||||
|
|
||||||
|
|
||||||
def copy_albums_and_pictures(apps: StateApps, schema_editor):
|
|
||||||
SithFile: type[core.models.SithFile] = apps.get_model("core", "SithFile")
|
|
||||||
Album: type[sas.models.Album] = apps.get_model("sas", "Album")
|
|
||||||
Picture: type[sas.models.Picture] = apps.get_model("sas", "Picture")
|
|
||||||
logger = logging.getLogger("django")
|
|
||||||
|
|
||||||
# Il y a environ 1800 albums, 257k photos et 488k identifications
|
|
||||||
# d'utilisateurs dans la db de prod.
|
|
||||||
# En supposant qu'une insertion prenne 10ms (ce qui est très optimiste),
|
|
||||||
# migrer tous les enregistrements de la db prendrait plus de 2h.
|
|
||||||
# C'est trop long.
|
|
||||||
# Mais d'un autre côté, j'ai pas assez confiance dans les capacités de nos
|
|
||||||
# machines pour charger presque un million d'objets en mémoire.
|
|
||||||
# Pour faire un compromis, les albums sont migrés individuellement un à un,
|
|
||||||
# mais tous les objets liés à ces albums
|
|
||||||
# (photos, groupes de vue, groupe d'édition, identification d'utilisateurs)
|
|
||||||
# sont migrés en tas.
|
|
||||||
#
|
|
||||||
# Ordre des opérations :
|
|
||||||
# 1. On migre les albums 1 à 1 (il y en a 1800, donc c'est relativement court)
|
|
||||||
# 2. On migre les photos par paquet de 2500 (soit ~une centaine d'opérations)
|
|
||||||
# 3. On migre tous les groupes de vue et tous les groupes d'édition des albums
|
|
||||||
#
|
|
||||||
# Au total, la migration devrait demander aux alentours de 2000 insertions,
|
|
||||||
# ce qui est un compromis acceptable entre une migration
|
|
||||||
# pas trop longue et une RAM pas trop surchargée.
|
|
||||||
#
|
|
||||||
# Pour ce qui est de la répartition des tables, quatre nouvelles tables
|
|
||||||
# sont créées : sas_album, sas_picture,
|
|
||||||
# sas_pictureviewgroups et sas_picture_editgroups.
|
|
||||||
# Tous les albums et toutes les photos qui sont dans core_sithfile
|
|
||||||
# vont être copiés dans ces tables.
|
|
||||||
# Comme les albums sont migrés un à un, ils recevront une nouvelle
|
|
||||||
# clef primaire.
|
|
||||||
# Pour les photos, en revanche, c'est beaucoup plus sûr de leur donner
|
|
||||||
# le même id que celui qu'il y avait dans core_sithfile.
|
|
||||||
#
|
|
||||||
# Les identifications des photos ne sont pas migrées pour l'instant.
|
|
||||||
# Ce qu'on va faire, c'est qu'on va changer la contrainte de clef étrangère
|
|
||||||
# sur la colonne des photos pour pointer vers sas_picture
|
|
||||||
# au lieu de core_sithfile.
|
|
||||||
# Cependant, pour que ça marche,
|
|
||||||
# il faut qu'au moment où ce changement est effectué,
|
|
||||||
# toutes les clefs primaires référencées existent à la fois dans
|
|
||||||
# les deux tables, sinon les contraintes d'intégrité ne sont pas respectées.
|
|
||||||
# La migration de ce fichier va donc s'occuper de créer les nouvelles tables
|
|
||||||
# et d'y copier les données nécessaires.
|
|
||||||
# Puis une deuxième migration s'occupera de changer les contraintes.
|
|
||||||
# Et enfin une troisième migration supprimera les anciennes données.
|
|
||||||
#
|
|
||||||
# Pavé César
|
|
||||||
|
|
||||||
albums = SithFile.objects.filter(is_in_sas=True, is_folder=True).prefetch_related(
|
|
||||||
"view_groups", "edit_groups"
|
|
||||||
)
|
|
||||||
old_albums = collections.deque(
|
|
||||||
albums.filter(parent_id=settings.SITH_SAS_ROOT_DIR_ID)
|
|
||||||
)
|
|
||||||
|
|
||||||
# Changement de représentation en DB.
|
|
||||||
# Dans l'ancien système, un fichier était dans le SAS si
|
|
||||||
# un fichier spécial (le SAS_ROOT) était parmi ses ancêtres.
|
|
||||||
# Comme maintenant les fichiers du SAS sont dans des tables à part,
|
|
||||||
# il ne peut plus y avoir de confusion.
|
|
||||||
# Les photos ont donc obligatoirement un parent (qui est un album)
|
|
||||||
# et les albums peuvent avoir un parent null.
|
|
||||||
# Un album sans parent est considéré comme se trouvant à la racine
|
|
||||||
# de l'arborescence.
|
|
||||||
# En quelque sorte, None est le nouveau SITH_SAS_ROOT_DIR_ID
|
|
||||||
album_id_old_to_new = {settings.SITH_SAS_ROOT_DIR_ID: None}
|
|
||||||
|
|
||||||
logger.info(f"migrating {albums.count()} albums")
|
|
||||||
while len(old_albums) > 0:
|
|
||||||
# Comme les albums référencent leur parent, les albums doivent être migrés
|
|
||||||
# par ordre croissant de profondeur dans l'arborescence.
|
|
||||||
# Chaque album est donc pris par la gauche de la file
|
|
||||||
# et ses enfants ajoutés sur la droite.
|
|
||||||
old_album = old_albums.popleft()
|
|
||||||
old_albums.extend(list(albums.filter(parent=old_album)))
|
|
||||||
new_album = Album.objects.create(
|
|
||||||
parent_id=album_id_old_to_new[old_album.parent_id],
|
|
||||||
event_date=old_album.date.date(),
|
|
||||||
name=old_album.name,
|
|
||||||
thumbnail=(old_album.file or None),
|
|
||||||
is_moderated=old_album.is_moderated,
|
|
||||||
)
|
|
||||||
# on garde un dictionnaire qui associe les id des albums dans l'ancienne table
|
|
||||||
# à leur id dans la nouvelle table, pour pouvoir recréer
|
|
||||||
# les liens de parenté entre albums
|
|
||||||
album_id_old_to_new[old_album.id] = new_album.id
|
|
||||||
|
|
||||||
pictures = SithFile.objects.filter(is_in_sas=True, is_folder=False)
|
|
||||||
nb_pictures = pictures.count()
|
|
||||||
logger.info(f"migrating {nb_pictures} pictures")
|
|
||||||
for i, pictures_batch in enumerate(itertools.batched(pictures, 2500), start=1):
|
|
||||||
Picture.objects.bulk_create(
|
|
||||||
[
|
|
||||||
Picture(
|
|
||||||
id=p.id,
|
|
||||||
name=p.name,
|
|
||||||
parent_id=album_id_old_to_new[p.parent_id],
|
|
||||||
thumbnail=p.thumbnail,
|
|
||||||
compressed=p.compressed,
|
|
||||||
original=p.file,
|
|
||||||
owner_id=p.owner_id,
|
|
||||||
created_at=p.date,
|
|
||||||
is_moderated=p.is_moderated,
|
|
||||||
asked_for_removal=p.asked_for_removal,
|
|
||||||
moderator_id=p.moderator_id,
|
|
||||||
)
|
|
||||||
for p in pictures_batch
|
|
||||||
]
|
|
||||||
)
|
|
||||||
logger.info(f"Migrated {min(i * 2500, nb_pictures)} / {nb_pictures} pictures")
|
|
||||||
|
|
||||||
logger.info("Migrating album groups")
|
|
||||||
albums = SithFile.objects.filter(is_in_sas=True, is_folder=True).exclude(
|
|
||||||
id=settings.SITH_SAS_ROOT_DIR_ID
|
|
||||||
)
|
|
||||||
Album.edit_groups.through.objects.bulk_create(
|
|
||||||
[
|
|
||||||
Album.view_groups.through(
|
|
||||||
album=album_id_old_to_new[g.sithfile_id], group_id=g.group_id
|
|
||||||
)
|
|
||||||
for g in SithFile.view_groups.through.objects.filter(sithfile__in=albums)
|
|
||||||
]
|
|
||||||
)
|
|
||||||
Album.edit_groups.through.objects.bulk_create(
|
|
||||||
[
|
|
||||||
Album.view_groups.through(
|
|
||||||
album=album_id_old_to_new[g.sithfile_id], group_id=g.group_id
|
|
||||||
)
|
|
||||||
for g in SithFile.view_groups.through.objects.filter(sithfile__in=albums)
|
|
||||||
]
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [
|
|
||||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
||||||
("core", "0044_alter_userban_options"),
|
|
||||||
("sas", "0005_alter_sasfile_options"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
# les relations et les demandes de modération étaient liées à SithFile,
|
|
||||||
# via le model proxy Picture.
|
|
||||||
# Pour que la migration marche malgré la disparition du modèle Proxy,
|
|
||||||
# on change la relation pour qu'elle pointe directement vers SithFile
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="peoplepicturerelation",
|
|
||||||
name="picture",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="people",
|
|
||||||
to="core.sithfile",
|
|
||||||
verbose_name="picture",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="picturemoderationrequest",
|
|
||||||
name="picture",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="moderation_requests",
|
|
||||||
to="core.sithfile",
|
|
||||||
verbose_name="Picture",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.DeleteModel(name="Album"),
|
|
||||||
migrations.DeleteModel(name="Picture"),
|
|
||||||
migrations.DeleteModel(name="SasFile"),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Album",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"id",
|
|
||||||
models.AutoField(
|
|
||||||
auto_created=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
verbose_name="ID",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"thumbnail",
|
|
||||||
models.FileField(
|
|
||||||
max_length=256,
|
|
||||||
upload_to=sas.models.get_thumbnail_directory,
|
|
||||||
verbose_name="thumbnail",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.CharField(max_length=100, verbose_name="name")),
|
|
||||||
(
|
|
||||||
"event_date",
|
|
||||||
models.DateField(
|
|
||||||
default=django.utils.timezone.localdate,
|
|
||||||
help_text="The date on which the photos in this album were taken",
|
|
||||||
verbose_name="event date",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"is_moderated",
|
|
||||||
models.BooleanField(default=False, verbose_name="is moderated"),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"edit_groups",
|
|
||||||
models.ManyToManyField(
|
|
||||||
related_name="editable_albums",
|
|
||||||
to="core.group",
|
|
||||||
verbose_name="edit groups",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"parent",
|
|
||||||
models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="children",
|
|
||||||
to="sas.album",
|
|
||||||
verbose_name="parent",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"view_groups",
|
|
||||||
models.ManyToManyField(
|
|
||||||
related_name="viewable_albums",
|
|
||||||
to="core.group",
|
|
||||||
verbose_name="view groups",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={"verbose_name": "album"},
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Picture",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"id",
|
|
||||||
models.AutoField(
|
|
||||||
auto_created=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
verbose_name="ID",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"thumbnail",
|
|
||||||
models.FileField(
|
|
||||||
unique=True,
|
|
||||||
upload_to=sas.models.get_thumbnail_directory,
|
|
||||||
verbose_name="thumbnail",
|
|
||||||
max_length=256,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.CharField(max_length=256, verbose_name="file name")),
|
|
||||||
(
|
|
||||||
"original",
|
|
||||||
models.FileField(
|
|
||||||
unique=True,
|
|
||||||
upload_to=sas.models.get_directory,
|
|
||||||
verbose_name="original image",
|
|
||||||
max_length=256,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"compressed",
|
|
||||||
models.FileField(
|
|
||||||
unique=True,
|
|
||||||
upload_to=sas.models.get_compressed_directory,
|
|
||||||
verbose_name="compressed image",
|
|
||||||
max_length=256,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("created_at", models.DateTimeField(default=django.utils.timezone.now)),
|
|
||||||
(
|
|
||||||
"is_moderated",
|
|
||||||
models.BooleanField(default=False, verbose_name="is moderated"),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"asked_for_removal",
|
|
||||||
models.BooleanField(
|
|
||||||
default=False, verbose_name="asked for removal"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"moderator",
|
|
||||||
models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
related_name="moderated_pictures",
|
|
||||||
to=settings.AUTH_USER_MODEL,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"owner",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.PROTECT,
|
|
||||||
related_name="owned_pictures",
|
|
||||||
to=settings.AUTH_USER_MODEL,
|
|
||||||
verbose_name="owner",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"parent",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="pictures",
|
|
||||||
to="sas.album",
|
|
||||||
verbose_name="album",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={"abstract": False, "verbose_name": "picture"},
|
|
||||||
),
|
|
||||||
migrations.AddConstraint(
|
|
||||||
model_name="picture",
|
|
||||||
constraint=models.UniqueConstraint(
|
|
||||||
fields=("name", "parent"), name="sas_picture_unique_per_album"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddConstraint(
|
|
||||||
model_name="album",
|
|
||||||
constraint=models.UniqueConstraint(
|
|
||||||
fields=("name", "parent"), name="unique_album_name_if_same_parent"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(
|
|
||||||
copy_albums_and_pictures,
|
|
||||||
reverse_code=migrations.RunPython.noop,
|
|
||||||
elidable=True,
|
|
||||||
),
|
|
||||||
]
|
|
@@ -1,31 +0,0 @@
|
|||||||
# Generated by Django 4.2.17 on 2025-01-25 23:50
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [("sas", "0006_move_the_whole_sas")]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="peoplepicturerelation",
|
|
||||||
name="picture",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="people",
|
|
||||||
to="sas.picture",
|
|
||||||
verbose_name="picture",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="picturemoderationrequest",
|
|
||||||
name="picture",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="moderation_requests",
|
|
||||||
to="sas.picture",
|
|
||||||
verbose_name="Picture",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
401
sas/models.py
401
sas/models.py
@@ -18,52 +18,29 @@ from __future__ import annotations
|
|||||||
import contextlib
|
import contextlib
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import TYPE_CHECKING, ClassVar, Self
|
from typing import ClassVar, Self
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
from django.core.exceptions import ValidationError
|
|
||||||
from django.core.files.base import ContentFile
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models import Exists, OuterRef, Q
|
from django.db.models import Exists, OuterRef, Q
|
||||||
from django.db.models.deletion import Collector
|
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils import timezone
|
|
||||||
from django.utils.functional import cached_property
|
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
from core.models import Group, Notification, User
|
from core.models import Notification, SithFile, User
|
||||||
from core.utils import exif_auto_rotate, resize_image
|
from core.utils import exif_auto_rotate, resize_image
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
|
||||||
from django.db.models.fields.files import FieldFile
|
|
||||||
|
|
||||||
|
class SasFile(SithFile):
|
||||||
def get_directory(instance: SasFile, filename: str):
|
"""Proxy model for any file in the SAS.
|
||||||
return f"./{instance.parent_path}/{filename}"
|
|
||||||
|
|
||||||
|
|
||||||
def get_compressed_directory(instance: SasFile, filename: str):
|
|
||||||
return f"./.compressed/{instance.parent_path}/{filename}"
|
|
||||||
|
|
||||||
|
|
||||||
def get_thumbnail_directory(instance: SasFile, filename: str):
|
|
||||||
if isinstance(instance, Album):
|
|
||||||
_, extension = filename.rsplit(".", 1)
|
|
||||||
filename = f"{instance.name}/thumb.{extension}"
|
|
||||||
return f"./.thumbnails/{instance.parent_path}/{filename}"
|
|
||||||
|
|
||||||
|
|
||||||
class SasFile(models.Model):
|
|
||||||
"""Abstract model for SAS files
|
|
||||||
|
|
||||||
May be used to have logic that should be shared by both
|
May be used to have logic that should be shared by both
|
||||||
[Picture][sas.models.Picture] and [Album][sas.models.Album].
|
[Picture][sas.models.Picture] and [Album][sas.models.Album].
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
abstract = True
|
proxy = True
|
||||||
permissions = [
|
permissions = [
|
||||||
("moderate_sasfile", "Can moderate SAS files"),
|
("moderate_sasfile", "Can moderate SAS files"),
|
||||||
("view_unmoderated_sasfile", "Can view not moderated SAS files"),
|
("view_unmoderated_sasfile", "Can view not moderated SAS files"),
|
||||||
@@ -88,169 +65,6 @@ class SasFile(models.Model):
|
|||||||
def can_be_edited_by(self, user):
|
def can_be_edited_by(self, user):
|
||||||
return user.has_perm("sas.change_sasfile")
|
return user.has_perm("sas.change_sasfile")
|
||||||
|
|
||||||
@cached_property
|
|
||||||
def parent_path(self) -> str:
|
|
||||||
"""The parent location in the SAS album tree (e.g. `SAS/foo/bar`)."""
|
|
||||||
return "/".join(["SAS", *[p.name for p in self.parent_list]])
|
|
||||||
|
|
||||||
@cached_property
|
|
||||||
def parent_list(self) -> list[Album]:
|
|
||||||
"""The ancestors of this SAS object.
|
|
||||||
|
|
||||||
The result is ordered from the direct parent to the farthest one.
|
|
||||||
"""
|
|
||||||
parents = []
|
|
||||||
current = self.parent
|
|
||||||
while current is not None:
|
|
||||||
parents.append(current)
|
|
||||||
current = current.parent
|
|
||||||
return parents
|
|
||||||
|
|
||||||
|
|
||||||
class AlbumQuerySet(models.QuerySet):
|
|
||||||
def viewable_by(self, user: User) -> Self:
|
|
||||||
"""Filter the albums that this user can view.
|
|
||||||
|
|
||||||
Warning:
|
|
||||||
Calling this queryset method may add several additional requests.
|
|
||||||
"""
|
|
||||||
if user.is_root or user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID):
|
|
||||||
return self.all()
|
|
||||||
if user.was_subscribed:
|
|
||||||
return self.filter(is_moderated=True)
|
|
||||||
# known bug : if all children of an album are also albums
|
|
||||||
# then this album is excluded, even if one of the sub-albums should be visible.
|
|
||||||
# The fs-like navigation is likely to be half-broken for non-subscribers,
|
|
||||||
# but that's ok, since non-subscribers are expected to see only the albums
|
|
||||||
# containing pictures on which they have been identified (hence, very few).
|
|
||||||
# Most, if not all, of their albums will be displayed on the
|
|
||||||
# `latest albums` section of the SAS.
|
|
||||||
# Moreover, they will still see all of their picture in their profile.
|
|
||||||
return self.filter(
|
|
||||||
Exists(Picture.objects.filter(parent_id=OuterRef("pk")).viewable_by(user))
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class Album(SasFile):
|
|
||||||
NAME_MAX_LENGTH: ClassVar[int] = 50
|
|
||||||
|
|
||||||
name = models.CharField(_("name"), max_length=100)
|
|
||||||
parent = models.ForeignKey(
|
|
||||||
"self",
|
|
||||||
related_name="children",
|
|
||||||
verbose_name=_("parent"),
|
|
||||||
null=True,
|
|
||||||
blank=True,
|
|
||||||
on_delete=models.CASCADE,
|
|
||||||
)
|
|
||||||
thumbnail = models.FileField(
|
|
||||||
upload_to=get_thumbnail_directory,
|
|
||||||
verbose_name=_("thumbnail"),
|
|
||||||
max_length=256,
|
|
||||||
blank=True,
|
|
||||||
)
|
|
||||||
view_groups = models.ManyToManyField(
|
|
||||||
Group, related_name="viewable_albums", verbose_name=_("view groups"), blank=True
|
|
||||||
)
|
|
||||||
edit_groups = models.ManyToManyField(
|
|
||||||
Group, related_name="editable_albums", verbose_name=_("edit groups"), blank=True
|
|
||||||
)
|
|
||||||
event_date = models.DateField(
|
|
||||||
_("event date"),
|
|
||||||
help_text=_("The date on which the photos in this album were taken"),
|
|
||||||
default=timezone.localdate,
|
|
||||||
blank=True,
|
|
||||||
)
|
|
||||||
is_moderated = models.BooleanField(_("is moderated"), default=False)
|
|
||||||
|
|
||||||
objects = AlbumQuerySet.as_manager()
|
|
||||||
|
|
||||||
class Meta:
|
|
||||||
verbose_name = _("album")
|
|
||||||
constraints = [
|
|
||||||
models.UniqueConstraint(
|
|
||||||
fields=["name", "parent"],
|
|
||||||
name="unique_album_name_if_same_parent",
|
|
||||||
# TODO : add `nulls_distinct=True` after upgrading to django>=5.0
|
|
||||||
)
|
|
||||||
]
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return f"Album {self.name}"
|
|
||||||
|
|
||||||
def save(self, *args, **kwargs):
|
|
||||||
super().save(*args, **kwargs)
|
|
||||||
for user in User.objects.filter(
|
|
||||||
groups__id__in=[settings.SITH_GROUP_SAS_ADMIN_ID]
|
|
||||||
):
|
|
||||||
Notification(
|
|
||||||
user=user,
|
|
||||||
url=reverse("sas:moderation"),
|
|
||||||
type="SAS_MODERATION",
|
|
||||||
param="1",
|
|
||||||
).save()
|
|
||||||
|
|
||||||
def get_absolute_url(self):
|
|
||||||
return reverse("sas:album", kwargs={"album_id": self.id})
|
|
||||||
|
|
||||||
def clean(self):
|
|
||||||
super().clean()
|
|
||||||
if "/" in self.name:
|
|
||||||
raise ValidationError(_("Character '/' not authorized in name"))
|
|
||||||
if self.parent_id is not None and (
|
|
||||||
self.id == self.parent_id or self in self.parent_list
|
|
||||||
):
|
|
||||||
raise ValidationError(_("Loop in album tree"), code="loop")
|
|
||||||
if self.thumbnail:
|
|
||||||
try:
|
|
||||||
Image.open(BytesIO(self.thumbnail.read()))
|
|
||||||
except Image.UnidentifiedImageError as e:
|
|
||||||
raise ValidationError(_("This is not a valid album thumbnail")) from e
|
|
||||||
|
|
||||||
def delete(self, *args, **kwargs):
|
|
||||||
"""Delete the album, all of its children and all linked disk files"""
|
|
||||||
collector = Collector(using="default")
|
|
||||||
collector.collect([self])
|
|
||||||
albums: set[Album] = collector.data[Album]
|
|
||||||
pictures: set[Picture] = collector.data[Picture]
|
|
||||||
files: list[FieldFile] = [
|
|
||||||
*[a.thumbnail for a in albums],
|
|
||||||
*[p.thumbnail for p in pictures],
|
|
||||||
*[p.compressed for p in pictures],
|
|
||||||
*[p.original for p in pictures],
|
|
||||||
]
|
|
||||||
# `bool(f)` checks that the file actually exists on the disk
|
|
||||||
files = [f for f in files if bool(f)]
|
|
||||||
folders = {Path(f.path).parent for f in files}
|
|
||||||
res = super().delete(*args, **kwargs)
|
|
||||||
# once the model instances have been deleted,
|
|
||||||
# delete the actual files.
|
|
||||||
for file in files:
|
|
||||||
# save=False ensures that django doesn't recreate the db record,
|
|
||||||
# which would make the whole deletion pointless
|
|
||||||
# cf. https://docs.djangoproject.com/en/stable/ref/models/fields/#django.db.models.fields.files.FieldFile.delete
|
|
||||||
file.delete(save=False)
|
|
||||||
for folder in folders:
|
|
||||||
# now that the files are deleted, remove the empty folders
|
|
||||||
if folder.is_dir() and next(folder.iterdir(), None) is None:
|
|
||||||
folder.rmdir()
|
|
||||||
return res
|
|
||||||
|
|
||||||
def get_download_url(self):
|
|
||||||
return reverse("sas:album_preview", kwargs={"album_id": self.id})
|
|
||||||
|
|
||||||
def generate_thumbnail(self):
|
|
||||||
p = (
|
|
||||||
self.pictures.exclude(thumbnail="").order_by("?").first()
|
|
||||||
or self.children.exclude(thumbnail="").order_by("?").first()
|
|
||||||
)
|
|
||||||
if p:
|
|
||||||
# The file is loaded into memory to duplicate it.
|
|
||||||
# It may not be the most efficient way, but thumbnails are
|
|
||||||
# usually quite small, so it's still ok
|
|
||||||
self.thumbnail = ContentFile(p.thumbnail.read(), name="thumb.webp")
|
|
||||||
self.save()
|
|
||||||
|
|
||||||
|
|
||||||
class PictureQuerySet(models.QuerySet):
|
class PictureQuerySet(models.QuerySet):
|
||||||
def viewable_by(self, user: User) -> Self:
|
def viewable_by(self, user: User) -> Self:
|
||||||
@@ -266,65 +80,23 @@ class PictureQuerySet(models.QuerySet):
|
|||||||
return self.filter(people__user_id=user.id, is_moderated=True)
|
return self.filter(people__user_id=user.id, is_moderated=True)
|
||||||
|
|
||||||
|
|
||||||
|
class SASPictureManager(models.Manager):
|
||||||
|
def get_queryset(self):
|
||||||
|
return super().get_queryset().filter(is_in_sas=True, is_folder=False)
|
||||||
|
|
||||||
|
|
||||||
class Picture(SasFile):
|
class Picture(SasFile):
|
||||||
name = models.CharField(_("file name"), max_length=256)
|
|
||||||
parent = models.ForeignKey(
|
|
||||||
Album,
|
|
||||||
related_name="pictures",
|
|
||||||
verbose_name=_("album"),
|
|
||||||
on_delete=models.CASCADE,
|
|
||||||
)
|
|
||||||
thumbnail = models.FileField(
|
|
||||||
upload_to=get_thumbnail_directory,
|
|
||||||
verbose_name=_("thumbnail"),
|
|
||||||
max_length=256,
|
|
||||||
unique=True,
|
|
||||||
)
|
|
||||||
original = models.FileField(
|
|
||||||
upload_to=get_directory,
|
|
||||||
verbose_name=_("original image"),
|
|
||||||
max_length=256,
|
|
||||||
unique=True,
|
|
||||||
)
|
|
||||||
compressed = models.FileField(
|
|
||||||
upload_to=get_compressed_directory,
|
|
||||||
verbose_name=_("compressed image"),
|
|
||||||
max_length=256,
|
|
||||||
unique=True,
|
|
||||||
)
|
|
||||||
created_at = models.DateTimeField(default=timezone.now)
|
|
||||||
owner = models.ForeignKey(
|
|
||||||
User,
|
|
||||||
related_name="owned_pictures",
|
|
||||||
verbose_name=_("owner"),
|
|
||||||
on_delete=models.PROTECT,
|
|
||||||
)
|
|
||||||
|
|
||||||
is_moderated = models.BooleanField(_("is moderated"), default=False)
|
|
||||||
asked_for_removal = models.BooleanField(_("asked for removal"), default=False)
|
|
||||||
moderator = models.ForeignKey(
|
|
||||||
User,
|
|
||||||
related_name="moderated_pictures",
|
|
||||||
null=True,
|
|
||||||
blank=True,
|
|
||||||
on_delete=models.SET_NULL,
|
|
||||||
)
|
|
||||||
|
|
||||||
objects = PictureQuerySet.as_manager()
|
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("picture")
|
proxy = True
|
||||||
constraints = [
|
|
||||||
models.UniqueConstraint(
|
|
||||||
fields=["name", "parent"], name="sas_picture_unique_per_album"
|
|
||||||
)
|
|
||||||
]
|
|
||||||
|
|
||||||
def __str__(self):
|
objects = SASPictureManager.from_queryset(PictureQuerySet)()
|
||||||
return self.name
|
|
||||||
|
|
||||||
def get_absolute_url(self):
|
@property
|
||||||
return reverse("sas:picture", kwargs={"picture_id": self.id})
|
def is_vertical(self):
|
||||||
|
with open(settings.MEDIA_ROOT / self.file.name, "rb") as f:
|
||||||
|
im = Image.open(BytesIO(f.read()))
|
||||||
|
(w, h) = im.size
|
||||||
|
return (w / h) < 1
|
||||||
|
|
||||||
def get_download_url(self):
|
def get_download_url(self):
|
||||||
return reverse("sas:download", kwargs={"picture_id": self.id})
|
return reverse("sas:download", kwargs={"picture_id": self.id})
|
||||||
@@ -335,34 +107,41 @@ class Picture(SasFile):
|
|||||||
def get_download_thumb_url(self):
|
def get_download_thumb_url(self):
|
||||||
return reverse("sas:download_thumb", kwargs={"picture_id": self.id})
|
return reverse("sas:download_thumb", kwargs={"picture_id": self.id})
|
||||||
|
|
||||||
@property
|
def get_absolute_url(self):
|
||||||
def is_vertical(self):
|
return reverse("sas:picture", kwargs={"picture_id": self.id})
|
||||||
# original, compressed and thumbnail image have all three the same ratio,
|
|
||||||
# so the smallest one is used to tell if the image is vertical
|
|
||||||
im = Image.open(BytesIO(self.thumbnail.read()))
|
|
||||||
(w, h) = im.size
|
|
||||||
return w < h
|
|
||||||
|
|
||||||
def generate_thumbnails(self):
|
def generate_thumbnails(self, *, overwrite=False):
|
||||||
im = Image.open(self.original)
|
im = Image.open(BytesIO(self.file.read()))
|
||||||
with contextlib.suppress(Exception):
|
with contextlib.suppress(Exception):
|
||||||
im = exif_auto_rotate(im)
|
im = exif_auto_rotate(im)
|
||||||
# convert the compressed image and the thumbnail into webp
|
# convert the compressed image and the thumbnail into webp
|
||||||
|
# The original image keeps its original type, because it's not
|
||||||
|
# meant to be shown on the website, but rather to keep the real image
|
||||||
|
# for less frequent cases (like downloading the pictures of an user)
|
||||||
|
extension = self.mime_type.split("/")[-1]
|
||||||
# the HD version of the image doesn't need to be optimized, because :
|
# the HD version of the image doesn't need to be optimized, because :
|
||||||
# - it isn't frequently queried
|
# - it isn't frequently queried
|
||||||
# - optimizing large images takes a lot of time, which greatly hinders the UX
|
# - optimizing large images takes a lot time, which greatly hinders the UX
|
||||||
# - photographers usually already optimize their images
|
# - photographers usually already optimize their images
|
||||||
|
file = resize_image(im, max(im.size), extension, optimize=False)
|
||||||
thumb = resize_image(im, 200, "webp")
|
thumb = resize_image(im, 200, "webp")
|
||||||
compressed = resize_image(im, 1200, "webp")
|
compressed = resize_image(im, 1200, "webp")
|
||||||
new_extension_name = str(Path(self.original.name).with_suffix(".webp"))
|
if overwrite:
|
||||||
|
self.file.delete()
|
||||||
|
self.thumbnail.delete()
|
||||||
|
self.compressed.delete()
|
||||||
|
new_extension_name = str(Path(self.name).with_suffix(".webp"))
|
||||||
|
self.file = file
|
||||||
|
self.file.name = self.name
|
||||||
self.thumbnail = thumb
|
self.thumbnail = thumb
|
||||||
self.thumbnail.name = new_extension_name
|
self.thumbnail.name = new_extension_name
|
||||||
self.compressed = compressed
|
self.compressed = compressed
|
||||||
self.compressed.name = new_extension_name
|
self.compressed.name = new_extension_name
|
||||||
|
|
||||||
def rotate(self, degree):
|
def rotate(self, degree):
|
||||||
for field in self.original, self.compressed, self.thumbnail:
|
for attr in ["file", "compressed", "thumbnail"]:
|
||||||
with open(field.file, "r+b") as file:
|
name = self.__getattribute__(attr).name
|
||||||
|
with open(settings.MEDIA_ROOT / name, "r+b") as file:
|
||||||
if file:
|
if file:
|
||||||
im = Image.open(BytesIO(file.read()))
|
im = Image.open(BytesIO(file.read()))
|
||||||
file.seek(0)
|
file.seek(0)
|
||||||
@@ -375,6 +154,110 @@ class Picture(SasFile):
|
|||||||
progressive=True,
|
progressive=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def get_next(self):
|
||||||
|
if self.is_moderated:
|
||||||
|
pictures_qs = self.parent.children.filter(
|
||||||
|
is_moderated=True,
|
||||||
|
asked_for_removal=False,
|
||||||
|
is_folder=False,
|
||||||
|
id__gt=self.id,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
pictures_qs = Picture.objects.filter(id__gt=self.id, is_moderated=False)
|
||||||
|
return pictures_qs.order_by("id").first()
|
||||||
|
|
||||||
|
def get_previous(self):
|
||||||
|
if self.is_moderated:
|
||||||
|
pictures_qs = self.parent.children.filter(
|
||||||
|
is_moderated=True,
|
||||||
|
asked_for_removal=False,
|
||||||
|
is_folder=False,
|
||||||
|
id__lt=self.id,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
pictures_qs = Picture.objects.filter(id__lt=self.id, is_moderated=False)
|
||||||
|
return pictures_qs.order_by("-id").first()
|
||||||
|
|
||||||
|
|
||||||
|
class AlbumQuerySet(models.QuerySet):
|
||||||
|
def viewable_by(self, user: User) -> Self:
|
||||||
|
"""Filter the albums that this user can view.
|
||||||
|
|
||||||
|
Warning:
|
||||||
|
Calling this queryset method may add several additional requests.
|
||||||
|
"""
|
||||||
|
if user.has_perm("sas.moderate_sasfile"):
|
||||||
|
return self.all()
|
||||||
|
if user.was_subscribed:
|
||||||
|
return self.filter(Q(is_moderated=True) | Q(owner=user))
|
||||||
|
# known bug : if all children of an album are also albums
|
||||||
|
# then this album is excluded, even if one of the sub-albums should be visible.
|
||||||
|
# The fs-like navigation is likely to be half-broken for non-subscribers,
|
||||||
|
# but that's ok, since non-subscribers are expected to see only the albums
|
||||||
|
# containing pictures on which they have been identified (hence, very few).
|
||||||
|
# Most, if not all, of their albums will be displayed on the
|
||||||
|
# `latest albums` section of the SAS.
|
||||||
|
# Moreover, they will still see all of their picture in their profile.
|
||||||
|
return self.filter(
|
||||||
|
Exists(Picture.objects.filter(parent_id=OuterRef("pk")).viewable_by(user))
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class SASAlbumManager(models.Manager):
|
||||||
|
def get_queryset(self):
|
||||||
|
return super().get_queryset().filter(is_in_sas=True, is_folder=True)
|
||||||
|
|
||||||
|
|
||||||
|
class Album(SasFile):
|
||||||
|
NAME_MAX_LENGTH: ClassVar[int] = 50
|
||||||
|
"""Maximum length of an album's name.
|
||||||
|
|
||||||
|
[SithFile][core.models.SithFile] have a maximum length
|
||||||
|
of 256 characters.
|
||||||
|
However, this limit is too high for albums.
|
||||||
|
Names longer than 50 characters are harder to read
|
||||||
|
and harder to display on the SAS page.
|
||||||
|
|
||||||
|
It is to be noted, though, that this does not
|
||||||
|
add or modify any db behaviour.
|
||||||
|
It's just a constant to be used in views and forms.
|
||||||
|
"""
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
proxy = True
|
||||||
|
|
||||||
|
objects = SASAlbumManager.from_queryset(AlbumQuerySet)()
|
||||||
|
|
||||||
|
@property
|
||||||
|
def children_pictures(self):
|
||||||
|
return Picture.objects.filter(parent=self)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def children_albums(self):
|
||||||
|
return Album.objects.filter(parent=self)
|
||||||
|
|
||||||
|
def get_absolute_url(self):
|
||||||
|
if self.id == settings.SITH_SAS_ROOT_DIR_ID:
|
||||||
|
return reverse("sas:main")
|
||||||
|
return reverse("sas:album", kwargs={"album_id": self.id})
|
||||||
|
|
||||||
|
def get_download_url(self):
|
||||||
|
return reverse("sas:album_preview", kwargs={"album_id": self.id})
|
||||||
|
|
||||||
|
def generate_thumbnail(self):
|
||||||
|
p = (
|
||||||
|
self.children_pictures.order_by("?").first()
|
||||||
|
or self.children_albums.exclude(file=None)
|
||||||
|
.exclude(file="")
|
||||||
|
.order_by("?")
|
||||||
|
.first()
|
||||||
|
)
|
||||||
|
if p and p.file:
|
||||||
|
image = resize_image(Image.open(BytesIO(p.file.read())), 200, "webp")
|
||||||
|
self.file = image
|
||||||
|
self.file.name = f"{self.name}/thumb.webp"
|
||||||
|
self.save()
|
||||||
|
|
||||||
|
|
||||||
def sas_notification_callback(notif: Notification):
|
def sas_notification_callback(notif: Notification):
|
||||||
count = Picture.objects.filter(is_moderated=False).count()
|
count = Picture.objects.filter(is_moderated=False).count()
|
||||||
|
@@ -56,12 +56,7 @@ class AlbumAutocompleteSchema(ModelSchema):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def resolve_path(obj: Album) -> str:
|
def resolve_path(obj: Album) -> str:
|
||||||
return str(Path(obj.parent_path) / obj.name)
|
return str(Path(obj.get_parent_path()) / obj.name)
|
||||||
|
|
||||||
|
|
||||||
class MoveAlbumSchema(Schema):
|
|
||||||
id: int
|
|
||||||
new_parent_id: int
|
|
||||||
|
|
||||||
|
|
||||||
class PictureFilterSchema(FilterSchema):
|
class PictureFilterSchema(FilterSchema):
|
||||||
@@ -74,7 +69,7 @@ class PictureFilterSchema(FilterSchema):
|
|||||||
class PictureSchema(ModelSchema):
|
class PictureSchema(ModelSchema):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Picture
|
model = Picture
|
||||||
fields = ["id", "name", "created_at", "is_moderated", "asked_for_removal"]
|
fields = ["id", "name", "date", "size", "is_moderated", "asked_for_removal"]
|
||||||
|
|
||||||
owner: UserProfileSchema
|
owner: UserProfileSchema
|
||||||
sas_url: str
|
sas_url: str
|
||||||
|
@@ -125,108 +125,3 @@ document.addEventListener("alpine:init", () => {
|
|||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Todo: migrate to alpine.js if we have some time
|
|
||||||
// $("form#upload_form").submit(function (event) {
|
|
||||||
// const formData = new FormData($(this)[0]);
|
|
||||||
//
|
|
||||||
// if (!formData.get("album_name") && !formData.get("images").name) return false;
|
|
||||||
//
|
|
||||||
// if (!formData.get("images").name) {
|
|
||||||
// return true;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// event.preventDefault();
|
|
||||||
//
|
|
||||||
// let errorList = this.querySelector("#upload_form ul.errorlist.nonfield");
|
|
||||||
// if (errorList === null) {
|
|
||||||
// errorList = document.createElement("ul");
|
|
||||||
// errorList.classList.add("errorlist", "nonfield");
|
|
||||||
// this.insertBefore(errorList, this.firstElementChild);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// while (errorList.childElementCount > 0)
|
|
||||||
// errorList.removeChild(errorList.firstElementChild);
|
|
||||||
//
|
|
||||||
// let progress = this.querySelector("progress");
|
|
||||||
// if (progress === null) {
|
|
||||||
// progress = document.createElement("progress");
|
|
||||||
// progress.value = 0;
|
|
||||||
// const p = document.createElement("p");
|
|
||||||
// p.appendChild(progress);
|
|
||||||
// this.insertBefore(p, this.lastElementChild);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// let dataHolder;
|
|
||||||
//
|
|
||||||
// if (formData.get("album_name")) {
|
|
||||||
// dataHolder = new FormData();
|
|
||||||
// dataHolder.set("csrfmiddlewaretoken", "{{ csrf_token }}");
|
|
||||||
// dataHolder.set("album_name", formData.get("album_name"));
|
|
||||||
// $.ajax({
|
|
||||||
// method: "POST",
|
|
||||||
// url: "{{ url('sas:album_upload', album_id=object.id) }}",
|
|
||||||
// data: dataHolder,
|
|
||||||
// processData: false,
|
|
||||||
// contentType: false,
|
|
||||||
// success: onSuccess,
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// const images = formData.getAll("images");
|
|
||||||
// const imagesCount = images.length;
|
|
||||||
// let completeCount = 0;
|
|
||||||
//
|
|
||||||
// const poolSize = 1;
|
|
||||||
// const imagePool = [];
|
|
||||||
//
|
|
||||||
// while (images.length > 0 && imagePool.length < poolSize) {
|
|
||||||
// const image = images.shift();
|
|
||||||
// imagePool.push(image);
|
|
||||||
// sendImage(image);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// function sendImage(image) {
|
|
||||||
// dataHolder = new FormData();
|
|
||||||
// dataHolder.set("csrfmiddlewaretoken", "{{ csrf_token }}");
|
|
||||||
// dataHolder.set("images", image);
|
|
||||||
//
|
|
||||||
// $.ajax({
|
|
||||||
// method: "POST",
|
|
||||||
// url: "{{ url('sas:album_upload', album_id=object.id) }}",
|
|
||||||
// data: dataHolder,
|
|
||||||
// processData: false,
|
|
||||||
// contentType: false,
|
|
||||||
// })
|
|
||||||
// .fail(onSuccess.bind(undefined, image))
|
|
||||||
// .done(onSuccess.bind(undefined, image))
|
|
||||||
// .always(next.bind(undefined, image));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// function next(image, _, __) {
|
|
||||||
// const index = imagePool.indexOf(image);
|
|
||||||
// const nextImage = images.shift();
|
|
||||||
//
|
|
||||||
// if (index !== -1) {
|
|
||||||
// imagePool.splice(index, 1);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (nextImage) {
|
|
||||||
// imagePool.push(nextImage);
|
|
||||||
// sendImage(nextImage);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// function onSuccess(image, data, _, __) {
|
|
||||||
// let errors = [];
|
|
||||||
//
|
|
||||||
// if ($(data.responseText).find(".errorlist.nonfield")[0])
|
|
||||||
// errors = Array.from($(data.responseText).find(".errorlist.nonfield")[0].children);
|
|
||||||
//
|
|
||||||
// while (errors.length > 0) errorList.appendChild(errors.shift());
|
|
||||||
//
|
|
||||||
// progress.value = ++completeCount / imagesCount;
|
|
||||||
// if (progress.value === 1 && errorList.children.length === 0)
|
|
||||||
// document.location.reload();
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
|
@@ -30,10 +30,10 @@ document.addEventListener("alpine:init", () => {
|
|||||||
|
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
this.pictures.map((p: PictureSchema) => {
|
this.pictures.map((p: PictureSchema) => {
|
||||||
const imgName = `${p.album}/IMG_${p.created_at.replace(/[:\-]/g, "_")}${p.name.slice(p.name.lastIndexOf("."))}`;
|
const imgName = `${p.album}/IMG_${p.date.replace(/[:\-]/g, "_")}${p.name.slice(p.name.lastIndexOf("."))}`;
|
||||||
return zipWriter.add(imgName, new HttpReader(p.full_size_url), {
|
return zipWriter.add(imgName, new HttpReader(p.full_size_url), {
|
||||||
level: 9,
|
level: 9,
|
||||||
lastModDate: new Date(p.created_at),
|
lastModDate: new Date(p.date),
|
||||||
onstart: incrementProgressBar,
|
onstart: incrementProgressBar,
|
||||||
});
|
});
|
||||||
}),
|
}),
|
||||||
|
@@ -142,8 +142,7 @@ exportToHtml("loadViewer", (config: ViewerConfig) => {
|
|||||||
// biome-ignore lint/style/useNamingConvention: api is in snake_case
|
// biome-ignore lint/style/useNamingConvention: api is in snake_case
|
||||||
full_size_url: "",
|
full_size_url: "",
|
||||||
owner: "",
|
owner: "",
|
||||||
// biome-ignore lint/style/useNamingConvention: api is in snake_case
|
date: new Date(),
|
||||||
created_at: new Date(),
|
|
||||||
identifications: [] as IdentifiedUserSchema[],
|
identifications: [] as IdentifiedUserSchema[],
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<code>
|
<code>
|
||||||
<a href="{{ url('sas:main') }}">SAS</a> / {{ print_path(album.parent) }} {{ album.name }}
|
<a href="{{ url('sas:main') }}">SAS</a> / {{ print_path(album.parent) }} {{ album.get_display_name() }}
|
||||||
</code>
|
</code>
|
||||||
|
|
||||||
{% set is_sas_admin = user.can_edit(album) %}
|
{% set is_sas_admin = user.can_edit(album) %}
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
<form action="" method="post" enctype="multipart/form-data">
|
<form action="" method="post" enctype="multipart/form-data">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="album-navbar">
|
<div class="album-navbar">
|
||||||
<h3>{{ album.name }}</h3>
|
<h3>{{ album.get_display_name() }}</h3>
|
||||||
|
|
||||||
<div class="toolbar">
|
<div class="toolbar">
|
||||||
<a href="{{ url('sas:album_edit', album_id=album.id) }}">{% trans %}Edit{% endtrans %}</a>
|
<a href="{{ url('sas:album_edit', album_id=album.id) }}">{% trans %}Edit{% endtrans %}</a>
|
||||||
@@ -40,17 +40,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{# {% if clipboard %}#}
|
{% if clipboard %}
|
||||||
{# <div class="clipboard">#}
|
<div class="clipboard">
|
||||||
{# {% trans %}Clipboard: {% endtrans %}#}
|
{% trans %}Clipboard: {% endtrans %}
|
||||||
{# <ul>#}
|
<ul>
|
||||||
{# {% for f in clipboard["albums"] %}#}
|
{% for f in clipboard %}
|
||||||
{# <li>{{ f.get_full_path() }}</li>#}
|
<li>{{ f.get_full_path() }}</li>
|
||||||
{# {% endfor %}#}
|
{% endfor %}
|
||||||
{# </ul>#}
|
</ul>
|
||||||
{# <input name="clear" type="submit" value="{% trans %}Clear clipboard{% endtrans %}">#}
|
<input name="clear" type="submit" value="{% trans %}Clear clipboard{% endtrans %}">
|
||||||
{# </div>#}
|
</div>
|
||||||
{# {% endif %}#}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if show_albums %}
|
{% if show_albums %}
|
||||||
@@ -73,8 +73,8 @@
|
|||||||
<div class="text">{% trans %}To be moderated{% endtrans %}</div>
|
<div class="text">{% trans %}To be moderated{% endtrans %}</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
{% if edit_mode %}
|
{% if is_sas_admin %}
|
||||||
<input type="checkbox" name="album_list" :value="album.id">
|
<input type="checkbox" name="file_list" :value="album.id">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
{% if is_sas_admin %}
|
{% if is_sas_admin %}
|
||||||
<input type="checkbox" name="picture_list" :value="picture.id">
|
<input type="checkbox" name="file_list" :value="picture.id">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
@@ -120,9 +120,9 @@
|
|||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="inputs">
|
<div class="inputs">
|
||||||
<p>
|
<p>
|
||||||
<label for="{{ form.images.id_for_label }}">{{ form.images.label }} :</label>
|
<label for="{{ upload_form.images.id_for_label }}">{{ upload_form.images.label }} :</label>
|
||||||
{{ form.images|add_attr("x-ref=pictures") }}
|
{{ upload_form.images|add_attr("x-ref=pictures") }}
|
||||||
<span class="helptext">{{ form.images.help_text }}</span>
|
<span class="helptext">{{ upload_form.images.help_text }}</span>
|
||||||
</p>
|
</p>
|
||||||
<input type="submit" value="{% trans %}Upload{% endtrans %}" />
|
<input type="submit" value="{% trans %}Upload{% endtrans %}" />
|
||||||
<progress x-ref="progress" x-show="sending"></progress>
|
<progress x-ref="progress" x-show="sending"></progress>
|
||||||
|
@@ -1,13 +1,19 @@
|
|||||||
{% macro display_album(a, edit_mode) %}
|
{% macro display_album(a, edit_mode) %}
|
||||||
<a href="{{ url('sas:album', album_id=a.id) }}">
|
<a href="{{ url('sas:album', album_id=a.id) }}">
|
||||||
{% if a.thumbnail %}
|
{% if a.file %}
|
||||||
{% set img = a.get_download_url() %}
|
{% set img = a.get_download_url() %}
|
||||||
{% set src = a.name %}
|
{% set src = a.name %}
|
||||||
|
{% elif a.children.filter(is_folder=False, is_moderated=True).exists() %}
|
||||||
|
{% set picture = a.children.filter(is_folder=False).first().as_picture %}
|
||||||
|
{% set img = picture.get_download_thumb_url() %}
|
||||||
|
{% set src = picture.name %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% set img = static('core/img/sas.jpg') %}
|
{% set img = static('core/img/sas.jpg') %}
|
||||||
{% set src = "sas.jpg" %}
|
{% set src = "sas.jpg" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="album{% if not a.is_moderated %} not_moderated{% endif %}">
|
<div
|
||||||
|
class="album{% if not a.is_moderated %} not_moderated{% endif %}"
|
||||||
|
>
|
||||||
<img src="{{ img }}" alt="{{ src }}" loading="lazy" />
|
<img src="{{ img }}" alt="{{ src }}" loading="lazy" />
|
||||||
{% if not a.is_moderated %}
|
{% if not a.is_moderated %}
|
||||||
<div class="overlay"> </div>
|
<div class="overlay"> </div>
|
||||||
@@ -25,7 +31,7 @@
|
|||||||
{% macro print_path(file) %}
|
{% macro print_path(file) %}
|
||||||
{% if file and file.parent %}
|
{% if file and file.parent %}
|
||||||
{{ print_path(file.parent) }}
|
{{ print_path(file.parent) }}
|
||||||
<a href="{{ url("sas:album", album_id=file.id) }}">{{ file.name }}</a> /
|
<a href="{{ url('sas:album', album_id=file.id) }}">{{ file.get_display_name() }}</a> /
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
|
@@ -8,6 +8,10 @@
|
|||||||
{% trans %}SAS{% endtrans %}
|
{% trans %}SAS{% endtrans %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{% trans %}See all the photos taken during events organised by the AE.{% endtrans %}
|
||||||
|
{%- endblock %}
|
||||||
|
|
||||||
{% set is_sas_admin = user.is_root or user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID) %}
|
{% set is_sas_admin = user.is_root or user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID) %}
|
||||||
|
|
||||||
{% from "sas/macros.jinja" import display_album %}
|
{% from "sas/macros.jinja" import display_album %}
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
{%- block additional_css -%}
|
{%- block additional_css -%}
|
||||||
<link rel="stylesheet" href="{{ static('bundled/core/components/ajax-select-index.css') }}">
|
<link defer rel="stylesheet" href="{{ static('bundled/core/components/ajax-select-index.css') }}">
|
||||||
<link rel="stylesheet" href="{{ static('core/components/ajax-select.scss') }}">
|
<link defer rel="stylesheet" href="{{ static('core/components/ajax-select.scss') }}">
|
||||||
<link rel="stylesheet" href="{{ static('sas/css/picture.scss') }}">
|
<link defer rel="stylesheet" href="{{ static('sas/css/picture.scss') }}">
|
||||||
{%- endblock -%}
|
{%- endblock -%}
|
||||||
|
|
||||||
{%- block additional_js -%}
|
{%- block additional_js -%}
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
<span
|
<span
|
||||||
x-text="Intl.DateTimeFormat(
|
x-text="Intl.DateTimeFormat(
|
||||||
'{{ LANGUAGE_CODE }}', {dateStyle: 'long'}
|
'{{ LANGUAGE_CODE }}', {dateStyle: 'long'}
|
||||||
).format(new Date(currentPicture.created_at))"
|
).format(new Date(currentPicture.date))"
|
||||||
>
|
>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -27,8 +27,8 @@ class TestSas(TestCase):
|
|||||||
cls.user_b, cls.user_c = subscriber_user.make(_quantity=2)
|
cls.user_b, cls.user_c = subscriber_user.make(_quantity=2)
|
||||||
|
|
||||||
picture = picture_recipe.extend(owner=owner)
|
picture = picture_recipe.extend(owner=owner)
|
||||||
cls.album_a = baker.make(Album)
|
cls.album_a = baker.make(Album, is_in_sas=True, parent=sas)
|
||||||
cls.album_b = baker.make(Album)
|
cls.album_b = baker.make(Album, is_in_sas=True, parent=sas)
|
||||||
relation_recipe = Recipe(PeoplePictureRelation)
|
relation_recipe = Recipe(PeoplePictureRelation)
|
||||||
relations = []
|
relations = []
|
||||||
for album in cls.album_a, cls.album_b:
|
for album in cls.album_a, cls.album_b:
|
||||||
@@ -61,7 +61,7 @@ class TestPictureSearch(TestSas):
|
|||||||
self.client.force_login(self.user_b)
|
self.client.force_login(self.user_b)
|
||||||
res = self.client.get(self.url + f"?album_id={self.album_a.id}")
|
res = self.client.get(self.url + f"?album_id={self.album_a.id}")
|
||||||
assert res.status_code == 200
|
assert res.status_code == 200
|
||||||
expected = list(self.album_a.pictures.values_list("id", flat=True))
|
expected = list(self.album_a.children_pictures.values_list("id", flat=True))
|
||||||
assert [i["id"] for i in res.json()["results"]] == expected
|
assert [i["id"] for i in res.json()["results"]] == expected
|
||||||
|
|
||||||
def test_filter_by_user(self):
|
def test_filter_by_user(self):
|
||||||
@@ -70,7 +70,7 @@ class TestPictureSearch(TestSas):
|
|||||||
assert res.status_code == 200
|
assert res.status_code == 200
|
||||||
expected = list(
|
expected = list(
|
||||||
self.user_a.pictures.order_by(
|
self.user_a.pictures.order_by(
|
||||||
"-picture__parent__event_date", "picture__created_at"
|
"-picture__parent__date", "picture__date"
|
||||||
).values_list("picture_id", flat=True)
|
).values_list("picture_id", flat=True)
|
||||||
)
|
)
|
||||||
assert [i["id"] for i in res.json()["results"]] == expected
|
assert [i["id"] for i in res.json()["results"]] == expected
|
||||||
@@ -84,7 +84,7 @@ class TestPictureSearch(TestSas):
|
|||||||
assert res.status_code == 200
|
assert res.status_code == 200
|
||||||
expected = list(
|
expected = list(
|
||||||
self.user_a.pictures.union(self.user_b.pictures.all())
|
self.user_a.pictures.union(self.user_b.pictures.all())
|
||||||
.order_by("-picture__parent__event_date", "picture__created_at")
|
.order_by("-picture__parent__date", "picture__date")
|
||||||
.values_list("picture_id", flat=True)
|
.values_list("picture_id", flat=True)
|
||||||
)
|
)
|
||||||
assert [i["id"] for i in res.json()["results"]] == expected
|
assert [i["id"] for i in res.json()["results"]] == expected
|
||||||
@@ -97,7 +97,7 @@ class TestPictureSearch(TestSas):
|
|||||||
assert res.status_code == 200
|
assert res.status_code == 200
|
||||||
expected = list(
|
expected = list(
|
||||||
self.user_a.pictures.order_by(
|
self.user_a.pictures.order_by(
|
||||||
"-picture__parent__event_date", "picture__created_at"
|
"-picture__parent__date", "picture__date"
|
||||||
).values_list("picture_id", flat=True)
|
).values_list("picture_id", flat=True)
|
||||||
)
|
)
|
||||||
assert [i["id"] for i in res.json()["results"]] == expected
|
assert [i["id"] for i in res.json()["results"]] == expected
|
||||||
@@ -123,7 +123,7 @@ class TestPictureSearch(TestSas):
|
|||||||
assert res.status_code == 200
|
assert res.status_code == 200
|
||||||
expected = list(
|
expected = list(
|
||||||
self.user_b.pictures.intersection(self.user_a.pictures.all())
|
self.user_b.pictures.intersection(self.user_a.pictures.all())
|
||||||
.order_by("-picture__parent__event_date", "picture__created_at")
|
.order_by("-picture__parent__date", "picture__date")
|
||||||
.values_list("picture_id", flat=True)
|
.values_list("picture_id", flat=True)
|
||||||
)
|
)
|
||||||
assert [i["id"] for i in res.json()["results"]] == expected
|
assert [i["id"] for i in res.json()["results"]] == expected
|
||||||
|
@@ -3,8 +3,8 @@ from model_bakery import baker
|
|||||||
|
|
||||||
from core.baker_recipes import old_subscriber_user, subscriber_user
|
from core.baker_recipes import old_subscriber_user, subscriber_user
|
||||||
from core.models import User
|
from core.models import User
|
||||||
from sas.baker_recipes import album_recipe, picture_recipe
|
from sas.baker_recipes import picture_recipe
|
||||||
from sas.models import Album, Picture
|
from sas.models import Picture
|
||||||
|
|
||||||
|
|
||||||
class TestPictureQuerySet(TestCase):
|
class TestPictureQuerySet(TestCase):
|
||||||
@@ -44,22 +44,3 @@ class TestPictureQuerySet(TestCase):
|
|||||||
user.pictures.create(picture=self.pictures[1]) # moderated
|
user.pictures.create(picture=self.pictures[1]) # moderated
|
||||||
pictures = list(Picture.objects.viewable_by(user))
|
pictures = list(Picture.objects.viewable_by(user))
|
||||||
assert pictures == [self.pictures[1]]
|
assert pictures == [self.pictures[1]]
|
||||||
|
|
||||||
|
|
||||||
class TestDeleteAlbum(TestCase):
|
|
||||||
def setUp(cls):
|
|
||||||
cls.album: Album = album_recipe.make()
|
|
||||||
cls.album_pictures = picture_recipe.make(parent=cls.album, _quantity=5)
|
|
||||||
cls.sub_album = album_recipe.make(parent=cls.album)
|
|
||||||
cls.sub_album_pictures = picture_recipe.make(parent=cls.sub_album, _quantity=5)
|
|
||||||
|
|
||||||
def test_delete(self):
|
|
||||||
album_ids = [self.album.id, self.sub_album.id]
|
|
||||||
picture_ids = [
|
|
||||||
*[p.id for p in self.album_pictures],
|
|
||||||
*[p.id for p in self.sub_album_pictures],
|
|
||||||
]
|
|
||||||
self.album.delete()
|
|
||||||
# assert not p.exists()
|
|
||||||
assert not Album.objects.filter(id__in=album_ids).exists()
|
|
||||||
assert not Picture.objects.filter(id__in=picture_ids).exists()
|
|
||||||
|
@@ -136,7 +136,9 @@ class TestAlbumUpload:
|
|||||||
class TestSasModeration(TestCase):
|
class TestSasModeration(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
album = baker.make(Album)
|
album = baker.make(
|
||||||
|
Album, parent_id=settings.SITH_SAS_ROOT_DIR_ID, is_moderated=True
|
||||||
|
)
|
||||||
cls.pictures = picture_recipe.make(
|
cls.pictures = picture_recipe.make(
|
||||||
parent=album, _quantity=10, _bulk_create=True
|
parent=album, _quantity=10, _bulk_create=True
|
||||||
)
|
)
|
||||||
|
87
sas/views.py
87
sas/views.py
@@ -12,7 +12,6 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
from pathlib import Path
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
@@ -22,12 +21,12 @@ from django.shortcuts import get_object_or_404
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils.safestring import SafeString
|
from django.utils.safestring import SafeString
|
||||||
from django.views.generic import CreateView, DetailView, TemplateView
|
from django.views.generic import CreateView, DetailView, TemplateView
|
||||||
from django.views.generic.edit import FormMixin, FormView, UpdateView
|
from django.views.generic.edit import FormView, UpdateView
|
||||||
|
|
||||||
from core.auth.mixins import CanEditMixin, CanViewMixin
|
from core.auth.mixins import CanEditMixin, CanViewMixin
|
||||||
from core.models import SithFile, User
|
from core.models import SithFile, User
|
||||||
from core.views import FileView, UseFragmentsMixin
|
from core.views import UseFragmentsMixin
|
||||||
from core.views.files import send_raw_file
|
from core.views.files import FileView, send_file
|
||||||
from core.views.mixins import FragmentMixin, FragmentRenderer
|
from core.views.mixins import FragmentMixin, FragmentRenderer
|
||||||
from core.views.user import UserTabsMixin
|
from core.views.user import UserTabsMixin
|
||||||
from sas.forms import (
|
from sas.forms import (
|
||||||
@@ -63,7 +62,6 @@ class AlbumCreateFragment(FragmentMixin, CreateView):
|
|||||||
|
|
||||||
|
|
||||||
class SASMainView(UseFragmentsMixin, TemplateView):
|
class SASMainView(UseFragmentsMixin, TemplateView):
|
||||||
form_class = AlbumCreateForm
|
|
||||||
template_name = "sas/main.jinja"
|
template_name = "sas/main.jinja"
|
||||||
|
|
||||||
def get_fragments(self) -> dict[str, FragmentRenderer]:
|
def get_fragments(self) -> dict[str, FragmentRenderer]:
|
||||||
@@ -80,26 +78,12 @@ class SASMainView(UseFragmentsMixin, TemplateView):
|
|||||||
root_user = User.objects.get(pk=settings.SITH_ROOT_USER_ID)
|
root_user = User.objects.get(pk=settings.SITH_ROOT_USER_ID)
|
||||||
return {"album_create_fragment": {"owner": root_user}}
|
return {"album_create_fragment": {"owner": root_user}}
|
||||||
|
|
||||||
def dispatch(self, request, *args, **kwargs):
|
|
||||||
if request.method == "POST" and not self.request.user.has_perm("sas.add_album"):
|
|
||||||
raise PermissionDenied
|
|
||||||
return super().dispatch(request, *args, **kwargs)
|
|
||||||
|
|
||||||
def get_form(self, form_class=None):
|
|
||||||
if not self.request.user.has_perm("sas.add_album"):
|
|
||||||
return None
|
|
||||||
return super().get_form(form_class)
|
|
||||||
|
|
||||||
def get_form_kwargs(self):
|
|
||||||
return super().get_form_kwargs() | {
|
|
||||||
"owner": User.objects.get(pk=settings.SITH_ROOT_USER_ID),
|
|
||||||
"parent": None,
|
|
||||||
}
|
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
albums_qs = Album.objects.viewable_by(self.request.user)
|
albums_qs = Album.objects.viewable_by(self.request.user)
|
||||||
kwargs["categories"] = list(albums_qs.filter(parent=None).order_by("id"))
|
kwargs["categories"] = list(
|
||||||
|
albums_qs.filter(parent_id=settings.SITH_SAS_ROOT_DIR_ID).order_by("id")
|
||||||
|
)
|
||||||
kwargs["latest"] = list(albums_qs.order_by("-id")[:5])
|
kwargs["latest"] = list(albums_qs.order_by("-id")[:5])
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
@@ -109,9 +93,6 @@ class PictureView(CanViewMixin, DetailView):
|
|||||||
pk_url_kwarg = "picture_id"
|
pk_url_kwarg = "picture_id"
|
||||||
template_name = "sas/picture.jinja"
|
template_name = "sas/picture.jinja"
|
||||||
|
|
||||||
def get_queryset(self):
|
|
||||||
return super().get_queryset().select_related("parent")
|
|
||||||
|
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
self.object = self.get_object()
|
self.object = self.get_object()
|
||||||
if "rotate_right" in request.GET:
|
if "rotate_right" in request.GET:
|
||||||
@@ -121,42 +102,31 @@ class PictureView(CanViewMixin, DetailView):
|
|||||||
return super().get(request, *args, **kwargs)
|
return super().get(request, *args, **kwargs)
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
return super().get_context_data(**kwargs) | {"album": self.object.parent}
|
return super().get_context_data(**kwargs) | {
|
||||||
|
"album": Album.objects.get(children=self.object)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
def send_album(request, album_id):
|
def send_album(request, album_id):
|
||||||
album = get_object_or_404(Album, id=album_id)
|
return send_file(request, album_id, Album)
|
||||||
if not album.can_be_viewed_by(request.user):
|
|
||||||
raise PermissionDenied
|
|
||||||
return send_raw_file(Path(album.thumbnail.path))
|
|
||||||
|
|
||||||
|
|
||||||
def send_pict(request, picture_id):
|
def send_pict(request, picture_id):
|
||||||
picture = get_object_or_404(Picture, id=picture_id)
|
return send_file(request, picture_id, Picture)
|
||||||
if not picture.can_be_viewed_by(request.user):
|
|
||||||
raise PermissionDenied
|
|
||||||
return send_raw_file(Path(picture.original.path))
|
|
||||||
|
|
||||||
|
|
||||||
def send_compressed(request, picture_id):
|
def send_compressed(request, picture_id):
|
||||||
picture = get_object_or_404(Picture, id=picture_id)
|
return send_file(request, picture_id, Picture, "compressed")
|
||||||
if not picture.can_be_viewed_by(request.user):
|
|
||||||
raise PermissionDenied
|
|
||||||
return send_raw_file(Path(picture.compressed.path))
|
|
||||||
|
|
||||||
|
|
||||||
def send_thumb(request, picture_id):
|
def send_thumb(request, picture_id):
|
||||||
picture = get_object_or_404(Picture, id=picture_id)
|
return send_file(request, picture_id, Picture, "thumbnail")
|
||||||
if not picture.can_be_viewed_by(request.user):
|
|
||||||
raise PermissionDenied
|
|
||||||
return send_raw_file(Path(picture.thumbnail.path))
|
|
||||||
|
|
||||||
|
|
||||||
class AlbumView(CanViewMixin, UseFragmentsMixin, FormMixin, DetailView):
|
class AlbumView(CanViewMixin, UseFragmentsMixin, DetailView):
|
||||||
model = Album
|
model = Album
|
||||||
pk_url_kwarg = "album_id"
|
pk_url_kwarg = "album_id"
|
||||||
template_name = "sas/album.jinja"
|
template_name = "sas/album.jinja"
|
||||||
form_class = PictureUploadForm
|
|
||||||
|
|
||||||
def get_fragments(self) -> dict[str, FragmentRenderer]:
|
def get_fragments(self) -> dict[str, FragmentRenderer]:
|
||||||
return {
|
return {
|
||||||
@@ -171,32 +141,27 @@ class AlbumView(CanViewMixin, UseFragmentsMixin, FormMixin, DetailView):
|
|||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
raise Http404 from e
|
raise Http404 from e
|
||||||
if "clipboard" not in request.session:
|
if "clipboard" not in request.session:
|
||||||
request.session["clipboard"] = {"albums": [], "pictures": []}
|
request.session["clipboard"] = []
|
||||||
return super().dispatch(request, *args, **kwargs)
|
return super().dispatch(request, *args, **kwargs)
|
||||||
|
|
||||||
def get_form(self, *args, **kwargs):
|
|
||||||
if not self.request.user.can_edit(self.object):
|
|
||||||
return None
|
|
||||||
return super().get_form(*args, **kwargs)
|
|
||||||
|
|
||||||
def post(self, request, *args, **kwargs):
|
def post(self, request, *args, **kwargs):
|
||||||
self.object = self.get_object()
|
self.object = self.get_object()
|
||||||
form = self.get_form()
|
if not self.object.file:
|
||||||
if not form:
|
self.object.generate_thumbnail()
|
||||||
# the form is reserved for users that can edit this album.
|
if request.user.can_edit(self.object): # Handle the copy-paste functions
|
||||||
# If there is no form, it means the user has no right to do a POST
|
FileView.handle_clipboard(request, self.object)
|
||||||
raise PermissionDenied
|
return HttpResponseRedirect(self.request.path)
|
||||||
FileView.handle_clipboard(self.request, self.object)
|
|
||||||
if not form.is_valid():
|
|
||||||
return self.form_invalid(form)
|
|
||||||
return self.form_valid(form)
|
|
||||||
|
|
||||||
def get_fragment_data(self) -> dict[str, dict[str, Any]]:
|
def get_fragment_data(self) -> dict[str, dict[str, Any]]:
|
||||||
return {"album_create_fragment": {"owner": self.request.user}}
|
return {"album_create_fragment": {"owner": self.request.user}}
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
kwargs["clipboard"] = {}
|
if ids := self.request.session.get("clipboard", None):
|
||||||
|
kwargs["clipboard"] = SithFile.objects.filter(id__in=ids)
|
||||||
|
kwargs["upload_form"] = PictureUploadForm()
|
||||||
|
# if True, the albums will be fetched with a request to the API
|
||||||
|
# if False, the section won't be displayed at all
|
||||||
kwargs["show_albums"] = (
|
kwargs["show_albums"] = (
|
||||||
Album.objects.viewable_by(self.request.user)
|
Album.objects.viewable_by(self.request.user)
|
||||||
.filter(parent_id=self.object.id)
|
.filter(parent_id=self.object.id)
|
||||||
@@ -242,7 +207,7 @@ class ModerationView(TemplateView):
|
|||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
kwargs["albums_to_moderate"] = Album.objects.filter(
|
kwargs["albums_to_moderate"] = Album.objects.filter(
|
||||||
is_moderated=False
|
is_moderated=False, is_in_sas=True, is_folder=True
|
||||||
).order_by("id")
|
).order_by("id")
|
||||||
pictures = Picture.objects.filter(is_moderated=False).select_related("parent")
|
pictures = Picture.objects.filter(is_moderated=False).select_related("parent")
|
||||||
kwargs["pictures"] = pictures
|
kwargs["pictures"] = pictures
|
||||||
|
@@ -99,9 +99,10 @@ INSTALLED_APPS = (
|
|||||||
"django.contrib.auth",
|
"django.contrib.auth",
|
||||||
"django.contrib.contenttypes",
|
"django.contrib.contenttypes",
|
||||||
"django.contrib.sessions",
|
"django.contrib.sessions",
|
||||||
|
"django.contrib.sitemaps",
|
||||||
|
"django.contrib.sites",
|
||||||
"django.contrib.messages",
|
"django.contrib.messages",
|
||||||
"staticfiles",
|
"staticfiles",
|
||||||
"django.contrib.sites",
|
|
||||||
"honeypot",
|
"honeypot",
|
||||||
"django_jinja",
|
"django_jinja",
|
||||||
"ninja_extra",
|
"ninja_extra",
|
||||||
@@ -122,6 +123,7 @@ INSTALLED_APPS = (
|
|||||||
"trombi",
|
"trombi",
|
||||||
"matmat",
|
"matmat",
|
||||||
"pedagogy",
|
"pedagogy",
|
||||||
|
"reservation",
|
||||||
"galaxy",
|
"galaxy",
|
||||||
"antispam",
|
"antispam",
|
||||||
"api",
|
"api",
|
||||||
@@ -273,7 +275,7 @@ LOGGING = {
|
|||||||
# Internationalization
|
# Internationalization
|
||||||
# https://docs.djangoproject.com/en/1.8/topics/i18n/
|
# https://docs.djangoproject.com/en/1.8/topics/i18n/
|
||||||
|
|
||||||
LANGUAGE_CODE = "fr-FR"
|
LANGUAGE_CODE = "fr"
|
||||||
|
|
||||||
LANGUAGES = [("en", _("English")), ("fr", _("French"))]
|
LANGUAGES = [("en", _("English")), ("fr", _("French"))]
|
||||||
|
|
||||||
@@ -686,8 +688,10 @@ SITH_NOTIFICATIONS = [
|
|||||||
# The keys are the notification names as found in SITH_NOTIFICATIONS, and the
|
# The keys are the notification names as found in SITH_NOTIFICATIONS, and the
|
||||||
# values are the callback function to update the notifs.
|
# values are the callback function to update the notifs.
|
||||||
# The callback must take the notif object as first and single argument.
|
# The callback must take the notif object as first and single argument.
|
||||||
|
# If a notification is permanent but requires no post-action, set the
|
||||||
|
# callback import string as None
|
||||||
SITH_PERMANENT_NOTIFICATIONS = {
|
SITH_PERMANENT_NOTIFICATIONS = {
|
||||||
"NEWS_MODERATION": "com.models.news_notification_callback",
|
"NEWS_MODERATION": None,
|
||||||
"SAS_MODERATION": "sas.models.sas_notification_callback",
|
"SAS_MODERATION": "sas.models.sas_notification_callback",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
46
sith/sitemap.py
Normal file
46
sith/sitemap.py
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
from django.conf import settings
|
||||||
|
from django.contrib.sitemaps import Sitemap
|
||||||
|
from django.db.models import OuterRef, Subquery
|
||||||
|
from django.urls import reverse
|
||||||
|
|
||||||
|
from club.models import Club
|
||||||
|
from core.models import Page, PageRev
|
||||||
|
|
||||||
|
|
||||||
|
class SithSitemap(Sitemap):
|
||||||
|
def items(self):
|
||||||
|
return [
|
||||||
|
"core:index",
|
||||||
|
"eboutic:main",
|
||||||
|
"sas:main",
|
||||||
|
"forum:main",
|
||||||
|
"club:club_list",
|
||||||
|
"election:list",
|
||||||
|
]
|
||||||
|
|
||||||
|
def location(self, item):
|
||||||
|
return reverse(item)
|
||||||
|
|
||||||
|
|
||||||
|
class PagesSitemap(Sitemap):
|
||||||
|
def items(self):
|
||||||
|
return (
|
||||||
|
Page.objects.filter(view_groups=settings.SITH_GROUP_PUBLIC_ID)
|
||||||
|
.exclude(revisions=None, _full_name__startswith="club")
|
||||||
|
.annotate(
|
||||||
|
lastmod=Subquery(
|
||||||
|
PageRev.objects.filter(page=OuterRef("pk"))
|
||||||
|
.values("date")
|
||||||
|
.order_by("-date")[:1]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.all()
|
||||||
|
)
|
||||||
|
|
||||||
|
def lastmod(self, item: Page):
|
||||||
|
return item.lastmod
|
||||||
|
|
||||||
|
|
||||||
|
class ClubSitemap(Sitemap):
|
||||||
|
def items(self):
|
||||||
|
return Club.objects.filter(is_active=True)
|
10
sith/urls.py
10
sith/urls.py
@@ -15,20 +15,24 @@
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.conf.urls.static import static
|
from django.conf.urls.static import static
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
from django.contrib.sitemaps.views import sitemap
|
||||||
from django.http import Http404
|
from django.http import Http404
|
||||||
from django.urls import include, path
|
from django.urls import include, path
|
||||||
|
from django.views.decorators.cache import cache_page
|
||||||
from django.views.i18n import JavaScriptCatalog
|
from django.views.i18n import JavaScriptCatalog
|
||||||
|
|
||||||
from api.urls import api
|
from api.urls import api
|
||||||
|
from sith.sitemap import ClubSitemap, PagesSitemap, SithSitemap
|
||||||
|
|
||||||
js_info_dict = {"packages": ("sith",)}
|
js_info_dict = {"packages": ("sith",)}
|
||||||
|
|
||||||
handler403 = "core.views.forbidden"
|
handler403 = "core.views.forbidden"
|
||||||
handler404 = "core.views.not_found"
|
handler404 = "core.views.not_found"
|
||||||
handler500 = "core.views.internal_servor_error"
|
handler500 = "core.views.internal_servor_error"
|
||||||
|
sitemaps = {"sith": SithSitemap, "pages": PagesSitemap, "clubs": ClubSitemap}
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", include(("core.urls", "core"), namespace="core")),
|
path("", include(("core.urls", "core"), namespace="core")),
|
||||||
|
path("sitemap.xml", cache_page(86400)(sitemap), {"sitemaps": sitemaps}),
|
||||||
path("api/", api.urls),
|
path("api/", api.urls),
|
||||||
path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")),
|
path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")),
|
||||||
path(
|
path(
|
||||||
@@ -45,6 +49,10 @@ urlpatterns = [
|
|||||||
path("trombi/", include(("trombi.urls", "trombi"), namespace="trombi")),
|
path("trombi/", include(("trombi.urls", "trombi"), namespace="trombi")),
|
||||||
path("matmatronch/", include(("matmat.urls", "matmat"), namespace="matmat")),
|
path("matmatronch/", include(("matmat.urls", "matmat"), namespace="matmat")),
|
||||||
path("pedagogy/", include(("pedagogy.urls", "pedagogy"), namespace="pedagogy")),
|
path("pedagogy/", include(("pedagogy.urls", "pedagogy"), namespace="pedagogy")),
|
||||||
|
path(
|
||||||
|
"reservation/",
|
||||||
|
include(("reservation.urls", "reservation"), namespace="reservation"),
|
||||||
|
),
|
||||||
path("admin/", admin.site.urls),
|
path("admin/", admin.site.urls),
|
||||||
path("i18n/", include("django.conf.urls.i18n")),
|
path("i18n/", include("django.conf.urls.i18n")),
|
||||||
path("jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"),
|
path("jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"),
|
||||||
|
@@ -182,12 +182,13 @@ class OpenApi:
|
|||||||
path[action]["operationId"] = "_".join(
|
path[action]["operationId"] = "_".join(
|
||||||
desc["operationId"].split("_")[:-1]
|
desc["operationId"].split("_")[:-1]
|
||||||
)
|
)
|
||||||
|
|
||||||
schema = str(schema)
|
schema = str(schema)
|
||||||
|
|
||||||
if old_hash == sha1(schema.encode("utf-8")).hexdigest():
|
if old_hash == sha1(schema.encode("utf-8")).hexdigest():
|
||||||
logging.getLogger("django").info("✨ Api did not change, nothing to do ✨")
|
logging.getLogger("django").info("✨ Api did not change, nothing to do ✨")
|
||||||
return
|
return
|
||||||
|
|
||||||
out.write_text(schema)
|
with open(out, "w") as f:
|
||||||
|
_ = f.write(schema)
|
||||||
|
|
||||||
return subprocess.Popen(["npm", "run", "openapi"])
|
return subprocess.Popen(["npm", "run", "openapi"])
|
||||||
|
@@ -18,7 +18,6 @@ from datetime import date, timedelta
|
|||||||
|
|
||||||
from dateutil.relativedelta import relativedelta
|
from dateutil.relativedelta import relativedelta
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib.auth.forms import PasswordResetForm
|
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
@@ -72,24 +71,22 @@ class Subscription(models.Model):
|
|||||||
else:
|
else:
|
||||||
return f"No user - {self.pk}"
|
return f"No user - {self.pk}"
|
||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs) -> None:
|
||||||
super().save()
|
if self.member.was_subscribed:
|
||||||
|
super().save()
|
||||||
|
return
|
||||||
|
|
||||||
from counter.models import Customer
|
from counter.models import Customer
|
||||||
|
|
||||||
_, account_created = Customer.get_or_create(self.member)
|
customer, _ = Customer.get_or_create(self.member)
|
||||||
if account_created:
|
# Someone who subscribed once will be considered forever
|
||||||
# Someone who subscribed once will be considered forever
|
# as an old subscriber.
|
||||||
# as an old subscriber.
|
self.member.groups.add(settings.SITH_GROUP_OLD_SUBSCRIBERS_ID)
|
||||||
self.member.groups.add(settings.SITH_GROUP_OLD_SUBSCRIBERS_ID)
|
|
||||||
form = PasswordResetForm({"email": self.member.email})
|
|
||||||
if form.is_valid():
|
|
||||||
form.save(
|
|
||||||
use_https=True,
|
|
||||||
email_template_name="core/new_user_email.jinja",
|
|
||||||
subject_template_name="core/new_user_email_subject.jinja",
|
|
||||||
from_email="ae@utbm.fr",
|
|
||||||
)
|
|
||||||
self.member.make_home()
|
self.member.make_home()
|
||||||
|
# now that the user is an old subscriber, change the cached
|
||||||
|
# property accordingly
|
||||||
|
self.member.__dict__["was_subscribed"] = True
|
||||||
|
super().save()
|
||||||
|
|
||||||
def get_absolute_url(self):
|
def get_absolute_url(self):
|
||||||
return reverse("core:user_edit", kwargs={"user_id": self.member_id})
|
return reverse("core:user_edit", kwargs={"user_id": self.member_id})
|
||||||
|
@@ -5,6 +5,7 @@ from typing import Callable
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from dateutil.relativedelta import relativedelta
|
from dateutil.relativedelta import relativedelta
|
||||||
|
from django.conf import settings
|
||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.test import Client
|
from django.test import Client
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
@@ -14,8 +15,10 @@ from pytest_django.asserts import assertRedirects
|
|||||||
from pytest_django.fixtures import SettingsWrapper
|
from pytest_django.fixtures import SettingsWrapper
|
||||||
|
|
||||||
from core.baker_recipes import board_user, old_subscriber_user, subscriber_user
|
from core.baker_recipes import board_user, old_subscriber_user, subscriber_user
|
||||||
from core.models import User
|
from core.models import Group, User
|
||||||
|
from counter.models import Customer
|
||||||
from subscription.forms import SubscriptionExistingUserForm, SubscriptionNewUserForm
|
from subscription.forms import SubscriptionExistingUserForm, SubscriptionNewUserForm
|
||||||
|
from subscription.models import Subscription
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
@pytest.mark.django_db
|
||||||
@@ -189,3 +192,17 @@ def test_submit_form_new_user(client: Client, settings: SettingsWrapper):
|
|||||||
kwargs={"subscription_id": current_subscription.id},
|
kwargs={"subscription_id": current_subscription.id},
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_subscription_for_user_that_had_a_sith_account():
|
||||||
|
"""Test that a newly subscribed user is added to the old subscribers group,
|
||||||
|
even if there already was a sith account (e.g. created during an eboutic purchase).
|
||||||
|
"""
|
||||||
|
user = baker.make(User)
|
||||||
|
Customer.get_or_create(user)
|
||||||
|
group = Group.objects.get(id=settings.SITH_GROUP_OLD_SUBSCRIBERS_ID)
|
||||||
|
assert not user.groups.contains(group)
|
||||||
|
subscription = baker.prepare(Subscription, member=user)
|
||||||
|
subscription.save()
|
||||||
|
assert user.groups.contains(group)
|
@@ -14,6 +14,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
from django.contrib.auth.forms import PasswordResetForm
|
||||||
from django.contrib.auth.mixins import PermissionRequiredMixin
|
from django.contrib.auth.mixins import PermissionRequiredMixin
|
||||||
from django.core.exceptions import PermissionDenied
|
from django.core.exceptions import PermissionDenied
|
||||||
from django.urls import reverse, reverse_lazy
|
from django.urls import reverse, reverse_lazy
|
||||||
@@ -65,11 +66,23 @@ class CreateSubscriptionExistingUserFragment(CreateSubscriptionFragment):
|
|||||||
|
|
||||||
|
|
||||||
class CreateSubscriptionNewUserFragment(CreateSubscriptionFragment):
|
class CreateSubscriptionNewUserFragment(CreateSubscriptionFragment):
|
||||||
"""Create a subscription for a user who already exists."""
|
"""Create a subscription for a user who doesn't exist yet."""
|
||||||
|
|
||||||
form_class = SubscriptionNewUserForm
|
form_class = SubscriptionNewUserForm
|
||||||
extra_context = {"post_url": reverse_lazy("subscription:fragment-new-user")}
|
extra_context = {"post_url": reverse_lazy("subscription:fragment-new-user")}
|
||||||
|
|
||||||
|
def form_valid(self, form):
|
||||||
|
res = super().form_valid(form)
|
||||||
|
reset_form = PasswordResetForm({"email": form.cleaned_data["email"]})
|
||||||
|
if reset_form.is_valid():
|
||||||
|
reset_form.save(
|
||||||
|
use_https=True,
|
||||||
|
email_template_name="core/new_user_email.jinja",
|
||||||
|
subject_template_name="core/new_user_email_subject.jinja",
|
||||||
|
from_email="ae@utbm.fr",
|
||||||
|
)
|
||||||
|
return res
|
||||||
|
|
||||||
|
|
||||||
class SubscriptionCreatedFragment(PermissionRequiredMixin, DetailView):
|
class SubscriptionCreatedFragment(PermissionRequiredMixin, DetailView):
|
||||||
template_name = "subscription/fragments/creation_success.jinja"
|
template_name = "subscription/fragments/creation_success.jinja"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user