mirror of
https://github.com/ae-utbm/sith.git
synced 2026-04-03 01:09:41 +00:00
Compare commits
55 Commits
room-reser
...
discord-au
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ddcde11365 | ||
|
|
49cb21e18b | ||
|
|
26d12a0e6d | ||
|
|
db414fd884 | ||
|
|
9634f9779c | ||
|
|
e29112af55 | ||
|
|
5d29010a47 | ||
|
|
70ff74ee0a | ||
|
|
eebdce6635 | ||
|
|
1b898ebe1b | ||
|
|
182cdbe590 | ||
|
|
ac33a5e6b2 | ||
|
|
068bb9ab83 | ||
|
|
f9910c3360 | ||
|
|
f0f8cc5604 | ||
|
|
2a8e810ad0 | ||
|
|
739a1bba47 | ||
|
|
180852a598 | ||
|
|
c3989a0016 | ||
|
|
435c8f9612 | ||
|
|
3d7f57b8da | ||
|
|
ffa0b94408 | ||
|
|
22a1f4ba07 | ||
|
|
76396cdeb0 | ||
|
|
1c0b89bfc7 | ||
|
|
d374ea9651 | ||
|
|
10a4e71b7a | ||
|
|
f1a60e589a | ||
|
|
00acda7ba3 | ||
|
|
1686a9da87 | ||
|
|
83255945c4 | ||
|
|
b4a6b6961b | ||
|
|
0f0702825e | ||
|
|
b74b1ac691 | ||
|
|
33d4a99a2c | ||
|
|
c154b311c3 | ||
|
|
fb8da93c68 | ||
|
|
1845a7cbcf | ||
|
|
f17f17d8de | ||
|
|
7bb3d064ee | ||
|
|
4f84ec09d7 | ||
|
|
7e649b40c5 | ||
|
|
296feb6e32 | ||
|
|
30663d87a4 | ||
|
|
b5ff9b4c13 | ||
|
|
e2f6671ad0 | ||
|
|
9a67926a49 | ||
|
|
78c373f84e | ||
|
|
a7c8b318bd | ||
|
|
1701ab5f33 | ||
|
|
09a98db786 | ||
|
|
84ed180c1e | ||
|
|
52759764a1 | ||
|
|
be1563f46f | ||
|
|
5d3d44ec67 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -24,6 +24,9 @@ node_modules/
|
|||||||
# compiled documentation
|
# compiled documentation
|
||||||
site/
|
site/
|
||||||
|
|
||||||
|
# rollup-bundle-visualizer report
|
||||||
|
.bundle-size-report.html
|
||||||
|
|
||||||
### Redis ###
|
### Redis ###
|
||||||
|
|
||||||
# Ignore redis binary dump (dump.rdb) files
|
# Ignore redis binary dump (dump.rdb) files
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
# Ruff version.
|
# Ruff version.
|
||||||
rev: v0.15.0
|
rev: v0.15.5
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff-check # just check the code, and print the errors
|
- id: ruff-check # just check the code, and print the errors
|
||||||
- id: ruff-check # actually fix the fixable errors, but print nothing
|
- id: ruff-check # actually fix the fixable errors, but print nothing
|
||||||
@@ -12,7 +12,7 @@ repos:
|
|||||||
rev: v0.6.1
|
rev: v0.6.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: biome-check
|
- id: biome-check
|
||||||
additional_dependencies: ["@biomejs/biome@2.3.14"]
|
additional_dependencies: ["@biomejs/biome@2.4.6"]
|
||||||
- repo: https://github.com/rtts/djhtml
|
- repo: https://github.com/rtts/djhtml
|
||||||
rev: 3.0.10
|
rev: 3.0.10
|
||||||
hooks:
|
hooks:
|
||||||
|
|||||||
@@ -17,6 +17,15 @@ class ApiClientAdmin(admin.ModelAdmin):
|
|||||||
"owner__nick_name",
|
"owner__nick_name",
|
||||||
)
|
)
|
||||||
autocomplete_fields = ("owner", "groups", "client_permissions")
|
autocomplete_fields = ("owner", "groups", "client_permissions")
|
||||||
|
readonly_fields = ("hmac_key",)
|
||||||
|
actions = ("reset_hmac_key",)
|
||||||
|
|
||||||
|
@admin.action(permissions=["change"], description=_("Reset HMAC key"))
|
||||||
|
def reset_hmac_key(self, _request: HttpRequest, queryset: QuerySet[ApiClient]):
|
||||||
|
objs = list(queryset)
|
||||||
|
for obj in objs:
|
||||||
|
obj.reset_hmac(commit=False)
|
||||||
|
ApiClient.objects.bulk_update(objs, fields=["hmac_key"])
|
||||||
|
|
||||||
|
|
||||||
@admin.register(ApiKey)
|
@admin.register(ApiKey)
|
||||||
|
|||||||
16
api/api.py
Normal file
16
api/api.py
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
from ninja_extra import ControllerBase, api_controller, route
|
||||||
|
|
||||||
|
from api.auth import ApiKeyAuth
|
||||||
|
from api.schemas import ApiClientSchema
|
||||||
|
|
||||||
|
|
||||||
|
@api_controller("/client")
|
||||||
|
class ApiClientController(ControllerBase):
|
||||||
|
@route.get(
|
||||||
|
"/me",
|
||||||
|
auth=[ApiKeyAuth()],
|
||||||
|
response=ApiClientSchema,
|
||||||
|
url_name="api-client-infos",
|
||||||
|
)
|
||||||
|
def get_client_info(self):
|
||||||
|
return self.context.request.auth
|
||||||
35
api/forms.py
Normal file
35
api/forms.py
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
from django import forms
|
||||||
|
from django.forms import HiddenInput
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
|
||||||
|
class ThirdPartyAuthForm(forms.Form):
|
||||||
|
"""Form to complete to authenticate on the sith from a third-party app.
|
||||||
|
|
||||||
|
For the form to be valid, the user approve the EULA (french: CGU)
|
||||||
|
and give its username from the third-party app.
|
||||||
|
"""
|
||||||
|
|
||||||
|
cgu_accepted = forms.BooleanField(
|
||||||
|
required=True,
|
||||||
|
label=_("I have read and I accept the terms and conditions of use"),
|
||||||
|
error_messages={
|
||||||
|
"required": _("You must approve the terms and conditions of use.")
|
||||||
|
},
|
||||||
|
)
|
||||||
|
is_username_valid = forms.BooleanField(
|
||||||
|
required=True,
|
||||||
|
error_messages={"required": _("You must confirm that this is your username.")},
|
||||||
|
)
|
||||||
|
client_id = forms.IntegerField(widget=HiddenInput())
|
||||||
|
third_party_app = forms.CharField(widget=HiddenInput())
|
||||||
|
privacy_link = forms.URLField(widget=HiddenInput())
|
||||||
|
username = forms.CharField(widget=HiddenInput())
|
||||||
|
callback_url = forms.URLField(widget=HiddenInput())
|
||||||
|
signature = forms.CharField(widget=HiddenInput())
|
||||||
|
|
||||||
|
def __init__(self, *args, label_suffix: str = "", initial, **kwargs):
|
||||||
|
super().__init__(*args, label_suffix=label_suffix, initial=initial, **kwargs)
|
||||||
|
self.fields["is_username_valid"].label = _(
|
||||||
|
"I confirm that %(username)s is my username on %(app)s"
|
||||||
|
) % {"username": initial.get("username"), "app": initial.get("third_party_app")}
|
||||||
19
api/migrations/0002_apiclient_hmac_key.py
Normal file
19
api/migrations/0002_apiclient_hmac_key.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Generated by Django 5.2.3 on 2025-10-26 10:15
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
import api.models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [("api", "0001_initial")]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="apiclient",
|
||||||
|
name="hmac_key",
|
||||||
|
field=models.CharField(
|
||||||
|
default=api.models.get_hmac_key, max_length=128, verbose_name="HMAC Key"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -1,13 +1,20 @@
|
|||||||
|
import secrets
|
||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
|
||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
from django.db.models import Q
|
||||||
|
from django.utils.functional import cached_property
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from django.utils.translation import pgettext_lazy
|
from django.utils.translation import pgettext_lazy
|
||||||
|
|
||||||
from core.models import Group, User
|
from core.models import Group, User
|
||||||
|
|
||||||
|
|
||||||
|
def get_hmac_key():
|
||||||
|
return secrets.token_hex(64)
|
||||||
|
|
||||||
|
|
||||||
class ApiClient(models.Model):
|
class ApiClient(models.Model):
|
||||||
name = models.CharField(_("name"), max_length=64)
|
name = models.CharField(_("name"), max_length=64)
|
||||||
owner = models.ForeignKey(
|
owner = models.ForeignKey(
|
||||||
@@ -26,11 +33,10 @@ class ApiClient(models.Model):
|
|||||||
help_text=_("Specific permissions for this api client."),
|
help_text=_("Specific permissions for this api client."),
|
||||||
related_name="clients",
|
related_name="clients",
|
||||||
)
|
)
|
||||||
|
hmac_key = models.CharField(_("HMAC Key"), max_length=128, default=get_hmac_key)
|
||||||
created_at = models.DateTimeField(auto_now_add=True)
|
created_at = models.DateTimeField(auto_now_add=True)
|
||||||
updated_at = models.DateTimeField(auto_now=True)
|
updated_at = models.DateTimeField(auto_now=True)
|
||||||
|
|
||||||
_perm_cache: set[str] | None = None
|
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("api client")
|
verbose_name = _("api client")
|
||||||
verbose_name_plural = _("api clients")
|
verbose_name_plural = _("api clients")
|
||||||
@@ -38,33 +44,38 @@ class ApiClient(models.Model):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def all_permissions(self) -> set[str]:
|
||||||
|
permissions = (
|
||||||
|
Permission.objects.filter(
|
||||||
|
Q(group__group__in=self.groups.all()) | Q(clients=self)
|
||||||
|
)
|
||||||
|
.values_list("content_type__app_label", "codename")
|
||||||
|
.order_by()
|
||||||
|
)
|
||||||
|
return {f"{content_type}.{name}" for content_type, name in permissions}
|
||||||
|
|
||||||
def has_perm(self, perm: str):
|
def has_perm(self, perm: str):
|
||||||
"""Return True if the client has the specified permission."""
|
"""Return True if the client has the specified permission."""
|
||||||
|
return perm in self.all_permissions
|
||||||
|
|
||||||
if self._perm_cache is None:
|
def has_perms(self, perm_list: Iterable[str]) -> bool:
|
||||||
group_permissions = (
|
"""Return True if the client has each of the specified permissions."""
|
||||||
Permission.objects.filter(group__group__in=self.groups.all())
|
|
||||||
.values_list("content_type__app_label", "codename")
|
|
||||||
.order_by()
|
|
||||||
)
|
|
||||||
client_permissions = self.client_permissions.values_list(
|
|
||||||
"content_type__app_label", "codename"
|
|
||||||
).order_by()
|
|
||||||
self._perm_cache = {
|
|
||||||
f"{content_type}.{name}"
|
|
||||||
for content_type, name in (*group_permissions, *client_permissions)
|
|
||||||
}
|
|
||||||
return perm in self._perm_cache
|
|
||||||
|
|
||||||
def has_perms(self, perm_list):
|
|
||||||
"""
|
|
||||||
Return True if the client has each of the specified permissions. If
|
|
||||||
object is passed, check if the client has all required perms for it.
|
|
||||||
"""
|
|
||||||
if not isinstance(perm_list, Iterable) or isinstance(perm_list, str):
|
if not isinstance(perm_list, Iterable) or isinstance(perm_list, str):
|
||||||
raise ValueError("perm_list must be an iterable of permissions.")
|
raise ValueError("perm_list must be an iterable of permissions.")
|
||||||
return all(self.has_perm(perm) for perm in perm_list)
|
return all(self.has_perm(perm) for perm in perm_list)
|
||||||
|
|
||||||
|
def reset_hmac(self, *, commit: bool = True) -> str:
|
||||||
|
"""Reset and return the HMAC key for this client.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
commit: if True (the default), persist the new hmac in db.
|
||||||
|
"""
|
||||||
|
self.hmac_key = get_hmac_key()
|
||||||
|
if commit:
|
||||||
|
self.save()
|
||||||
|
return self.hmac_key
|
||||||
|
|
||||||
|
|
||||||
class ApiKey(models.Model):
|
class ApiKey(models.Model):
|
||||||
PREFIX_LENGTH = 5
|
PREFIX_LENGTH = 5
|
||||||
|
|||||||
23
api/schemas.py
Normal file
23
api/schemas.py
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
from ninja import ModelSchema, Schema
|
||||||
|
from pydantic import Field, HttpUrl
|
||||||
|
|
||||||
|
from api.models import ApiClient
|
||||||
|
from core.schemas import SimpleUserSchema
|
||||||
|
|
||||||
|
|
||||||
|
class ApiClientSchema(ModelSchema):
|
||||||
|
class Meta:
|
||||||
|
model = ApiClient
|
||||||
|
fields = ["id", "name"]
|
||||||
|
|
||||||
|
owner: SimpleUserSchema
|
||||||
|
permissions: list[str] = Field(alias="all_permissions")
|
||||||
|
|
||||||
|
|
||||||
|
class ThirdPartyAuthParamsSchema(Schema):
|
||||||
|
client_id: int
|
||||||
|
third_party_app: str
|
||||||
|
privacy_link: HttpUrl
|
||||||
|
username: str
|
||||||
|
callback_url: HttpUrl
|
||||||
|
signature: str
|
||||||
32
api/templates/api/third_party/auth.jinja
vendored
Normal file
32
api/templates/api/third_party/auth.jinja
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<h3>{% trans %}Confidentiality{% endtrans %}</h3>
|
||||||
|
<p>
|
||||||
|
{% trans trimmed app=third_party_app %}
|
||||||
|
By ticking this box and clicking on the send button, you
|
||||||
|
acknowledge and agree to provide {{ app }} with your
|
||||||
|
first name, last name, nickname and any other information
|
||||||
|
that was the third party app was explicitly authorized to fetch
|
||||||
|
and that it must have acknowledged to you, in a complete and accurate manner.
|
||||||
|
{% endtrans %}
|
||||||
|
</p>
|
||||||
|
<p class="margin-bottom">
|
||||||
|
{% trans trimmed app=third_party_app, privacy_link=third_party_cgu, sith_cgu_link=sith_cgu %}
|
||||||
|
The privacy policies of <a href="{{ privacy_link }}">{{ app }}</a>
|
||||||
|
and of <a href="{{ sith_cgu_link }}">the Students' Association</a>
|
||||||
|
applies as soon as the form is submitted.
|
||||||
|
{% endtrans %}
|
||||||
|
</p>
|
||||||
|
<div class="row">{{ form.cgu_accepted }} {{ form.cgu_accepted.label_tag() }}</div>
|
||||||
|
<br>
|
||||||
|
<h3 class="margin-bottom">{% trans %}Confirmation of identity{% endtrans %}</h3>
|
||||||
|
<div class="row margin-bottom">
|
||||||
|
{{ form.is_username_valid }} {{ form.is_username_valid.label_tag() }}
|
||||||
|
</div>
|
||||||
|
{% for field in form.hidden_fields() %}{{ field }}{% endfor %}
|
||||||
|
<input type="submit" class="btn btn-blue">
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
24
api/tests/test_admin.py
Normal file
24
api/tests/test_admin.py
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
import pytest
|
||||||
|
from django.contrib.admin import AdminSite
|
||||||
|
from django.http import HttpRequest
|
||||||
|
from model_bakery import baker
|
||||||
|
from pytest_django.asserts import assertNumQueries
|
||||||
|
|
||||||
|
from api.admin import ApiClientAdmin
|
||||||
|
from api.models import ApiClient
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_reset_hmac_action():
|
||||||
|
client_admin = ApiClientAdmin(ApiClient, AdminSite())
|
||||||
|
api_clients = baker.make(ApiClient, _quantity=4, _bulk_create=True)
|
||||||
|
old_hmac_keys = [c.hmac_key for c in api_clients]
|
||||||
|
with assertNumQueries(2):
|
||||||
|
qs = ApiClient.objects.filter(id__in=[c.id for c in api_clients[2:4]])
|
||||||
|
client_admin.reset_hmac_key(HttpRequest(), qs)
|
||||||
|
for c in api_clients:
|
||||||
|
c.refresh_from_db()
|
||||||
|
assert api_clients[0].hmac_key == old_hmac_keys[0]
|
||||||
|
assert api_clients[1].hmac_key == old_hmac_keys[1]
|
||||||
|
assert api_clients[2].hmac_key != old_hmac_keys[2]
|
||||||
|
assert api_clients[3].hmac_key != old_hmac_keys[3]
|
||||||
18
api/tests/test_api_client_controller.py
Normal file
18
api/tests/test_api_client_controller.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import pytest
|
||||||
|
from django.test import Client
|
||||||
|
from django.urls import reverse
|
||||||
|
from model_bakery import baker
|
||||||
|
|
||||||
|
from api.hashers import generate_key
|
||||||
|
from api.models import ApiClient, ApiKey
|
||||||
|
from api.schemas import ApiClientSchema
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_api_client_controller(client: Client):
|
||||||
|
key, hashed = generate_key()
|
||||||
|
api_client = baker.make(ApiClient)
|
||||||
|
baker.make(ApiKey, client=api_client, hashed_key=hashed)
|
||||||
|
res = client.get(reverse("api:api-client-infos"), headers={"X-APIKey": key})
|
||||||
|
assert res.status_code == 200
|
||||||
|
assert res.json() == ApiClientSchema.from_orm(api_client).model_dump()
|
||||||
59
api/tests/test_client.py
Normal file
59
api/tests/test_client.py
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
import pytest
|
||||||
|
from django.contrib.auth.models import Permission
|
||||||
|
from django.test import TestCase
|
||||||
|
from model_bakery import baker
|
||||||
|
|
||||||
|
from api.models import ApiClient
|
||||||
|
from core.models import Group
|
||||||
|
|
||||||
|
|
||||||
|
class TestClientPermissions(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
cls.api_client = baker.make(ApiClient)
|
||||||
|
cls.perms = baker.make(Permission, _quantity=10, _bulk_create=True)
|
||||||
|
cls.api_client.groups.set(
|
||||||
|
[
|
||||||
|
baker.make(Group, permissions=cls.perms[0:3]),
|
||||||
|
baker.make(Group, permissions=cls.perms[3:5]),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
cls.api_client.client_permissions.set(
|
||||||
|
[cls.perms[3], cls.perms[5], cls.perms[6], cls.perms[7]]
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_all_permissions(self):
|
||||||
|
assert self.api_client.all_permissions == {
|
||||||
|
f"{p.content_type.app_label}.{p.codename}" for p in self.perms[0:8]
|
||||||
|
}
|
||||||
|
|
||||||
|
def test_has_perm(self):
|
||||||
|
assert self.api_client.has_perm(
|
||||||
|
f"{self.perms[1].content_type.app_label}.{self.perms[1].codename}"
|
||||||
|
)
|
||||||
|
assert not self.api_client.has_perm(
|
||||||
|
f"{self.perms[9].content_type.app_label}.{self.perms[9].codename}"
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_has_perms(self):
|
||||||
|
assert self.api_client.has_perms(
|
||||||
|
[
|
||||||
|
f"{self.perms[1].content_type.app_label}.{self.perms[1].codename}",
|
||||||
|
f"{self.perms[2].content_type.app_label}.{self.perms[2].codename}",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
assert not self.api_client.has_perms(
|
||||||
|
[
|
||||||
|
f"{self.perms[1].content_type.app_label}.{self.perms[1].codename}",
|
||||||
|
f"{self.perms[9].content_type.app_label}.{self.perms[9].codename}",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_reset_hmac_key():
|
||||||
|
client = baker.make(ApiClient)
|
||||||
|
original_key = client.hmac_key
|
||||||
|
client.reset_hmac(commit=True)
|
||||||
|
assert len(client.hmac_key) == len(original_key)
|
||||||
|
assert client.hmac_key != original_key
|
||||||
114
api/tests/test_third_party_auth.py
Normal file
114
api/tests/test_third_party_auth.py
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
from unittest import mock
|
||||||
|
from unittest.mock import Mock
|
||||||
|
|
||||||
|
from django.db.models import Max
|
||||||
|
from django.test import TestCase
|
||||||
|
from django.urls import reverse
|
||||||
|
from model_bakery import baker
|
||||||
|
from pytest_django.asserts import assertRedirects
|
||||||
|
|
||||||
|
from api.models import ApiClient, get_hmac_key
|
||||||
|
from core.baker_recipes import subscriber_user
|
||||||
|
from core.schemas import UserProfileSchema
|
||||||
|
from core.utils import hmac_hexdigest
|
||||||
|
|
||||||
|
|
||||||
|
def mocked_post(*, ok: bool):
|
||||||
|
class MockedResponse(Mock):
|
||||||
|
@property
|
||||||
|
def ok(self):
|
||||||
|
return ok
|
||||||
|
|
||||||
|
def mocked():
|
||||||
|
return MockedResponse()
|
||||||
|
|
||||||
|
return mocked
|
||||||
|
|
||||||
|
|
||||||
|
class TestThirdPartyAuth(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
cls.user = subscriber_user.make()
|
||||||
|
cls.api_client = baker.make(ApiClient)
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.query = {
|
||||||
|
"client_id": self.api_client.id,
|
||||||
|
"third_party_app": "app",
|
||||||
|
"privacy_link": "https://foobar.fr/",
|
||||||
|
"username": "bibou",
|
||||||
|
"callback_url": "https://callback.fr/",
|
||||||
|
}
|
||||||
|
self.query["signature"] = hmac_hexdigest(self.api_client.hmac_key, self.query)
|
||||||
|
self.callback_data = {
|
||||||
|
"user": UserProfileSchema.from_orm(self.user).model_dump()
|
||||||
|
}
|
||||||
|
self.callback_data["signature"] = hmac_hexdigest(
|
||||||
|
self.api_client.hmac_key, self.callback_data["user"]
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_auth_ok(self):
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
res = self.client.get(reverse("api-link:third-party-auth", query=self.query))
|
||||||
|
assert res.status_code == 200
|
||||||
|
with mock.patch("requests.post", new_callable=mocked_post(ok=True)) as mocked:
|
||||||
|
res = self.client.post(
|
||||||
|
reverse("api-link:third-party-auth"),
|
||||||
|
data={"cgu_accepted": True, "is_username_valid": True, **self.query},
|
||||||
|
)
|
||||||
|
mocked.assert_called_once_with(
|
||||||
|
self.query["callback_url"], json=self.callback_data
|
||||||
|
)
|
||||||
|
assertRedirects(
|
||||||
|
res,
|
||||||
|
reverse("api-link:third-party-auth-result", kwargs={"result": "success"}),
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_callback_error(self):
|
||||||
|
"""Test that the user see the failure page if the callback request failed."""
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
with mock.patch("requests.post", new_callable=mocked_post(ok=False)) as mocked:
|
||||||
|
res = self.client.post(
|
||||||
|
reverse("api-link:third-party-auth"),
|
||||||
|
data={"cgu_accepted": True, "is_username_valid": True, **self.query},
|
||||||
|
)
|
||||||
|
mocked.assert_called_once_with(
|
||||||
|
self.query["callback_url"], json=self.callback_data
|
||||||
|
)
|
||||||
|
assertRedirects(
|
||||||
|
res,
|
||||||
|
reverse("api-link:third-party-auth-result", kwargs={"result": "failure"}),
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_wrong_signature(self):
|
||||||
|
"""Test that a 403 is raised if the signature of the query is wrong."""
|
||||||
|
self.client.force_login(subscriber_user.make())
|
||||||
|
new_key = get_hmac_key()
|
||||||
|
del self.query["signature"]
|
||||||
|
self.query["signature"] = hmac_hexdigest(new_key, self.query)
|
||||||
|
res = self.client.get(reverse("api-link:third-party-auth", query=self.query))
|
||||||
|
assert res.status_code == 403
|
||||||
|
|
||||||
|
def test_cgu_not_accepted(self):
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
res = self.client.get(reverse("api-link:third-party-auth", query=self.query))
|
||||||
|
assert res.status_code == 200
|
||||||
|
res = self.client.post(reverse("api-link:third-party-auth"), data=self.query)
|
||||||
|
assert res.status_code == 200 # no redirect means invalid form
|
||||||
|
res = self.client.post(
|
||||||
|
reverse("api-link:third-party-auth"),
|
||||||
|
data={"cgu_accepted": False, "is_username_valid": False, **self.query},
|
||||||
|
)
|
||||||
|
assert res.status_code == 200
|
||||||
|
|
||||||
|
def test_invalid_client(self):
|
||||||
|
self.query["client_id"] = ApiClient.objects.aggregate(res=Max("id"))["res"] + 1
|
||||||
|
res = self.client.get(reverse("api-link:third-party-auth", query=self.query))
|
||||||
|
assert res.status_code == 403
|
||||||
|
|
||||||
|
def test_missing_parameter(self):
|
||||||
|
"""Test that a 403 is raised if there is a missing parameter."""
|
||||||
|
del self.query["username"]
|
||||||
|
self.query["signature"] = hmac_hexdigest(self.api_client.hmac_key, self.query)
|
||||||
|
res = self.client.get(reverse("api-link:third-party-auth", query=self.query))
|
||||||
|
assert res.status_code == 403
|
||||||
15
api/urls.py
15
api/urls.py
@@ -1,6 +1,10 @@
|
|||||||
|
from django.urls import path, register_converter
|
||||||
from ninja.security import SessionAuth
|
from ninja.security import SessionAuth
|
||||||
from ninja_extra import NinjaExtraAPI
|
from ninja_extra import NinjaExtraAPI
|
||||||
|
|
||||||
|
from api.views import ThirdPartyAuthResultView, ThirdPartyAuthView
|
||||||
|
from core.converters import ResultConverter
|
||||||
|
|
||||||
api = NinjaExtraAPI(
|
api = NinjaExtraAPI(
|
||||||
title="PICON",
|
title="PICON",
|
||||||
description="Portail Interactif de Communication avec les Outils Numériques",
|
description="Portail Interactif de Communication avec les Outils Numériques",
|
||||||
@@ -9,3 +13,14 @@ api = NinjaExtraAPI(
|
|||||||
auth=[SessionAuth()],
|
auth=[SessionAuth()],
|
||||||
)
|
)
|
||||||
api.auto_discover_controllers()
|
api.auto_discover_controllers()
|
||||||
|
|
||||||
|
register_converter(ResultConverter, "res")
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
path("auth/", ThirdPartyAuthView.as_view(), name="third-party-auth"),
|
||||||
|
path(
|
||||||
|
"auth/<res:result>/",
|
||||||
|
ThirdPartyAuthResultView.as_view(),
|
||||||
|
name="third-party-auth-result",
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|||||||
119
api/views.py
Normal file
119
api/views.py
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
import hmac
|
||||||
|
from urllib.parse import unquote
|
||||||
|
|
||||||
|
import pydantic
|
||||||
|
import requests
|
||||||
|
from django.conf import settings
|
||||||
|
from django.contrib import messages
|
||||||
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||||
|
from django.core.exceptions import PermissionDenied
|
||||||
|
from django.urls import reverse, reverse_lazy
|
||||||
|
from django.utils.translation import gettext as _
|
||||||
|
from django.views.generic import FormView, TemplateView
|
||||||
|
from ninja_extra.shortcuts import get_object_or_none
|
||||||
|
|
||||||
|
from api.forms import ThirdPartyAuthForm
|
||||||
|
from api.models import ApiClient
|
||||||
|
from api.schemas import ThirdPartyAuthParamsSchema
|
||||||
|
from core.models import SithFile
|
||||||
|
from core.schemas import UserProfileSchema
|
||||||
|
from core.utils import hmac_hexdigest
|
||||||
|
|
||||||
|
|
||||||
|
class ThirdPartyAuthView(LoginRequiredMixin, FormView):
|
||||||
|
form_class = ThirdPartyAuthForm
|
||||||
|
template_name = "api/third_party/auth.jinja"
|
||||||
|
success_url = reverse_lazy("core:index")
|
||||||
|
|
||||||
|
def parse_params(self) -> ThirdPartyAuthParamsSchema:
|
||||||
|
"""Parse and check the authentication parameters.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
PermissionDenied: if the verification failed.
|
||||||
|
"""
|
||||||
|
# This is here rather than in ThirdPartyAuthForm because
|
||||||
|
# the given parameters and their signature are checked during both
|
||||||
|
# POST (for obvious reasons) and GET (in order not to make
|
||||||
|
# the user fill a form just to get an error he won't understand)
|
||||||
|
params = self.request.GET or self.request.POST
|
||||||
|
params = {key: unquote(val) for key, val in params.items()}
|
||||||
|
try:
|
||||||
|
params = ThirdPartyAuthParamsSchema(**params)
|
||||||
|
except pydantic.ValidationError as e:
|
||||||
|
raise PermissionDenied("Wrong data format") from e
|
||||||
|
client: ApiClient = get_object_or_none(ApiClient, id=params.client_id)
|
||||||
|
if not client:
|
||||||
|
raise PermissionDenied
|
||||||
|
if not hmac.compare_digest(
|
||||||
|
hmac_hexdigest(client.hmac_key, params.model_dump(exclude={"signature"})),
|
||||||
|
params.signature,
|
||||||
|
):
|
||||||
|
raise PermissionDenied("Bad signature")
|
||||||
|
return params
|
||||||
|
|
||||||
|
def dispatch(self, request, *args, **kwargs):
|
||||||
|
self.params = self.parse_params()
|
||||||
|
return super().dispatch(request, *args, **kwargs)
|
||||||
|
|
||||||
|
def get(self, *args, **kwargs):
|
||||||
|
messages.warning(
|
||||||
|
self.request,
|
||||||
|
_(
|
||||||
|
"You are going to link your AE account and your %(app)s account. "
|
||||||
|
"Continue only if this page was opened from %(app)s."
|
||||||
|
)
|
||||||
|
% {"app": self.params.third_party_app},
|
||||||
|
)
|
||||||
|
return super().get(*args, **kwargs)
|
||||||
|
|
||||||
|
def get_initial(self):
|
||||||
|
return self.params.model_dump()
|
||||||
|
|
||||||
|
def form_valid(self, form):
|
||||||
|
client = ApiClient.objects.get(id=form.cleaned_data["client_id"])
|
||||||
|
user = UserProfileSchema.from_orm(self.request.user).model_dump()
|
||||||
|
data = {"user": user, "signature": hmac_hexdigest(client.hmac_key, user)}
|
||||||
|
response = requests.post(form.cleaned_data["callback_url"], json=data)
|
||||||
|
self.success_url = reverse(
|
||||||
|
"api-link:third-party-auth-result",
|
||||||
|
kwargs={"result": "success" if response.ok else "failure"},
|
||||||
|
)
|
||||||
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
def get_context_data(self, **kwargs):
|
||||||
|
return super().get_context_data(**kwargs) | {
|
||||||
|
"third_party_app": self.params.third_party_app,
|
||||||
|
"third_party_cgu": self.params.privacy_link,
|
||||||
|
"sith_cgu": SithFile.objects.get(id=settings.SITH_CGU_FILE_ID),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class ThirdPartyAuthResultView(LoginRequiredMixin, TemplateView):
|
||||||
|
"""View that the user will see if its authentication on sith was successful.
|
||||||
|
|
||||||
|
This can show either a success or a failure message :
|
||||||
|
- success : everything is good, the user is successfully authenticated
|
||||||
|
and can close the page
|
||||||
|
- failure : the authentication has been processed on the sith side,
|
||||||
|
but the request to the callback url received an error.
|
||||||
|
In such a case, there is nothing much we can do but to advice
|
||||||
|
the user to contact the developers of the third-party app.
|
||||||
|
"""
|
||||||
|
|
||||||
|
template_name = "core/base.jinja"
|
||||||
|
success_message = _(
|
||||||
|
"You have been successfully authenticated. You can now close this page."
|
||||||
|
)
|
||||||
|
error_message = _(
|
||||||
|
"Your authentication on the AE website was successful, "
|
||||||
|
"but an error happened during the interaction "
|
||||||
|
"with the third-party application. "
|
||||||
|
"Please contact the managers of the latter."
|
||||||
|
)
|
||||||
|
|
||||||
|
def get(self, request, *args, **kwargs):
|
||||||
|
if self.kwargs.get("result") == "success":
|
||||||
|
messages.success(request, self.success_message)
|
||||||
|
else:
|
||||||
|
messages.error(request, self.error_message)
|
||||||
|
return super().get(request, *args, **kwargs)
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
},
|
},
|
||||||
"files": {
|
"files": {
|
||||||
"ignoreUnknown": false,
|
"ignoreUnknown": false,
|
||||||
"includes": ["**/static/**"]
|
"includes": ["**/static/**", "vite.config.mts"]
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
|||||||
29
club/api.py
29
club/api.py
@@ -6,9 +6,15 @@ from ninja_extra.pagination import PageNumberPaginationExtra
|
|||||||
from ninja_extra.schemas import PaginatedResponseSchema
|
from ninja_extra.schemas import PaginatedResponseSchema
|
||||||
|
|
||||||
from api.auth import ApiKeyAuth
|
from api.auth import ApiKeyAuth
|
||||||
from api.permissions import CanAccessLookup, HasPerm
|
from api.permissions import CanAccessLookup, CanView, HasPerm
|
||||||
from club.models import Club, Membership
|
from club.models import Club, Membership
|
||||||
from club.schemas import ClubSchema, ClubSearchFilterSchema, SimpleClubSchema
|
from club.schemas import (
|
||||||
|
ClubSchema,
|
||||||
|
ClubSearchFilterSchema,
|
||||||
|
SimpleClubSchema,
|
||||||
|
UserMembershipSchema,
|
||||||
|
)
|
||||||
|
from core.models import User
|
||||||
|
|
||||||
|
|
||||||
@api_controller("/club")
|
@api_controller("/club")
|
||||||
@@ -38,3 +44,22 @@ class ClubController(ControllerBase):
|
|||||||
return self.get_object_or_exception(
|
return self.get_object_or_exception(
|
||||||
Club.objects.prefetch_related(prefetch), id=club_id
|
Club.objects.prefetch_related(prefetch), id=club_id
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@api_controller("/user/{int:user_id}/club")
|
||||||
|
class UserClubController(ControllerBase):
|
||||||
|
@route.get(
|
||||||
|
"",
|
||||||
|
response=list[UserMembershipSchema],
|
||||||
|
auth=[ApiKeyAuth(), SessionAuth()],
|
||||||
|
permissions=[CanView],
|
||||||
|
url_name="fetch_user_clubs",
|
||||||
|
)
|
||||||
|
def fetch_user_clubs(self, user_id: int):
|
||||||
|
"""Get all the active memberships of the given user."""
|
||||||
|
user = self.get_object_or_exception(User, id=user_id)
|
||||||
|
return (
|
||||||
|
Membership.objects.ongoing()
|
||||||
|
.filter(user=user)
|
||||||
|
.select_related("club", "user")
|
||||||
|
)
|
||||||
|
|||||||
@@ -40,6 +40,8 @@ class ClubProfileSchema(ModelSchema):
|
|||||||
|
|
||||||
|
|
||||||
class ClubMemberSchema(ModelSchema):
|
class ClubMemberSchema(ModelSchema):
|
||||||
|
"""A schema to represent all memberships in a club."""
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Membership
|
model = Membership
|
||||||
fields = ["start_date", "end_date", "role", "description"]
|
fields = ["start_date", "end_date", "role", "description"]
|
||||||
@@ -53,3 +55,13 @@ class ClubSchema(ModelSchema):
|
|||||||
fields = ["id", "name", "logo", "is_active", "short_description", "address"]
|
fields = ["id", "name", "logo", "is_active", "short_description", "address"]
|
||||||
|
|
||||||
members: list[ClubMemberSchema]
|
members: list[ClubMemberSchema]
|
||||||
|
|
||||||
|
|
||||||
|
class UserMembershipSchema(ModelSchema):
|
||||||
|
"""A schema to represent the active club memberships of a user."""
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = Membership
|
||||||
|
fields = ["id", "start_date", "role", "description"]
|
||||||
|
|
||||||
|
club: SimpleClubSchema
|
||||||
|
|||||||
@@ -1,63 +1,25 @@
|
|||||||
{% 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 %} ({{ club.name }})</h3>
|
<h3>{% trans %}Club tools{% endtrans %}</h3>
|
||||||
<div>
|
<div>
|
||||||
<h4>{% trans %}Communication:{% endtrans %}</h4>
|
<h4>{% trans %}Communication:{% endtrans %}</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li> <a href="{{ url('com:news_new') }}?club={{ object.id }}">{% trans %}Create a news{% endtrans %}</a></li>
|
||||||
<a href="{{ url('com:news_new') }}?club={{ object.id }}">
|
<li> <a href="{{ url('com:weekmail_article') }}?club={{ object.id }}">{% trans %}Post in the Weekmail{% endtrans %}</a></li>
|
||||||
{% 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>
|
<li> <a href="{{ url('trombi:detail', trombi_id=object.trombi.id) }}">{% trans %}Edit Trombi{% endtrans %}</a></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 counter in counters %}
|
{% for c in object.counters.filter(type="OFFICE") %}
|
||||||
<li>{{ counter }}:
|
<li>{{ c }}:
|
||||||
<a href="{{ url('counter:details', counter_id=counter.id) }}">View</a>
|
<a href="{{ url('counter:details', counter_id=c.id) }}">View</a>
|
||||||
<a href="{{ url('counter:admin', counter_id=counter.id) }}">Edit</a>
|
<a href="{{ url('counter:admin', counter_id=c.id) }}">Edit</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
50
club/tests/test_user_club_controller.py
Normal file
50
club/tests/test_user_club_controller.py
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
|
from django.test import TestCase
|
||||||
|
from django.urls import reverse
|
||||||
|
from django.utils.timezone import localdate
|
||||||
|
from model_bakery import baker
|
||||||
|
from model_bakery.recipe import Recipe
|
||||||
|
|
||||||
|
from club.models import Club, Membership
|
||||||
|
from club.schemas import UserMembershipSchema
|
||||||
|
from core.baker_recipes import subscriber_user
|
||||||
|
from core.models import Page
|
||||||
|
|
||||||
|
|
||||||
|
class TestFetchClub(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
cls.user = subscriber_user.make()
|
||||||
|
pages = baker.make(Page, _quantity=3, _bulk_create=True)
|
||||||
|
clubs = baker.make(Club, page=iter(pages), _quantity=3, _bulk_create=True)
|
||||||
|
recipe = Recipe(
|
||||||
|
Membership, user=cls.user, start_date=localdate() - timedelta(days=2)
|
||||||
|
)
|
||||||
|
cls.members = Membership.objects.bulk_create(
|
||||||
|
[
|
||||||
|
recipe.prepare(club=clubs[0]),
|
||||||
|
recipe.prepare(club=clubs[1], end_date=localdate() - timedelta(days=1)),
|
||||||
|
recipe.prepare(club=clubs[1]),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_fetch_memberships(self):
|
||||||
|
self.client.force_login(subscriber_user.make())
|
||||||
|
res = self.client.get(
|
||||||
|
reverse("api:fetch_user_clubs", kwargs={"user_id": self.user.id})
|
||||||
|
)
|
||||||
|
assert res.status_code == 200
|
||||||
|
assert [UserMembershipSchema.model_validate(m) for m in res.json()] == [
|
||||||
|
UserMembershipSchema.from_orm(m) for m in (self.members[0], self.members[2])
|
||||||
|
]
|
||||||
|
|
||||||
|
def test_fetch_club_nb_queries(self):
|
||||||
|
self.client.force_login(subscriber_user.make())
|
||||||
|
with self.assertNumQueries(6):
|
||||||
|
# - 5 queries for authentication
|
||||||
|
# - 1 query for the actual data
|
||||||
|
res = self.client.get(
|
||||||
|
reverse("api:fetch_user_clubs", kwargs={"user_id": self.user.id})
|
||||||
|
)
|
||||||
|
assert res.status_code == 200
|
||||||
@@ -260,12 +260,6 @@ 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 ClubAddMembersFragment(
|
class ClubAddMembersFragment(
|
||||||
FragmentMixin, PermissionRequiredMixin, SuccessMessageMixin, CreateView
|
FragmentMixin, PermissionRequiredMixin, SuccessMessageMixin, CreateView
|
||||||
|
|||||||
@@ -16,76 +16,16 @@
|
|||||||
--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: 0 6px 20px 4px rgb(0 0 0 / 16%);
|
--event-details-box-shadow: 0px 6px 20px 4px rgb(0 0 0 / 16%);
|
||||||
--event-details-max-width: 600px;
|
--event-details-max-width: 600px;
|
||||||
--event-recurring-internal-color: #6f69cd;
|
--event-recurring-internal-color: #6f69cd;
|
||||||
--event-recurring-unpublished-color: orange;
|
--event-recurring-unpublished-color: orange;
|
||||||
}
|
}
|
||||||
|
|
||||||
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;
|
||||||
@@ -122,60 +62,82 @@ 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: 0;
|
margin-top: 0px;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Reset from style.scss
|
a.fc-col-header-cell-cushion,
|
||||||
thead {
|
a.fc-col-header-cell-cushion:hover {
|
||||||
background-color: white;
|
color: black;
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset from style.scss
|
|
||||||
tbody > tr {
|
|
||||||
&:nth-child(even):not(.highlight) {
|
|
||||||
background: white;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.fc .fc-toolbar.fc-footer-toolbar {
|
a.fc-daygrid-day-number,
|
||||||
margin-bottom: 0.5em;
|
a.fc-daygrid-day-number:hover {
|
||||||
}
|
color: rgb(34, 34, 34);
|
||||||
|
}
|
||||||
|
|
||||||
button.text-copy,
|
td {
|
||||||
button.text-copy:focus,
|
overflow: visible; // Show events on multiple days
|
||||||
button.text-copy:hover {
|
}
|
||||||
background-color: #67AE6E !important;
|
|
||||||
transition: 500ms ease-in;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.text-copied,
|
//Reset from style.scss
|
||||||
button.text-copied:focus,
|
table {
|
||||||
button.text-copied:hover {
|
box-shadow: none;
|
||||||
transition: 500ms ease-out;
|
border-radius: 0px;
|
||||||
}
|
-moz-border-radius: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
.fc .fc-getCalendarLink-button {
|
// Reset from style.scss
|
||||||
margin-right: 0.5rem;
|
thead {
|
||||||
}
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
.fc .fc-helpButton-button {
|
// Reset from style.scss
|
||||||
border-radius: 70%;
|
tbody>tr {
|
||||||
padding-left: 0.5rem;
|
&:nth-child(even):not(.highlight) {
|
||||||
padding-right: 0.5rem;
|
background: white;
|
||||||
background-color: rgba(0, 0, 0, 0.8);
|
}
|
||||||
transition: 100ms ease-out;
|
}
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
.fc .fc-toolbar.fc-footer-toolbar {
|
||||||
font-size: 11px;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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 {
|
||||||
@@ -81,6 +81,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#links_content {
|
#links_content {
|
||||||
|
overflow: auto;
|
||||||
box-shadow: $shadow-color 1px 1px 1px;
|
box-shadow: $shadow-color 1px 1px 1px;
|
||||||
min-height: 20em;
|
min-height: 20em;
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
{% 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 %}AE UTBM{% 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('core/components/calendar.scss') }}">
|
<link rel="stylesheet" href="{{ static('com/components/ics-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") }}">
|
||||||
@@ -215,12 +213,6 @@
|
|||||||
<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") }}">{% trans %}Matmatronch{% endtrans %}</a>
|
<a href="{{ url("matmat:search") }}">{% 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>
|
||||||
|
|||||||
@@ -244,9 +244,8 @@ class NewsListView(TemplateView):
|
|||||||
.filter(
|
.filter(
|
||||||
date_of_birth__month=localdate().month,
|
date_of_birth__month=localdate().month,
|
||||||
date_of_birth__day=localdate().day,
|
date_of_birth__day=localdate().day,
|
||||||
is_viewable=True,
|
role__in=["STUDENT", "FORMER STUDENT"],
|
||||||
)
|
)
|
||||||
.filter(role__in=["STUDENT", "FORMER STUDENT"])
|
|
||||||
.order_by("-date_of_birth"),
|
.order_by("-date_of_birth"),
|
||||||
key=lambda u: u.date_of_birth.year,
|
key=lambda u: u.date_of_birth.year,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ class UserAdmin(admin.ModelAdmin):
|
|||||||
"scrub_pict",
|
"scrub_pict",
|
||||||
"user_permissions",
|
"user_permissions",
|
||||||
"groups",
|
"groups",
|
||||||
|
"whitelisted_users",
|
||||||
)
|
)
|
||||||
inlines = (UserBanInline,)
|
inlines = (UserBanInline,)
|
||||||
search_fields = ["first_name", "last_name", "username"]
|
search_fields = ["first_name", "last_name", "username"]
|
||||||
|
|||||||
@@ -307,6 +307,7 @@ class PermissionOrClubBoardRequiredMixin(PermissionRequiredMixin):
|
|||||||
return False
|
return False
|
||||||
if super().has_permission():
|
if super().has_permission():
|
||||||
return True
|
return True
|
||||||
return self.club is not None and any(
|
return (
|
||||||
g.id == self.club.board_group_id for g in self.request.user.cached_groups
|
self.club is not None
|
||||||
|
and self.club.board_group_id in self.request.user.all_groups
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,19 +1,16 @@
|
|||||||
class FourDigitYearConverter:
|
from django.urls.converters import IntConverter, StringConverter
|
||||||
regex = "[0-9]{4}"
|
|
||||||
|
|
||||||
def to_python(self, value):
|
|
||||||
return int(value)
|
class FourDigitYearConverter(IntConverter):
|
||||||
|
regex = "[0-9]{4}"
|
||||||
|
|
||||||
def to_url(self, value):
|
def to_url(self, value):
|
||||||
return str(value).zfill(4)
|
return str(value).zfill(4)
|
||||||
|
|
||||||
|
|
||||||
class TwoDigitMonthConverter:
|
class TwoDigitMonthConverter(IntConverter):
|
||||||
regex = "[0-9]{2}"
|
regex = "[0-9]{2}"
|
||||||
|
|
||||||
def to_python(self, value):
|
|
||||||
return int(value)
|
|
||||||
|
|
||||||
def to_url(self, value):
|
def to_url(self, value):
|
||||||
return str(value).zfill(2)
|
return str(value).zfill(2)
|
||||||
|
|
||||||
@@ -28,3 +25,9 @@ class BooleanStringConverter:
|
|||||||
|
|
||||||
def to_url(self, value):
|
def to_url(self, value):
|
||||||
return str(value)
|
return str(value)
|
||||||
|
|
||||||
|
|
||||||
|
class ResultConverter(StringConverter):
|
||||||
|
"""Converter whose regex match either "success" or "failure"."""
|
||||||
|
|
||||||
|
regex = "(success|failure)"
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ from typing import ClassVar, NamedTuple
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.contrib.sites.models import Site
|
from django.contrib.sites.models import Site
|
||||||
|
from django.core.files.base import ContentFile
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.core.management.base import BaseCommand
|
from django.core.management.base import BaseCommand
|
||||||
from django.db import connection
|
from django.db import connection
|
||||||
@@ -104,19 +105,31 @@ class Command(BaseCommand):
|
|||||||
)
|
)
|
||||||
self.profiles_root = SithFile.objects.create(name="profiles", owner=root)
|
self.profiles_root = SithFile.objects.create(name="profiles", owner=root)
|
||||||
home_root = SithFile.objects.create(name="users", owner=root)
|
home_root = SithFile.objects.create(name="users", owner=root)
|
||||||
|
club_root = SithFile.objects.create(name="clubs", owner=root)
|
||||||
|
sas = SithFile.objects.create(name="SAS", owner=root)
|
||||||
|
SithFile.objects.create(
|
||||||
|
name="CGU",
|
||||||
|
is_folder=False,
|
||||||
|
file=ContentFile(
|
||||||
|
content="Conditions générales d'utilisation", name="cgu.txt"
|
||||||
|
),
|
||||||
|
owner=root,
|
||||||
|
)
|
||||||
|
|
||||||
# Page needed for club creation
|
# Page needed for club creation
|
||||||
p = Page(name=settings.SITH_CLUB_ROOT_PAGE)
|
p = Page(name=settings.SITH_CLUB_ROOT_PAGE)
|
||||||
p.save(force_lock=True)
|
p.save(force_lock=True)
|
||||||
|
|
||||||
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"
|
||||||
)
|
)
|
||||||
main_club.board_group.permissions.add(
|
main_club.board_group.permissions.add(
|
||||||
*Permission.objects.filter(
|
*Permission.objects.filter(
|
||||||
codename__in=["view_subscription", "add_subscription"]
|
codename__in=[
|
||||||
|
"view_subscription",
|
||||||
|
"add_subscription",
|
||||||
|
"view_hidden_user",
|
||||||
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
bar_club = Club.objects.create(
|
bar_club = Club.objects.create(
|
||||||
@@ -790,11 +803,7 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
subscribers = Group.objects.create(name="Cotisants")
|
subscribers = Group.objects.create(name="Cotisants")
|
||||||
subscribers.permissions.add(
|
subscribers.permissions.add(
|
||||||
*list(
|
*list(perms.filter(codename__in=["add_news", "add_uecomment"]))
|
||||||
perms.filter(
|
|
||||||
codename__in=["add_news", "add_uecomment", "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,7 +1,7 @@
|
|||||||
|
import math
|
||||||
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
|
||||||
@@ -25,7 +25,6 @@ from counter.models import (
|
|||||||
)
|
)
|
||||||
from forum.models import Forum, ForumMessage, ForumTopic
|
from forum.models import Forum, ForumMessage, ForumTopic
|
||||||
from pedagogy.models import UE
|
from pedagogy.models import UE
|
||||||
from reservation.models import ReservationSlot, Room
|
|
||||||
from subscription.models import Subscription
|
from subscription.models import Subscription
|
||||||
|
|
||||||
|
|
||||||
@@ -36,27 +35,57 @@ class Command(BaseCommand):
|
|||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
self.faker = Faker("fr_FR")
|
self.faker = Faker("fr_FR")
|
||||||
|
|
||||||
|
def add_arguments(self, parser):
|
||||||
|
parser.add_argument(
|
||||||
|
"-n", "--nb-users", help="Number of users to create", type=int, default=600
|
||||||
|
)
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
if not settings.DEBUG:
|
if not settings.DEBUG:
|
||||||
raise Exception("Never call this command in prod. Never.")
|
raise Exception("Never call this command in prod. Never.")
|
||||||
|
|
||||||
self.stdout.write("Creating users...")
|
self.stdout.write("Creating users...")
|
||||||
users = self.create_users()
|
users = self.create_users(options["nb_users"])
|
||||||
self.create_bans(random.sample(users, k=len(users) // 200)) # 0.5% of users
|
self.create_bans(random.sample(users, k=len(users) // 200)) # 0.5% of 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...")
|
||||||
self.create_club_memberships(subscribers)
|
users_qs = User.objects.filter(id__in=[s.id for s in subscribers])
|
||||||
self.stdout.write("Creating rooms and reservation...")
|
subscribers_now = list(
|
||||||
self.create_resources_and_reservations(random.sample(subscribers, k=40))
|
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))),
|
||||||
|
)
|
||||||
self.stdout.write("Creating uvs...")
|
self.stdout.write("Creating uvs...")
|
||||||
self.create_ues()
|
self.create_ues()
|
||||||
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 = list(User.objects.order_by("?")[:100])
|
sellers = random.sample(users, len(users) // 10)
|
||||||
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)
|
||||||
@@ -65,7 +94,7 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
self.stdout.write("Done")
|
self.stdout.write("Done")
|
||||||
|
|
||||||
def create_users(self) -> list[User]:
|
def create_users(self, nb_users: int = 600) -> list[User]:
|
||||||
# Create a single password hash for all users to make it faster.
|
# Create a single password hash for all users to make it faster.
|
||||||
# It's insecure as hell, but it's ok since it's only for dev purposes.
|
# It's insecure as hell, but it's ok since it's only for dev purposes.
|
||||||
password = make_password("plop")
|
password = make_password("plop")
|
||||||
@@ -84,7 +113,7 @@ class Command(BaseCommand):
|
|||||||
address=self.faker.address(),
|
address=self.faker.address(),
|
||||||
password=password,
|
password=password,
|
||||||
)
|
)
|
||||||
for _ in range(600)
|
for _ in range(nb_users)
|
||||||
]
|
]
|
||||||
# there may a duplicate or two
|
# there may a duplicate or two
|
||||||
# Not a problem, we will just have 599 users instead of 600
|
# Not a problem, we will just have 599 users instead of 600
|
||||||
@@ -191,97 +220,6 @@ 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_ues(self):
|
def create_ues(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"]
|
||||||
@@ -478,8 +416,9 @@ class Command(BaseCommand):
|
|||||||
Permanency.objects.bulk_create(perms)
|
Permanency.objects.bulk_create(perms)
|
||||||
|
|
||||||
def create_forums(self):
|
def create_forums(self):
|
||||||
forumers = list(User.objects.order_by("?")[:100])
|
users = list(User.objects.all())
|
||||||
most_actives = random.sample(forumers, 10)
|
forumers = random.sample(users, math.ceil(len(users) / 10))
|
||||||
|
most_actives = random.sample(forumers, math.ceil(len(forumers) / 6))
|
||||||
categories = list(Forum.objects.filter(is_category=True))
|
categories = list(Forum.objects.filter(is_category=True))
|
||||||
new_forums = [
|
new_forums = [
|
||||||
Forum(name=self.faker.text(20), parent=random.choice(categories))
|
Forum(name=self.faker.text(20), parent=random.choice(categories))
|
||||||
@@ -496,7 +435,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.values_list("id", flat=True))
|
topics = list(ForumTopic.objects.all())
|
||||||
|
|
||||||
def get_author():
|
def get_author():
|
||||||
if random.random() > 0.5:
|
if random.random() > 0.5:
|
||||||
@@ -504,7 +443,7 @@ class Command(BaseCommand):
|
|||||||
return random.choice(forumers)
|
return random.choice(forumers)
|
||||||
|
|
||||||
messages = []
|
messages = []
|
||||||
for topic_id in topics:
|
for t 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(
|
||||||
[
|
[
|
||||||
@@ -516,7 +455,7 @@ class Command(BaseCommand):
|
|||||||
messages.extend(
|
messages.extend(
|
||||||
[
|
[
|
||||||
ForumMessage(
|
ForumMessage(
|
||||||
topic_id=topic_id,
|
topic=t,
|
||||||
author=get_author(),
|
author=get_author(),
|
||||||
date=d,
|
date=d,
|
||||||
message="\n\n".join(
|
message="\n\n".join(
|
||||||
|
|||||||
37
core/migrations/0049_user_whitelisted_users.py
Normal file
37
core/migrations/0049_user_whitelisted_users.py
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
# Generated by Django 5.2.12 on 2026-03-14 08:39
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [("core", "0048_alter_user_options")]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="user",
|
||||||
|
name="whitelisted_users",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
blank=True,
|
||||||
|
help_text=(
|
||||||
|
"Even if this profile is hidden, "
|
||||||
|
"the users in this list will still be able to see it."
|
||||||
|
),
|
||||||
|
related_name="visible_by_whitelist",
|
||||||
|
to=settings.AUTH_USER_MODEL,
|
||||||
|
verbose_name="whitelisted users",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="preferences",
|
||||||
|
name="show_my_stats",
|
||||||
|
field=models.BooleanField(
|
||||||
|
default=False,
|
||||||
|
help_text=(
|
||||||
|
"Allow subscribers (or whitelisted users "
|
||||||
|
"if your profile is hidden) to access your AE account stats."
|
||||||
|
),
|
||||||
|
verbose_name="show your stats to others",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -131,7 +131,7 @@ class UserQuerySet(models.QuerySet):
|
|||||||
if user.has_perm("core.view_hidden_user"):
|
if user.has_perm("core.view_hidden_user"):
|
||||||
return self
|
return self
|
||||||
if user.has_perm("core.view_user"):
|
if user.has_perm("core.view_user"):
|
||||||
return self.filter(is_viewable=True)
|
return self.filter(Q(is_viewable=True) | Q(whitelisted_users=user))
|
||||||
if user.is_anonymous:
|
if user.is_anonymous:
|
||||||
return self.none()
|
return self.none()
|
||||||
return self.filter(id=user.id)
|
return self.filter(id=user.id)
|
||||||
@@ -279,6 +279,16 @@ class User(AbstractUser):
|
|||||||
),
|
),
|
||||||
default=True,
|
default=True,
|
||||||
)
|
)
|
||||||
|
whitelisted_users = models.ManyToManyField(
|
||||||
|
"User",
|
||||||
|
related_name="visible_by_whitelist",
|
||||||
|
verbose_name=_("whitelisted users"),
|
||||||
|
help_text=_(
|
||||||
|
"Even if this profile is hidden, "
|
||||||
|
"the users in this list will still be able to see it."
|
||||||
|
),
|
||||||
|
blank=True,
|
||||||
|
)
|
||||||
godfathers = models.ManyToManyField("User", related_name="godchildren", blank=True)
|
godfathers = models.ManyToManyField("User", related_name="godchildren", blank=True)
|
||||||
|
|
||||||
objects = CustomUserManager()
|
objects = CustomUserManager()
|
||||||
@@ -356,23 +366,27 @@ class User(AbstractUser):
|
|||||||
)
|
)
|
||||||
if group_id is None:
|
if group_id is None:
|
||||||
return False
|
return False
|
||||||
if group_id == settings.SITH_GROUP_SUBSCRIBERS_ID:
|
return group_id in self.all_groups
|
||||||
return self.is_subscribed
|
|
||||||
if group_id == settings.SITH_GROUP_ROOT_ID:
|
|
||||||
return self.is_root
|
|
||||||
return any(g.id == group_id for g in self.cached_groups)
|
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def cached_groups(self) -> list[Group]:
|
def all_groups(self) -> dict[int, Group]:
|
||||||
"""Get the list of groups this user is in."""
|
"""Get the list of groups this user is in."""
|
||||||
return list(self.groups.all())
|
additional_groups = []
|
||||||
|
if self.is_subscribed:
|
||||||
|
additional_groups.append(settings.SITH_GROUP_SUBSCRIBERS_ID)
|
||||||
|
if self.is_superuser:
|
||||||
|
additional_groups.append(settings.SITH_GROUP_ROOT_ID)
|
||||||
|
qs = self.groups.all()
|
||||||
|
if additional_groups:
|
||||||
|
# This is somewhat counter-intuitive, but this query runs way faster with
|
||||||
|
# a UNION rather than a OR (in average, 0.25ms vs 14ms).
|
||||||
|
# For the why, cf. https://dba.stackexchange.com/questions/293836/why-is-an-or-statement-slower-than-union
|
||||||
|
qs = qs.union(Group.objects.filter(id__in=additional_groups))
|
||||||
|
return {g.id: g for g in qs}
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def is_root(self) -> bool:
|
def is_root(self) -> bool:
|
||||||
if self.is_superuser:
|
return self.is_superuser or settings.SITH_GROUP_ROOT_ID in self.all_groups
|
||||||
return True
|
|
||||||
root_id = settings.SITH_GROUP_ROOT_ID
|
|
||||||
return any(g.id == root_id for g in self.cached_groups)
|
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def is_board_member(self) -> bool:
|
def is_board_member(self) -> bool:
|
||||||
@@ -514,7 +528,7 @@ class User(AbstractUser):
|
|||||||
self.username = user_name
|
self.username = user_name
|
||||||
return user_name
|
return user_name
|
||||||
|
|
||||||
def is_owner(self, obj):
|
def is_owner(self, obj: models.Model):
|
||||||
"""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
|
||||||
@@ -522,7 +536,7 @@ class User(AbstractUser):
|
|||||||
return True
|
return True
|
||||||
return self.is_root
|
return self.is_root
|
||||||
|
|
||||||
def can_edit(self, obj):
|
def can_edit(self, obj: models.Model):
|
||||||
"""Determine if the object can be edited by the user."""
|
"""Determine if the object can be edited by the user."""
|
||||||
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
|
||||||
@@ -536,11 +550,9 @@ class User(AbstractUser):
|
|||||||
pks = list(obj.edit_groups.values_list("id", flat=True))
|
pks = list(obj.edit_groups.values_list("id", flat=True))
|
||||||
if any(self.is_in_group(pk=pk) for pk in pks):
|
if any(self.is_in_group(pk=pk) for pk in pks):
|
||||||
return True
|
return True
|
||||||
if isinstance(obj, User) and obj == self:
|
|
||||||
return True
|
|
||||||
return self.is_owner(obj)
|
return self.is_owner(obj)
|
||||||
|
|
||||||
def can_view(self, obj):
|
def can_view(self, obj: models.Model):
|
||||||
"""Determine if the object can be viewed by the user."""
|
"""Determine if the object can be viewed by the user."""
|
||||||
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
|
||||||
@@ -559,14 +571,35 @@ class User(AbstractUser):
|
|||||||
return True
|
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: User):
|
||||||
return user.is_root or user.is_board_member
|
return user == self or user.is_root or user.is_board_member
|
||||||
|
|
||||||
def can_be_viewed_by(self, user: User) -> bool:
|
def can_be_viewed_by(self, user: User) -> bool:
|
||||||
|
"""Check if the given user can be viewed by this user.
|
||||||
|
|
||||||
|
Given users A and B. A can be viewed by B if :
|
||||||
|
|
||||||
|
- A and B are the same user
|
||||||
|
- or B has the permission to view hidden users
|
||||||
|
- or B can view users in general and A didn't hide its profile
|
||||||
|
- or B is in A's whitelist.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def is_in_whitelist(u: User):
|
||||||
|
if (
|
||||||
|
hasattr(self, "_prefetched_objects_cache")
|
||||||
|
and "whitelisted_users" in self._prefetched_objects_cache
|
||||||
|
):
|
||||||
|
return u in self.whitelisted_users.all()
|
||||||
|
return self.whitelisted_users.contains(u)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
user.id == self.id
|
user.id == self.id
|
||||||
or user.has_perm("core.view_hidden_user")
|
or user.has_perm("core.view_hidden_user")
|
||||||
or (user.has_perm("core.view_user") and self.is_viewable)
|
or (
|
||||||
|
user.has_perm("core.view_user")
|
||||||
|
and (self.is_viewable or is_in_whitelist(user))
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_mini_item(self):
|
def get_mini_item(self):
|
||||||
@@ -746,7 +779,14 @@ class Preferences(models.Model):
|
|||||||
User, related_name="_preferences", on_delete=models.CASCADE
|
User, related_name="_preferences", on_delete=models.CASCADE
|
||||||
)
|
)
|
||||||
receive_weekmail = models.BooleanField(_("receive the Weekmail"), default=False)
|
receive_weekmail = models.BooleanField(_("receive the Weekmail"), default=False)
|
||||||
show_my_stats = models.BooleanField(_("show your stats to others"), default=False)
|
show_my_stats = models.BooleanField(
|
||||||
|
_("show your stats to others"),
|
||||||
|
help_text=_(
|
||||||
|
"Allow subscribers (or whitelisted users "
|
||||||
|
"if your profile is hidden) to access your AE account stats."
|
||||||
|
),
|
||||||
|
default=False,
|
||||||
|
)
|
||||||
notify_on_click = models.BooleanField(
|
notify_on_click = models.BooleanField(
|
||||||
_("get a notification for every click"), default=False
|
_("get a notification for every click"), default=False
|
||||||
)
|
)
|
||||||
@@ -1099,10 +1139,7 @@ class PageQuerySet(models.QuerySet):
|
|||||||
return self.filter(view_groups=settings.SITH_GROUP_PUBLIC_ID)
|
return self.filter(view_groups=settings.SITH_GROUP_PUBLIC_ID)
|
||||||
if user.has_perm("core.view_page"):
|
if user.has_perm("core.view_page"):
|
||||||
return self.all()
|
return self.all()
|
||||||
groups_ids = [g.id for g in user.cached_groups]
|
return self.filter(view_groups__in=user.all_groups)
|
||||||
if user.is_subscribed:
|
|
||||||
groups_ids.append(settings.SITH_GROUP_SUBSCRIBERS_ID)
|
|
||||||
return self.filter(view_groups__in=groups_ids)
|
|
||||||
|
|
||||||
|
|
||||||
# This function prevents generating migration upon settings change
|
# This function prevents generating migration upon settings change
|
||||||
@@ -1376,7 +1413,7 @@ class PageRev(models.Model):
|
|||||||
return self.page.can_be_edited_by(user)
|
return self.page.can_be_edited_by(user)
|
||||||
|
|
||||||
def is_owned_by(self, user: User) -> bool:
|
def is_owned_by(self, user: User) -> bool:
|
||||||
return any(g.id == self.page.owner_group_id for g in user.cached_groups)
|
return self.page.owner_group_id in user.all_groups
|
||||||
|
|
||||||
def similarity_ratio(self, text: str) -> float:
|
def similarity_ratio(self, text: str) -> float:
|
||||||
"""Similarity ratio between this revision's content and the given text.
|
"""Similarity ratio between this revision's content and the given text.
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
import { morph } from "@alpinejs/morph";
|
|
||||||
import sort from "@alpinejs/sort";
|
import sort from "@alpinejs/sort";
|
||||||
import Alpine from "alpinejs";
|
import Alpine from "alpinejs";
|
||||||
import { limitedChoices } from "#core:alpine/limited-choices.ts";
|
import { limitedChoices } from "#core:alpine/limited-choices.ts";
|
||||||
import { alpinePlugin as notificationPlugin } from "#core:utils/notifications.ts";
|
import { alpinePlugin as notificationPlugin } from "#core:utils/notifications.ts";
|
||||||
|
|
||||||
Alpine.plugin([sort, morph, limitedChoices]);
|
Alpine.plugin([sort, limitedChoices]);
|
||||||
Alpine.magic("notifications", notificationPlugin);
|
Alpine.magic("notifications", notificationPlugin);
|
||||||
window.Alpine = Alpine;
|
window.Alpine = Alpine;
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ export class NfcInput extends inheritHtmlElement("input") {
|
|||||||
window.alert(gettext("Unsupported NFC card"));
|
window.alert(gettext("Unsupported NFC card"));
|
||||||
});
|
});
|
||||||
|
|
||||||
// biome-ignore lint/correctness/noUndeclaredVariables: browser API
|
|
||||||
ndef.addEventListener("reading", (event: NDEFReadingEvent) => {
|
ndef.addEventListener("reading", (event: NDEFReadingEvent) => {
|
||||||
this.removeAttribute("scan");
|
this.removeAttribute("scan");
|
||||||
this.node.value = event.serialNumber.replace(/:/g, "").toUpperCase();
|
this.node.value = event.serialNumber.replace(/:/g, "").toUpperCase();
|
||||||
|
|||||||
77
core/static/bundled/core/dynamic-formset-index.ts
Normal file
77
core/static/bundled/core/dynamic-formset-index.ts
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
interface Config {
|
||||||
|
/**
|
||||||
|
* The prefix of the formset, in case it has been changed.
|
||||||
|
* See https://docs.djangoproject.com/fr/stable/topics/forms/formsets/#customizing-a-formset-s-prefix
|
||||||
|
*/
|
||||||
|
prefix?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// biome-ignore lint/style/useNamingConvention: It's the DOM API naming
|
||||||
|
type HTMLFormInputElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
|
||||||
|
|
||||||
|
document.addEventListener("alpine:init", () => {
|
||||||
|
/**
|
||||||
|
* Alpine data element to allow the dynamic addition of forms to a formset.
|
||||||
|
*
|
||||||
|
* To use this, you need :
|
||||||
|
* - an HTML element containing the existing forms, noted by `x-ref="formContainer"`
|
||||||
|
* - a template containing the empty form
|
||||||
|
* (that you can obtain jinja-side with `{{ formset.empty_form }}`),
|
||||||
|
* noted by `x-ref="formTemplate"`
|
||||||
|
* - a button with `@click="addForm"`
|
||||||
|
* - you may also have one or more buttons with `@click="removeForm(element)"`,
|
||||||
|
* where `element` is the HTML element containing the form.
|
||||||
|
*
|
||||||
|
* For an example of how this is used, you can have a look to
|
||||||
|
* `counter/templates/counter/product_form.jinja`
|
||||||
|
*/
|
||||||
|
Alpine.data("dynamicFormSet", (config?: Config) => ({
|
||||||
|
init() {
|
||||||
|
this.formContainer = this.$refs.formContainer as HTMLElement;
|
||||||
|
this.nbForms = this.formContainer.children.length as number;
|
||||||
|
this.template = this.$refs.formTemplate as HTMLTemplateElement;
|
||||||
|
const prefix = config?.prefix ?? "form";
|
||||||
|
this.$root
|
||||||
|
.querySelector(`#id_${prefix}-TOTAL_FORMS`)
|
||||||
|
.setAttribute(":value", "nbForms");
|
||||||
|
},
|
||||||
|
|
||||||
|
addForm() {
|
||||||
|
this.formContainer.appendChild(document.importNode(this.template.content, true));
|
||||||
|
const newForm = this.formContainer.lastElementChild;
|
||||||
|
const inputs: NodeListOf<HTMLFormInputElement> = newForm.querySelectorAll(
|
||||||
|
"input, select, textarea",
|
||||||
|
);
|
||||||
|
for (const el of inputs) {
|
||||||
|
el.name = el.name.replace("__prefix__", this.nbForms.toString());
|
||||||
|
el.id = el.id.replace("__prefix__", this.nbForms.toString());
|
||||||
|
}
|
||||||
|
const labels: NodeListOf<HTMLLabelElement> = newForm.querySelectorAll("label");
|
||||||
|
for (const el of labels) {
|
||||||
|
el.htmlFor = el.htmlFor.replace("__prefix__", this.nbForms.toString());
|
||||||
|
}
|
||||||
|
inputs[0].focus();
|
||||||
|
this.nbForms += 1;
|
||||||
|
},
|
||||||
|
|
||||||
|
removeForm(container: HTMLDivElement) {
|
||||||
|
container.remove();
|
||||||
|
this.nbForms -= 1;
|
||||||
|
// adjust the id of remaining forms
|
||||||
|
for (let i = 0; i < this.nbForms; i++) {
|
||||||
|
const form: HTMLDivElement = this.formContainer.children[i];
|
||||||
|
const inputs: NodeListOf<HTMLFormInputElement> = form.querySelectorAll(
|
||||||
|
"input, select, textarea",
|
||||||
|
);
|
||||||
|
for (const el of inputs) {
|
||||||
|
el.name = el.name.replace(/\d+/, i.toString());
|
||||||
|
el.id = el.id.replace(/\d+/, i.toString());
|
||||||
|
}
|
||||||
|
const labels: NodeListOf<HTMLLabelElement> = form.querySelectorAll("label");
|
||||||
|
for (const el of labels) {
|
||||||
|
el.htmlFor = el.htmlFor.replace(/\d+/, i.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
});
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
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.detail.target.ariaBusy = true;
|
event.detail.target.ariaBusy = true;
|
||||||
|
|||||||
@@ -115,7 +115,6 @@ blockquote:before,
|
|||||||
blockquote:after,
|
blockquote:after,
|
||||||
q:before,
|
q:before,
|
||||||
q:after {
|
q:after {
|
||||||
content: "";
|
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
table {
|
table {
|
||||||
|
|||||||
@@ -16,13 +16,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.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;
|
||||||
@@ -99,23 +92,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@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%;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -141,7 +141,6 @@ form {
|
|||||||
display: block;
|
display: block;
|
||||||
margin: calc(var(--nf-input-size) * 1.5) auto 10px;
|
margin: calc(var(--nf-input-size) * 1.5) auto 10px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
white-space: nowrap;
|
|
||||||
|
|
||||||
.fields-centered {
|
.fields-centered {
|
||||||
padding: 10px 10px 0;
|
padding: 10px 10px 0;
|
||||||
@@ -157,6 +156,7 @@ form {
|
|||||||
margin-bottom: .25rem;
|
margin-bottom: .25rem;
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
display: block;
|
display: block;
|
||||||
|
max-width: calc(100% - calc(var(--nf-input-size) * 2))
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
|
|||||||
@@ -10,9 +10,10 @@
|
|||||||
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;
|
||||||
|
|||||||
@@ -5,17 +5,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.profile {
|
.profile {
|
||||||
&-visible {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 5px;
|
|
||||||
padding-top: 10px;
|
|
||||||
input[type="checkbox"]+label {
|
|
||||||
max-width: unset;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-pictures {
|
&-pictures {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -19,28 +19,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&-cards,
|
|
||||||
&-trombi {
|
|
||||||
>p {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
text-align: justify;
|
|
||||||
gap: 5px;
|
|
||||||
margin: 0;
|
|
||||||
|
|
||||||
>input,
|
|
||||||
>select {
|
|
||||||
min-width: 300px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-submit-btn {
|
|
||||||
margin-top: 10px !important;
|
|
||||||
max-width: 100px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.justify {
|
.justify {
|
||||||
|
|||||||
@@ -35,8 +35,8 @@
|
|||||||
<noscript><link rel="stylesheet" href="{{ static('bundled/fontawesome-index.css') }}"></noscript>
|
<noscript><link rel="stylesheet" href="{{ static('bundled/fontawesome-index.css') }}"></noscript>
|
||||||
|
|
||||||
<script src="{{ url('javascript-catalog') }}"></script>
|
<script src="{{ url('javascript-catalog') }}"></script>
|
||||||
<script type="module" src={{ static("bundled/core/navbar-index.ts") }}></script>
|
<script type="module" src="{{ static("bundled/core/navbar-index.ts") }}"></script>
|
||||||
<script type="module" src={{ static("bundled/core/components/include-index.ts") }}></script>
|
<script type="module" src="{{ static("bundled/core/components/include-index.ts") }}"></script>
|
||||||
<script type="module" src="{{ static('bundled/alpine-index.js') }}"></script>
|
<script type="module" src="{{ static('bundled/alpine-index.js') }}"></script>
|
||||||
<script type="module" src="{{ static('bundled/htmx-index.js') }}"></script>
|
<script type="module" src="{{ static('bundled/htmx-index.js') }}"></script>
|
||||||
<script type="module" src="{{ static('bundled/country-flags-index.ts') }}"></script>
|
<script type="module" src="{{ static('bundled/country-flags-index.ts') }}"></script>
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
<div id="quick-notifications"
|
<div id="quick-notifications"
|
||||||
x-data="{
|
x-data="{
|
||||||
messages: [
|
messages: [
|
||||||
{% if messages %}
|
{%- for message in messages -%}
|
||||||
{% for message in messages %}
|
{%- if not message.extra_tags -%}
|
||||||
{
|
{ tag: '{{ message.tags }}', text: '{{ message }}' },
|
||||||
tag: '{{ message.tags }}',
|
{%- endif -%}
|
||||||
text: '{{ message }}',
|
{%- endfor -%}
|
||||||
},
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
]
|
]
|
||||||
}"
|
}"
|
||||||
@quick-notification-add="(e) => messages.push(e?.detail)"
|
@quick-notification-add="(e) => messages.push(e?.detail)"
|
||||||
|
|||||||
33
core/templates/core/fragment/user_visibility.jinja
Normal file
33
core/templates/core/fragment/user_visibility.jinja
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<form
|
||||||
|
hx-post="{{ url("core:user_visibility_fragment", user_id=form.instance.id) }}"
|
||||||
|
hx-disabled-elt="find input[type='submit']"
|
||||||
|
hx-swap="outerHTML" x-data="{ isViewable: {{ form.is_viewable.value()|tojson }} }"
|
||||||
|
>
|
||||||
|
{% for message in messages %}
|
||||||
|
{% if message.extra_tags=="visibility" %}
|
||||||
|
<div class="alert alert-success">
|
||||||
|
{{ message }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% csrf_token %}
|
||||||
|
{{ form.non_field_errors() }}
|
||||||
|
<fieldset class="form-group">
|
||||||
|
{{ form.is_viewable|add_attr("x-model=isViewable") }}
|
||||||
|
{{ form.is_viewable.label_tag() }}
|
||||||
|
<span class="helptext">{{ form.is_viewable.help_text }}</span>
|
||||||
|
{{ form.is_viewable.errors }}
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="form-group" x-show="!isViewable">
|
||||||
|
{{ form.whitelisted_users.as_field_group() }}
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="form-group">
|
||||||
|
{{ form.show_my_stats }}
|
||||||
|
{{ form.show_my_stats.label_tag() }}
|
||||||
|
<span class="helptext">
|
||||||
|
{{ form.show_my_stats.help_text }}
|
||||||
|
</span>
|
||||||
|
{{ form.show_my_stats.errors }}
|
||||||
|
</fieldset>
|
||||||
|
<input type="submit" class="btn btn-blue" value="{% trans %}Save{% endtrans %}">
|
||||||
|
</form>
|
||||||
@@ -147,18 +147,7 @@
|
|||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{# Checkboxes #}
|
|
||||||
<div class="profile-visible">
|
|
||||||
<div class="row">
|
|
||||||
{{ form.is_viewable }}
|
|
||||||
{{ form.is_viewable.label_tag() }}
|
|
||||||
</div>
|
|
||||||
<span class="helptext">
|
|
||||||
{{ form.is_viewable.help_text }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="final-actions">
|
<div class="final-actions">
|
||||||
|
|
||||||
{%- if form.instance == user -%}
|
{%- if form.instance == user -%}
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ url('core:password_change') }}">{%- trans -%}Change my password{%- endtrans -%}</a>
|
<a href="{{ url('core:password_change') }}">{%- trans -%}Change my password{%- endtrans -%}</a>
|
||||||
@@ -170,7 +159,6 @@
|
|||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<input type="submit" value="{%- trans -%}Update{%- endtrans -%}" />
|
<input type="submit" value="{%- trans -%}Update{%- endtrans -%}" />
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
|
{%- block additional_js -%}
|
||||||
|
<script type="module" src="{{ static("bundled/core/components/ajax-select-index.ts") }}"></script>
|
||||||
|
{%- endblock -%}
|
||||||
|
|
||||||
{%- block additional_css -%}
|
{%- block additional_css -%}
|
||||||
<link rel="stylesheet" href="{{ static('user/user_preferences.scss') }}">
|
<link rel="stylesheet" href="{{ static('user/user_preferences.scss') }}">
|
||||||
|
{# importing ajax-select-index is necessary for it to be applied after HTMX reload #}
|
||||||
|
<link rel="stylesheet" href="{{ static("bundled/core/components/ajax-select-index.css") }}">
|
||||||
|
<link rel="stylesheet" href="{{ static("core/components/ajax-select.scss") }}">
|
||||||
{%- endblock -%}
|
{%- endblock -%}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
@@ -11,30 +18,22 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<h2>{% trans %}Preferences{% endtrans %}</h2>
|
<h2>{% trans %}Preferences{% endtrans %}</h2>
|
||||||
<h3>{% trans %}General{% endtrans %}</h3>
|
<br />
|
||||||
<form class="form form-general" action="" method="post" enctype="multipart/form-data">
|
<h3>{% trans %}Notifications{% endtrans %}</h3>
|
||||||
|
<form action="" method="post" enctype="multipart/form-data">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.as_p() }}
|
<div class="form form-general">
|
||||||
<input class="form-submit-btn" type="submit" value="{% trans %}Save{% endtrans %}" />
|
{{ form.as_p() }}
|
||||||
|
</div>
|
||||||
|
<input class="btn btn-blue" type="submit" value="{% trans %}Save{% endtrans %}" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<h3>{% trans %}Trombi{% endtrans %}</h3>
|
<br />
|
||||||
|
<h3>{% trans %}Visibility{% endtrans %}</h3>
|
||||||
{% if trombi_form %}
|
|
||||||
<form class="form form-trombi" action="{{ url('trombi:user_tools') }}" method="post" enctype="multipart/form-data">
|
|
||||||
{% csrf_token %}
|
|
||||||
{{ trombi_form.as_p() }}
|
|
||||||
<input class="form-submit-btn" type="submit" value="{% trans %}Save{% endtrans %}" />
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{% else %}
|
|
||||||
<p>{% trans trombi=profile.trombi_user.trombi %}You already choose to be in that Trombi: {{ trombi }}.{% endtrans %}
|
|
||||||
<br />
|
|
||||||
<a href="{{ url('trombi:user_tools') }}">{% trans %}Go to my Trombi tools{% endtrans %}</a>
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
|
{{ user_visibility_fragment }}
|
||||||
|
|
||||||
|
<br />
|
||||||
{% if student_card_fragment %}
|
{% if student_card_fragment %}
|
||||||
<h3>{% trans %}Student card{% endtrans %}</h3>
|
<h3>{% trans %}Student card{% endtrans %}</h3>
|
||||||
{{ student_card_fragment }}
|
{{ student_card_fragment }}
|
||||||
@@ -43,5 +42,21 @@
|
|||||||
add a student card yourself, you'll need a NFC reader. We store the UID of the card which is 14 characters long.{% endtrans %}
|
add a student card yourself, you'll need a NFC reader. We store the UID of the card which is 14 characters long.{% endtrans %}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<h3>{% trans %}Trombi{% endtrans %}</h3>
|
||||||
|
|
||||||
|
{% if trombi_form %}
|
||||||
|
<form action="{{ url('trombi:user_tools') }}" method="post" enctype="multipart/form-data">
|
||||||
|
{% csrf_token %}
|
||||||
|
{{ trombi_form.as_p() }}
|
||||||
|
<input class="btn btn-blue" type="submit" value="{% trans %}Save{% endtrans %}" />
|
||||||
|
</form>
|
||||||
|
{% else %}
|
||||||
|
<p>{% trans trombi=profile.trombi_user.trombi %}You already choose to be in that Trombi: {{ trombi }}.{% endtrans %}
|
||||||
|
<br />
|
||||||
|
<a href="{{ url('trombi:user_tools') }}">{% trans %}Go to my Trombi tools{% endtrans %}</a>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
13
core/tests/test_commands.py
Normal file
13
core/tests/test_commands.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import contextlib
|
||||||
|
import os
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from django.core.management import call_command
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_populate_more(settings):
|
||||||
|
"""Just check that populate more doesn't crash"""
|
||||||
|
settings.DEBUG = True
|
||||||
|
with open(os.devnull, "w") as devnull, contextlib.redirect_stdout(devnull):
|
||||||
|
call_command("populate_more", "--nb-users", "50")
|
||||||
@@ -418,16 +418,16 @@ class TestUserIsInGroup(TestCase):
|
|||||||
group_in = baker.make(Group)
|
group_in = baker.make(Group)
|
||||||
self.public_user.groups.add(group_in)
|
self.public_user.groups.add(group_in)
|
||||||
|
|
||||||
# clear the cached property `User.cached_groups`
|
# clear the cached property `User.all_groups`
|
||||||
self.public_user.__dict__.pop("cached_groups", None)
|
self.public_user.__dict__.pop("all_groups", None)
|
||||||
# Test when the user is in the group
|
# Test when the user is in the group
|
||||||
with self.assertNumQueries(1):
|
with self.assertNumQueries(2):
|
||||||
self.public_user.is_in_group(pk=group_in.id)
|
self.public_user.is_in_group(pk=group_in.id)
|
||||||
with self.assertNumQueries(0):
|
with self.assertNumQueries(0):
|
||||||
self.public_user.is_in_group(pk=group_in.id)
|
self.public_user.is_in_group(pk=group_in.id)
|
||||||
|
|
||||||
group_not_in = baker.make(Group)
|
group_not_in = baker.make(Group)
|
||||||
self.public_user.__dict__.pop("cached_groups", None)
|
self.public_user.__dict__.pop("all_groups", None)
|
||||||
# Test when the user is not in the group
|
# Test when the user is not in the group
|
||||||
with self.assertNumQueries(1):
|
with self.assertNumQueries(1):
|
||||||
self.public_user.is_in_group(pk=group_not_in.id)
|
self.public_user.is_in_group(pk=group_not_in.id)
|
||||||
|
|||||||
@@ -399,13 +399,12 @@ class TestUserQuerySetViewableBy:
|
|||||||
return [
|
return [
|
||||||
baker.make(User),
|
baker.make(User),
|
||||||
subscriber_user.make(),
|
subscriber_user.make(),
|
||||||
subscriber_user.make(is_viewable=False),
|
*subscriber_user.make(is_viewable=False, _quantity=2),
|
||||||
]
|
]
|
||||||
|
|
||||||
def test_admin_user(self, users: list[User]):
|
def test_admin_user(self, users: list[User]):
|
||||||
user = baker.make(
|
user = baker.make(
|
||||||
User,
|
User, user_permissions=[Permission.objects.get(codename="view_hidden_user")]
|
||||||
user_permissions=[Permission.objects.get(codename="view_hidden_user")],
|
|
||||||
)
|
)
|
||||||
viewable = User.objects.filter(id__in=[u.id for u in users]).viewable_by(user)
|
viewable = User.objects.filter(id__in=[u.id for u in users]).viewable_by(user)
|
||||||
assert set(viewable) == set(users)
|
assert set(viewable) == set(users)
|
||||||
@@ -418,6 +417,12 @@ class TestUserQuerySetViewableBy:
|
|||||||
viewable = User.objects.filter(id__in=[u.id for u in users]).viewable_by(user)
|
viewable = User.objects.filter(id__in=[u.id for u in users]).viewable_by(user)
|
||||||
assert set(viewable) == {users[0], users[1]}
|
assert set(viewable) == {users[0], users[1]}
|
||||||
|
|
||||||
|
def test_whitelist(self, users: list[User]):
|
||||||
|
user = subscriber_user.make()
|
||||||
|
users[3].whitelisted_users.add(user)
|
||||||
|
viewable = User.objects.filter(id__in=[u.id for u in users]).viewable_by(user)
|
||||||
|
assert set(viewable) == {users[0], users[1], users[3]}
|
||||||
|
|
||||||
@pytest.mark.parametrize("user_factory", [lambda: baker.make(User), AnonymousUser])
|
@pytest.mark.parametrize("user_factory", [lambda: baker.make(User), AnonymousUser])
|
||||||
def test_not_subscriber(self, users: list[User], user_factory):
|
def test_not_subscriber(self, users: list[User], user_factory):
|
||||||
user = user_factory()
|
user = user_factory()
|
||||||
|
|||||||
@@ -69,7 +69,6 @@ from core.views import (
|
|||||||
UserCreationView,
|
UserCreationView,
|
||||||
UserGodfathersTreeView,
|
UserGodfathersTreeView,
|
||||||
UserGodfathersView,
|
UserGodfathersView,
|
||||||
UserListView,
|
|
||||||
UserMeRedirect,
|
UserMeRedirect,
|
||||||
UserMiniView,
|
UserMiniView,
|
||||||
UserPreferencesView,
|
UserPreferencesView,
|
||||||
@@ -78,6 +77,7 @@ from core.views import (
|
|||||||
UserUpdateGroupView,
|
UserUpdateGroupView,
|
||||||
UserUpdateProfileView,
|
UserUpdateProfileView,
|
||||||
UserView,
|
UserView,
|
||||||
|
UserVisibilityFormFragment,
|
||||||
delete_user_godfather,
|
delete_user_godfather,
|
||||||
logout,
|
logout,
|
||||||
notification,
|
notification,
|
||||||
@@ -136,7 +136,11 @@ urlpatterns = [
|
|||||||
"group/<int:group_id>/detail/", GroupTemplateView.as_view(), name="group_detail"
|
"group/<int:group_id>/detail/", GroupTemplateView.as_view(), name="group_detail"
|
||||||
),
|
),
|
||||||
# User views
|
# User views
|
||||||
path("user/", UserListView.as_view(), name="user_list"),
|
path(
|
||||||
|
"fragment/user/<int:user_id>/",
|
||||||
|
UserVisibilityFormFragment.as_view(),
|
||||||
|
name="user_visibility_fragment",
|
||||||
|
),
|
||||||
path(
|
path(
|
||||||
"user/me/<path:remaining_path>/",
|
"user/me/<path:remaining_path>/",
|
||||||
UserMeRedirect.as_view(),
|
UserMeRedirect.as_view(),
|
||||||
|
|||||||
@@ -12,22 +12,32 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import hmac
|
||||||
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 Final
|
from typing import TYPE_CHECKING
|
||||||
|
from urllib.parse import urlencode
|
||||||
|
|
||||||
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.http import HttpRequest
|
|
||||||
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
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from _hashlib import HASH
|
||||||
|
from collections.abc import Buffer, Mapping, Sequence
|
||||||
|
from typing import Any, Callable, Final
|
||||||
|
|
||||||
|
from django.core.files.uploadedfile import UploadedFile
|
||||||
|
from django.http import HttpRequest
|
||||||
|
|
||||||
|
|
||||||
RED_PIXEL_PNG: Final[bytes] = (
|
RED_PIXEL_PNG: Final[bytes] = (
|
||||||
b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52"
|
b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52"
|
||||||
b"\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90\x77\x53"
|
b"\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90\x77\x53"
|
||||||
@@ -205,3 +215,30 @@ def get_client_ip(request: HttpRequest) -> str | None:
|
|||||||
return ip
|
return ip
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def hmac_hexdigest(
|
||||||
|
key: str | bytes,
|
||||||
|
data: Mapping[str, Any] | Sequence[tuple[str, Any]],
|
||||||
|
digest: str | Callable[[Buffer], HASH] = "sha512",
|
||||||
|
) -> str:
|
||||||
|
"""Return the hexdigest of the signature of the given data.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
key: the HMAC key used for the signature
|
||||||
|
data: the data to sign
|
||||||
|
digest: a PEP247 hashing algorithm (by default, sha512)
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
```python
|
||||||
|
data = {
|
||||||
|
"foo": 5,
|
||||||
|
"bar": "somevalue",
|
||||||
|
}
|
||||||
|
hmac_key = secrets.token_hex(64)
|
||||||
|
signature = hmac_hexdigest(hmac_key, data, "sha256")
|
||||||
|
```
|
||||||
|
"""
|
||||||
|
if isinstance(key, str):
|
||||||
|
key = key.encode()
|
||||||
|
return hmac.digest(key, urlencode(data).encode(), digest).hex()
|
||||||
|
|||||||
@@ -40,19 +40,21 @@ from django.forms import (
|
|||||||
DateInput,
|
DateInput,
|
||||||
DateTimeInput,
|
DateTimeInput,
|
||||||
TextInput,
|
TextInput,
|
||||||
|
Widget,
|
||||||
)
|
)
|
||||||
from django.utils.timezone import localtime, now
|
from django.utils.timezone import now
|
||||||
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
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
from antispam.forms import AntiSpamEmailField
|
from antispam.forms import AntiSpamEmailField
|
||||||
from core.models import Gift, Group, Page, PageRev, SithFile, User
|
from core.models import Gift, Group, Page, PageRev, Preferences, SithFile, User
|
||||||
from core.utils import resize_image
|
from core.utils import resize_image
|
||||||
from core.views.widgets.ajax_select import (
|
from core.views.widgets.ajax_select import (
|
||||||
AutoCompleteSelect,
|
AutoCompleteSelect,
|
||||||
AutoCompleteSelectGroup,
|
AutoCompleteSelectGroup,
|
||||||
AutoCompleteSelectMultipleGroup,
|
AutoCompleteSelectMultipleGroup,
|
||||||
|
AutoCompleteSelectMultipleUser,
|
||||||
AutoCompleteSelectUser,
|
AutoCompleteSelectUser,
|
||||||
)
|
)
|
||||||
from core.views.widgets.markdown import MarkdownInput
|
from core.views.widgets.markdown import MarkdownInput
|
||||||
@@ -99,8 +101,8 @@ class FutureDateTimeField(forms.DateTimeField):
|
|||||||
|
|
||||||
default_validators = [validate_future_timestamp]
|
default_validators = [validate_future_timestamp]
|
||||||
|
|
||||||
def widget_attrs(self, widget: forms.Widget) -> dict[str, str]:
|
def widget_attrs(self, widget: Widget) -> dict[str, str]:
|
||||||
return {"min": widget.format_value(localtime())}
|
return {"min": widget.format_value(now())}
|
||||||
|
|
||||||
|
|
||||||
# Forms
|
# Forms
|
||||||
@@ -178,7 +180,6 @@ class UserProfileForm(forms.ModelForm):
|
|||||||
"school",
|
"school",
|
||||||
"promo",
|
"promo",
|
||||||
"forum_signature",
|
"forum_signature",
|
||||||
"is_viewable",
|
|
||||||
]
|
]
|
||||||
widgets = {
|
widgets = {
|
||||||
"date_of_birth": SelectDate,
|
"date_of_birth": SelectDate,
|
||||||
@@ -263,6 +264,38 @@ class UserProfileForm(forms.ModelForm):
|
|||||||
self._post_clean()
|
self._post_clean()
|
||||||
|
|
||||||
|
|
||||||
|
class UserVisibilityForm(forms.ModelForm):
|
||||||
|
class Meta:
|
||||||
|
model = User
|
||||||
|
fields = ["is_viewable", "whitelisted_users"]
|
||||||
|
widgets = {
|
||||||
|
"is_viewable": forms.CheckboxInput(attrs={"class": "switch"}),
|
||||||
|
"whitelisted_users": AutoCompleteSelectMultipleUser,
|
||||||
|
}
|
||||||
|
|
||||||
|
__preferences_fields = forms.fields_for_model(
|
||||||
|
Preferences,
|
||||||
|
["show_my_stats"],
|
||||||
|
widgets={"show_my_stats": forms.CheckboxInput(attrs={"class": "switch"})},
|
||||||
|
)
|
||||||
|
show_my_stats = __preferences_fields["show_my_stats"]
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self, *args, initial: dict | None = None, instance: User | None = None, **kwargs
|
||||||
|
):
|
||||||
|
if instance:
|
||||||
|
initial = initial or {}
|
||||||
|
initial["show_my_stats"] = instance.preferences.show_my_stats
|
||||||
|
super().__init__(*args, initial=initial, instance=instance, **kwargs)
|
||||||
|
|
||||||
|
def save(self, commit=True) -> User: # noqa: FBT002
|
||||||
|
instance = super().save(commit=commit)
|
||||||
|
if commit:
|
||||||
|
instance.preferences.show_my_stats = self.cleaned_data["show_my_stats"]
|
||||||
|
instance.preferences.save()
|
||||||
|
return instance
|
||||||
|
|
||||||
|
|
||||||
class UserGroupsForm(forms.ModelForm):
|
class UserGroupsForm(forms.ModelForm):
|
||||||
error_css_class = "error"
|
error_css_class = "error"
|
||||||
required_css_class = "required"
|
required_css_class = "required"
|
||||||
|
|||||||
@@ -78,7 +78,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
|
||||||
|
|||||||
@@ -28,10 +28,12 @@ from datetime import timedelta
|
|||||||
from operator import itemgetter
|
from operator import itemgetter
|
||||||
from smtplib import SMTPException
|
from smtplib import SMTPException
|
||||||
|
|
||||||
|
from django.contrib import messages
|
||||||
from django.contrib.auth import login, views
|
from django.contrib.auth import login, views
|
||||||
from django.contrib.auth.decorators import login_required
|
from django.contrib.auth.decorators import login_required
|
||||||
from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm
|
from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm
|
||||||
from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
|
from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
|
||||||
|
from django.contrib.messages.views import SuccessMessageMixin
|
||||||
from django.core.exceptions import PermissionDenied
|
from django.core.exceptions import PermissionDenied
|
||||||
from django.db.models import DateField, F, QuerySet, Sum
|
from django.db.models import DateField, F, QuerySet, Sum
|
||||||
from django.db.models.functions import Trunc
|
from django.db.models.functions import Trunc
|
||||||
@@ -48,7 +50,6 @@ from django.views.generic import (
|
|||||||
CreateView,
|
CreateView,
|
||||||
DeleteView,
|
DeleteView,
|
||||||
DetailView,
|
DetailView,
|
||||||
ListView,
|
|
||||||
RedirectView,
|
RedirectView,
|
||||||
TemplateView,
|
TemplateView,
|
||||||
)
|
)
|
||||||
@@ -65,8 +66,9 @@ from core.views.forms import (
|
|||||||
UserGodfathersForm,
|
UserGodfathersForm,
|
||||||
UserGroupsForm,
|
UserGroupsForm,
|
||||||
UserProfileForm,
|
UserProfileForm,
|
||||||
|
UserVisibilityForm,
|
||||||
)
|
)
|
||||||
from core.views.mixins import TabedViewMixin, UseFragmentsMixin
|
from core.views.mixins import FragmentMixin, TabedViewMixin, UseFragmentsMixin
|
||||||
from counter.models import Refilling, Selling
|
from counter.models import Refilling, Selling
|
||||||
from eboutic.models import Invoice
|
from eboutic.models import Invoice
|
||||||
from trombi.views import UserTrombiForm
|
from trombi.views import UserTrombiForm
|
||||||
@@ -248,14 +250,15 @@ class UserTabsMixin(TabedViewMixin):
|
|||||||
"name": _("Groups"),
|
"name": _("Groups"),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
if (
|
can_view_account = (
|
||||||
hasattr(user, "customer")
|
hasattr(user, "customer")
|
||||||
and user.customer
|
and user.customer
|
||||||
and (
|
and (
|
||||||
user == self.request.user
|
user == self.request.user
|
||||||
or self.request.user.has_perm("counter.view_customer")
|
or self.request.user.has_perm("counter.view_customer")
|
||||||
)
|
)
|
||||||
):
|
)
|
||||||
|
if can_view_account or user.preferences.show_my_stats:
|
||||||
tab_list.append(
|
tab_list.append(
|
||||||
{
|
{
|
||||||
"url": reverse("core:user_stats", kwargs={"user_id": user.id}),
|
"url": reverse("core:user_stats", kwargs={"user_id": user.id}),
|
||||||
@@ -263,6 +266,7 @@ class UserTabsMixin(TabedViewMixin):
|
|||||||
"name": _("Stats"),
|
"name": _("Stats"),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
if can_view_account:
|
||||||
tab_list.append(
|
tab_list.append(
|
||||||
{
|
{
|
||||||
"url": reverse("core:user_account", kwargs={"user_id": user.id}),
|
"url": reverse("core:user_account", kwargs={"user_id": user.id}),
|
||||||
@@ -349,7 +353,7 @@ class UserGodfathersTreeView(UserTabsMixin, CanViewMixin, DetailView):
|
|||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
|
|
||||||
class UserStatsView(UserTabsMixin, CanViewMixin, DetailView):
|
class UserStatsView(UserTabsMixin, UserPassesTestMixin, DetailView):
|
||||||
"""Display a user's stats."""
|
"""Display a user's stats."""
|
||||||
|
|
||||||
model = User
|
model = User
|
||||||
@@ -357,15 +361,20 @@ class UserStatsView(UserTabsMixin, CanViewMixin, DetailView):
|
|||||||
context_object_name = "profile"
|
context_object_name = "profile"
|
||||||
template_name = "core/user_stats.jinja"
|
template_name = "core/user_stats.jinja"
|
||||||
current_tab = "stats"
|
current_tab = "stats"
|
||||||
queryset = User.objects.exclude(customer=None).select_related("customer")
|
queryset = User.objects.exclude(customer=None).select_related(
|
||||||
|
"customer", "_preferences"
|
||||||
|
)
|
||||||
|
|
||||||
def dispatch(self, request, *arg, **kwargs):
|
def test_func(self):
|
||||||
profile = self.get_object()
|
profile: User = self.get_object()
|
||||||
if not (
|
return (
|
||||||
profile == request.user or request.user.has_perm("counter.view_customer")
|
profile == self.request.user
|
||||||
):
|
or self.request.user.has_perm("counter.view_customer")
|
||||||
raise PermissionDenied
|
or (
|
||||||
return super().dispatch(request, *arg, **kwargs)
|
self.request.user.can_view(profile)
|
||||||
|
and profile.preferences.show_my_stats
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super().get_context_data(**kwargs)
|
kwargs = super().get_context_data(**kwargs)
|
||||||
@@ -404,13 +413,6 @@ class UserMiniView(CanViewMixin, DetailView):
|
|||||||
template_name = "core/user_mini.jinja"
|
template_name = "core/user_mini.jinja"
|
||||||
|
|
||||||
|
|
||||||
class UserListView(ListView, CanEditPropMixin):
|
|
||||||
"""Displays the user list."""
|
|
||||||
|
|
||||||
model = User
|
|
||||||
template_name = "core/user_list.jinja"
|
|
||||||
|
|
||||||
|
|
||||||
# FIXME: the edit_once fields aren't displayed to the user (as expected).
|
# FIXME: the edit_once fields aren't displayed to the user (as expected).
|
||||||
# However, if the user re-add them manually in the form, they are saved.
|
# However, if the user re-add them manually in the form, they are saved.
|
||||||
class UserUpdateProfileView(UserTabsMixin, CanEditMixin, UpdateView):
|
class UserUpdateProfileView(UserTabsMixin, CanEditMixin, UpdateView):
|
||||||
@@ -468,6 +470,30 @@ class UserClubView(UserTabsMixin, CanViewMixin, DetailView):
|
|||||||
current_tab = "clubs"
|
current_tab = "clubs"
|
||||||
|
|
||||||
|
|
||||||
|
class UserVisibilityFormFragment(FragmentMixin, SuccessMessageMixin, UpdateView):
|
||||||
|
model = User
|
||||||
|
form_class = UserVisibilityForm
|
||||||
|
template_name = "core/fragment/user_visibility.jinja"
|
||||||
|
pk_url_kwarg = "user_id"
|
||||||
|
|
||||||
|
def get_form_kwargs(self):
|
||||||
|
return super().get_form_kwargs() | {"label_suffix": ""}
|
||||||
|
|
||||||
|
def form_valid(self, form):
|
||||||
|
response = super().form_valid(form)
|
||||||
|
messages.success(
|
||||||
|
self.request, _("Visibility parameters updated."), extra_tags="visibility"
|
||||||
|
)
|
||||||
|
return response
|
||||||
|
|
||||||
|
def render_fragment(self, request, **kwargs) -> SafeString:
|
||||||
|
self.object = kwargs.get("user")
|
||||||
|
return super().render_fragment(request, **kwargs)
|
||||||
|
|
||||||
|
def get_success_url(self, **kwargs):
|
||||||
|
return self.request.path
|
||||||
|
|
||||||
|
|
||||||
class UserPreferencesView(UserTabsMixin, UseFragmentsMixin, CanEditMixin, UpdateView):
|
class UserPreferencesView(UserTabsMixin, UseFragmentsMixin, CanEditMixin, UpdateView):
|
||||||
"""Edit a user's preferences."""
|
"""Edit a user's preferences."""
|
||||||
|
|
||||||
@@ -481,7 +507,10 @@ class UserPreferencesView(UserTabsMixin, UseFragmentsMixin, CanEditMixin, Update
|
|||||||
current_tab = "prefs"
|
current_tab = "prefs"
|
||||||
|
|
||||||
def get_form_kwargs(self):
|
def get_form_kwargs(self):
|
||||||
return super().get_form_kwargs() | {"instance": self.object.preferences}
|
return super().get_form_kwargs() | {
|
||||||
|
"instance": self.object.preferences,
|
||||||
|
"label_suffix": "",
|
||||||
|
}
|
||||||
|
|
||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
return self.request.path
|
return self.request.path
|
||||||
@@ -491,6 +520,9 @@ class UserPreferencesView(UserTabsMixin, UseFragmentsMixin, CanEditMixin, Update
|
|||||||
from counter.views.student_card import StudentCardFormFragment
|
from counter.views.student_card import StudentCardFormFragment
|
||||||
|
|
||||||
res = super().get_fragment_context_data()
|
res = super().get_fragment_context_data()
|
||||||
|
res["user_visibility_fragment"] = UserVisibilityFormFragment.as_fragment()(
|
||||||
|
self.request, user=self.object
|
||||||
|
)
|
||||||
if hasattr(self.object, "customer"):
|
if hasattr(self.object, "customer"):
|
||||||
res["student_card_fragment"] = StudentCardFormFragment.as_fragment()(
|
res["student_card_fragment"] = StudentCardFormFragment.as_fragment()(
|
||||||
self.request, customer=self.object.customer
|
self.request, customer=self.object.customer
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ from datetime import date, datetime, timezone
|
|||||||
|
|
||||||
from dateutil.relativedelta import relativedelta
|
from dateutil.relativedelta import relativedelta
|
||||||
from django import forms
|
from django import forms
|
||||||
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.validators import MaxValueValidator
|
from django.core.validators import MaxValueValidator
|
||||||
from django.db.models import Exists, OuterRef, Q
|
from django.db.models import Exists, OuterRef, Q
|
||||||
from django.forms import BaseModelFormSet
|
from django.forms import BaseModelFormSet
|
||||||
@@ -15,7 +16,7 @@ from phonenumber_field.widgets import RegionalPhoneNumberWidget
|
|||||||
|
|
||||||
from club.models import Club
|
from club.models import Club
|
||||||
from club.widgets.ajax_select import AutoCompleteSelectClub
|
from club.widgets.ajax_select import AutoCompleteSelectClub
|
||||||
from core.models import User
|
from core.models import User, UserQuerySet
|
||||||
from core.views.forms import (
|
from core.views.forms import (
|
||||||
FutureDateTimeField,
|
FutureDateTimeField,
|
||||||
NFCTextInput,
|
NFCTextInput,
|
||||||
@@ -32,6 +33,7 @@ from core.views.widgets.ajax_select import (
|
|||||||
from counter.models import (
|
from counter.models import (
|
||||||
BillingInfo,
|
BillingInfo,
|
||||||
Counter,
|
Counter,
|
||||||
|
CounterSellers,
|
||||||
Customer,
|
Customer,
|
||||||
Eticket,
|
Eticket,
|
||||||
InvoiceCall,
|
InvoiceCall,
|
||||||
@@ -170,14 +172,39 @@ class RefillForm(forms.ModelForm):
|
|||||||
class CounterEditForm(forms.ModelForm):
|
class CounterEditForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Counter
|
model = Counter
|
||||||
fields = ["sellers", "products"]
|
fields = ["products"]
|
||||||
widgets = {"sellers": AutoCompleteSelectMultipleUser}
|
|
||||||
|
sellers_regular = forms.ModelMultipleChoiceField(
|
||||||
|
label=_("Regular barmen"),
|
||||||
|
help_text=_(
|
||||||
|
"Barmen having regular permanences "
|
||||||
|
"or frequently giving a hand throughout the semester."
|
||||||
|
),
|
||||||
|
queryset=User.objects.all(),
|
||||||
|
widget=AutoCompleteSelectMultipleUser,
|
||||||
|
required=False,
|
||||||
|
)
|
||||||
|
sellers_temporary = forms.ModelMultipleChoiceField(
|
||||||
|
label=_("Temporary barmen"),
|
||||||
|
help_text=_(
|
||||||
|
"Barmen who will be there only for a limited period (e.g. for one evening)"
|
||||||
|
),
|
||||||
|
queryset=User.objects.all(),
|
||||||
|
widget=AutoCompleteSelectMultipleUser,
|
||||||
|
required=False,
|
||||||
|
)
|
||||||
|
field_order = ["sellers_regular", "sellers_temporary", "products"]
|
||||||
|
|
||||||
def __init__(self, *args, user: User, instance: Counter, **kwargs):
|
def __init__(self, *args, user: User, instance: Counter, **kwargs):
|
||||||
super().__init__(*args, instance=instance, **kwargs)
|
super().__init__(*args, instance=instance, **kwargs)
|
||||||
|
# if the user is an admin, he will have access to all products,
|
||||||
|
# else only to active products owned by the counter's club
|
||||||
|
# or already on the counter
|
||||||
if user.has_perm("counter.change_counter"):
|
if user.has_perm("counter.change_counter"):
|
||||||
self.fields["products"].widget = AutoCompleteSelectMultipleProduct()
|
self.fields["products"].widget = AutoCompleteSelectMultipleProduct()
|
||||||
else:
|
else:
|
||||||
|
# updating the queryset of the field also updates the choices of
|
||||||
|
# the widget, so it's important to set the queryset after the widget
|
||||||
self.fields["products"].widget = AutoCompleteSelectMultiple()
|
self.fields["products"].widget = AutoCompleteSelectMultiple()
|
||||||
self.fields["products"].queryset = Product.objects.filter(
|
self.fields["products"].queryset = Product.objects.filter(
|
||||||
Q(club_id=instance.club_id) | Q(counters=instance), archived=False
|
Q(club_id=instance.club_id) | Q(counters=instance), archived=False
|
||||||
@@ -186,6 +213,61 @@ class CounterEditForm(forms.ModelForm):
|
|||||||
"If you want to add a product that is not owned by "
|
"If you want to add a product that is not owned by "
|
||||||
"your club to this counter, you should ask an admin."
|
"your club to this counter, you should ask an admin."
|
||||||
)
|
)
|
||||||
|
self.fields["sellers_regular"].initial = self.instance.sellers.filter(
|
||||||
|
countersellers__is_regular=True
|
||||||
|
).all()
|
||||||
|
self.fields["sellers_temporary"].initial = self.instance.sellers.filter(
|
||||||
|
countersellers__is_regular=False
|
||||||
|
).all()
|
||||||
|
|
||||||
|
def clean(self):
|
||||||
|
regular: UserQuerySet = self.cleaned_data["sellers_regular"]
|
||||||
|
temporary: UserQuerySet = self.cleaned_data["sellers_temporary"]
|
||||||
|
duplicates = list(regular.intersection(temporary))
|
||||||
|
if duplicates:
|
||||||
|
raise ValidationError(
|
||||||
|
_(
|
||||||
|
"A user cannot be a regular and a temporary barman "
|
||||||
|
"at the same time, "
|
||||||
|
"but the following users have been defined as both : %(users)s"
|
||||||
|
)
|
||||||
|
% {"users": ", ".join([u.get_display_name() for u in duplicates])}
|
||||||
|
)
|
||||||
|
return self.cleaned_data
|
||||||
|
|
||||||
|
def save_sellers(self):
|
||||||
|
sellers = []
|
||||||
|
for users, is_regular in (
|
||||||
|
(self.cleaned_data["sellers_regular"], True),
|
||||||
|
(self.cleaned_data["sellers_temporary"], False),
|
||||||
|
):
|
||||||
|
sellers.extend(
|
||||||
|
[
|
||||||
|
CounterSellers(counter=self.instance, user=u, is_regular=is_regular)
|
||||||
|
for u in users
|
||||||
|
]
|
||||||
|
)
|
||||||
|
# start by deleting removed CounterSellers objects
|
||||||
|
user_ids = [seller.user.id for seller in sellers]
|
||||||
|
CounterSellers.objects.filter(
|
||||||
|
~Q(user_id__in=user_ids), counter=self.instance
|
||||||
|
).delete()
|
||||||
|
|
||||||
|
# then create or update the new barmen
|
||||||
|
CounterSellers.objects.bulk_create(
|
||||||
|
sellers,
|
||||||
|
update_conflicts=True,
|
||||||
|
update_fields=["is_regular"],
|
||||||
|
unique_fields=["user", "counter"],
|
||||||
|
)
|
||||||
|
|
||||||
|
def save(self, commit=True): # noqa: FBT002
|
||||||
|
self.instance = super().save(commit=commit)
|
||||||
|
if commit and any(
|
||||||
|
key in self.changed_data for key in ("sellers_regular", "sellers_temporary")
|
||||||
|
):
|
||||||
|
self.save_sellers()
|
||||||
|
return self.instance
|
||||||
|
|
||||||
|
|
||||||
class ScheduledProductActionForm(forms.ModelForm):
|
class ScheduledProductActionForm(forms.ModelForm):
|
||||||
@@ -291,7 +373,8 @@ ScheduledProductActionFormSet = forms.modelformset_factory(
|
|||||||
absolute_max=None,
|
absolute_max=None,
|
||||||
can_delete=True,
|
can_delete=True,
|
||||||
can_delete_extra=False,
|
can_delete_extra=False,
|
||||||
extra=2,
|
extra=0,
|
||||||
|
min_num=1,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
88
counter/migrations/0038_countersellers.py
Normal file
88
counter/migrations/0038_countersellers.py
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
# Generated by Django 5.2.11 on 2026-03-04 15:26
|
||||||
|
|
||||||
|
import django.db.models.deletion
|
||||||
|
from django.conf import settings
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("counter", "0037_productformula"),
|
||||||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
# cf. https://docs.djangoproject.com/fr/stable/howto/writing-migrations/#changing-a-manytomanyfield-to-use-a-through-model
|
||||||
|
migrations.SeparateDatabaseAndState(
|
||||||
|
database_operations=[
|
||||||
|
migrations.RunSQL(
|
||||||
|
sql="ALTER TABLE counter_counter_sellers RENAME TO counter_countersellers",
|
||||||
|
reverse_sql="ALTER TABLE counter_countersellers RENAME TO counter_counter_sellers",
|
||||||
|
),
|
||||||
|
],
|
||||||
|
state_operations=[
|
||||||
|
migrations.CreateModel(
|
||||||
|
name="CounterSellers",
|
||||||
|
fields=[
|
||||||
|
(
|
||||||
|
"id",
|
||||||
|
models.AutoField(
|
||||||
|
auto_created=True,
|
||||||
|
primary_key=True,
|
||||||
|
serialize=False,
|
||||||
|
verbose_name="ID",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"counter",
|
||||||
|
models.ForeignKey(
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
to="counter.counter",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"user",
|
||||||
|
models.ForeignKey(
|
||||||
|
on_delete=django.db.models.deletion.CASCADE,
|
||||||
|
to=settings.AUTH_USER_MODEL,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
"constraints": [
|
||||||
|
models.UniqueConstraint(
|
||||||
|
fields=("counter", "user"),
|
||||||
|
name="counter_counter_sellers_counter_id_subscriber_id_key",
|
||||||
|
)
|
||||||
|
],
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="counter",
|
||||||
|
name="sellers",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
blank=True,
|
||||||
|
related_name="counters",
|
||||||
|
through="counter.CounterSellers",
|
||||||
|
to=settings.AUTH_USER_MODEL,
|
||||||
|
verbose_name="sellers",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="countersellers",
|
||||||
|
name="created_at",
|
||||||
|
field=models.DateTimeField(
|
||||||
|
auto_now_add=True,
|
||||||
|
default=django.utils.timezone.now,
|
||||||
|
verbose_name="created at",
|
||||||
|
),
|
||||||
|
preserve_default=False,
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="countersellers",
|
||||||
|
name="is_regular",
|
||||||
|
field=models.BooleanField(default=False, verbose_name="regular barman"),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -551,7 +551,11 @@ class Counter(models.Model):
|
|||||||
choices=[("BAR", _("Bar")), ("OFFICE", _("Office")), ("EBOUTIC", _("Eboutic"))],
|
choices=[("BAR", _("Bar")), ("OFFICE", _("Office")), ("EBOUTIC", _("Eboutic"))],
|
||||||
)
|
)
|
||||||
sellers = models.ManyToManyField(
|
sellers = models.ManyToManyField(
|
||||||
User, verbose_name=_("sellers"), related_name="counters", blank=True
|
User,
|
||||||
|
verbose_name=_("sellers"),
|
||||||
|
related_name="counters",
|
||||||
|
blank=True,
|
||||||
|
through="CounterSellers",
|
||||||
)
|
)
|
||||||
edit_groups = models.ManyToManyField(
|
edit_groups = models.ManyToManyField(
|
||||||
Group, related_name="editable_counters", blank=True
|
Group, related_name="editable_counters", blank=True
|
||||||
@@ -743,6 +747,26 @@ class Counter(models.Model):
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
class CounterSellers(models.Model):
|
||||||
|
"""Custom through model for the counter-sellers M2M relationship."""
|
||||||
|
|
||||||
|
counter = models.ForeignKey(Counter, on_delete=models.CASCADE)
|
||||||
|
user = models.ForeignKey(User, on_delete=models.CASCADE)
|
||||||
|
is_regular = models.BooleanField(_("regular barman"), default=False)
|
||||||
|
created_at = models.DateTimeField(_("created at"), auto_now_add=True)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
constraints = [
|
||||||
|
models.UniqueConstraint(
|
||||||
|
fields=["counter", "user"],
|
||||||
|
name="counter_counter_sellers_counter_id_subscriber_id_key",
|
||||||
|
)
|
||||||
|
]
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return f"counter {self.counter_id} - user {self.user_id}"
|
||||||
|
|
||||||
|
|
||||||
class RefillingQuerySet(models.QuerySet):
|
class RefillingQuerySet(models.QuerySet):
|
||||||
def annotate_total(self) -> Self:
|
def annotate_total(self) -> Self:
|
||||||
"""Annotate the Queryset with the total amount.
|
"""Annotate the Queryset with the total amount.
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ document.addEventListener("alpine:init", () => {
|
|||||||
|
|
||||||
checkFormulas() {
|
checkFormulas() {
|
||||||
const products = new Set(
|
const products = new Set(
|
||||||
Object.keys(this.basket).map((i: string) => Number.parseInt(i)),
|
Object.keys(this.basket).map((i: string) => Number.parseInt(i, 10)),
|
||||||
);
|
);
|
||||||
const formula: ProductFormula = config.formulas.find((f: ProductFormula) => {
|
const formula: ProductFormula = config.formulas.find((f: ProductFormula) => {
|
||||||
return f.products.every((p: number) => products.has(p));
|
return f.products.every((p: number) => products.has(p));
|
||||||
|
|||||||
@@ -1,5 +1,44 @@
|
|||||||
{% extends "core/base.jinja" %}
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
|
{% block additional_js %}
|
||||||
|
<script type="module" src="{{ static("bundled/core/dynamic-formset-index.ts") }}"></script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
{% macro action_form(form) %}
|
||||||
|
<fieldset x-data="{action: '{{ form.task.initial }}'}">
|
||||||
|
{{ form.non_field_errors() }}
|
||||||
|
<div class="row gap-2x margin-bottom">
|
||||||
|
<div>
|
||||||
|
{{ form.task.errors }}
|
||||||
|
{{ form.task.label_tag() }}
|
||||||
|
{{ form.task|add_attr("x-model=action") }}
|
||||||
|
</div>
|
||||||
|
<div>{{ form.trigger_at.as_field_group() }}</div>
|
||||||
|
</div>
|
||||||
|
<div x-show="action==='counter.tasks.change_counters'" class="margin-bottom">
|
||||||
|
{{ form.counters.as_field_group() }}
|
||||||
|
</div>
|
||||||
|
{%- if form.DELETE -%}
|
||||||
|
<div class="row gap">
|
||||||
|
{{ form.DELETE.as_field_group() }}
|
||||||
|
</div>
|
||||||
|
{%- else -%}
|
||||||
|
<button
|
||||||
|
class="btn btn-grey"
|
||||||
|
@click.prevent="removeForm($event.target.closest('fieldset'))"
|
||||||
|
>
|
||||||
|
<i class="fa fa-minus"></i>{% trans %}Remove this action{% endtrans %}
|
||||||
|
</button>
|
||||||
|
{%- endif -%}
|
||||||
|
{%- for field in form.hidden_fields() -%}
|
||||||
|
{{ field }}
|
||||||
|
{%- endfor -%}
|
||||||
|
<hr />
|
||||||
|
</fieldset>
|
||||||
|
{% endmacro %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if object %}
|
{% if object %}
|
||||||
<h2>{% trans name=object %}Edit product {{ name }}{% endtrans %}</h2>
|
<h2>{% trans name=object %}Edit product {{ name }}{% endtrans %}</h2>
|
||||||
@@ -25,34 +64,20 @@
|
|||||||
</em>
|
</em>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{{ form.action_formset.management_form }}
|
<div x-data="dynamicFormSet" class="margin-bottom">
|
||||||
{%- for action_form in form.action_formset.forms -%}
|
{{ form.action_formset.management_form }}
|
||||||
<fieldset x-data="{action: '{{ action_form.task.initial }}'}">
|
<div x-ref="formContainer">
|
||||||
{{ action_form.non_field_errors() }}
|
{%- for f in form.action_formset.forms -%}
|
||||||
<div class="row gap-2x margin-bottom">
|
{{ action_form(f) }}
|
||||||
<div>
|
|
||||||
{{ action_form.task.errors }}
|
|
||||||
{{ action_form.task.label_tag() }}
|
|
||||||
{{ action_form.task|add_attr("x-model=action") }}
|
|
||||||
</div>
|
|
||||||
<div>{{ action_form.trigger_at.as_field_group() }}</div>
|
|
||||||
</div>
|
|
||||||
<div x-show="action==='counter.tasks.change_counters'" class="margin-bottom">
|
|
||||||
{{ action_form.counters.as_field_group() }}
|
|
||||||
</div>
|
|
||||||
{%- if action_form.DELETE -%}
|
|
||||||
<div class="row gap">
|
|
||||||
{{ action_form.DELETE.as_field_group() }}
|
|
||||||
</div>
|
|
||||||
{%- endif -%}
|
|
||||||
{%- for field in action_form.hidden_fields() -%}
|
|
||||||
{{ field }}
|
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</fieldset>
|
</div>
|
||||||
{%- if not loop.last -%}
|
<template x-ref="formTemplate">
|
||||||
<hr class="margin-bottom">
|
{{ action_form(form.action_formset.empty_form) }}
|
||||||
{%- endif -%}
|
</template>
|
||||||
{%- endfor -%}
|
<button @click.prevent="addForm()" class="btn btn-grey">
|
||||||
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
<i class="fa fa-plus"></i>{% trans %}Add action{% endtrans %}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<p><input class="btn btn-blue" type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -1,13 +1,132 @@
|
|||||||
|
from django.conf import settings
|
||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
from django.urls import reverse
|
||||||
from model_bakery import baker
|
from model_bakery import baker
|
||||||
|
|
||||||
from club.models import Membership
|
from club.models import Membership
|
||||||
from core.baker_recipes import subscriber_user
|
from core.baker_recipes import subscriber_user
|
||||||
from core.models import User
|
from core.models import Group, User
|
||||||
from counter.baker_recipes import product_recipe
|
from counter.baker_recipes import product_recipe
|
||||||
from counter.forms import CounterEditForm
|
from counter.forms import CounterEditForm
|
||||||
from counter.models import Counter
|
from counter.models import Counter, CounterSellers
|
||||||
|
|
||||||
|
|
||||||
|
class TestEditCounterSellers(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
cls.counter = baker.make(Counter, type="BAR")
|
||||||
|
cls.products = product_recipe.make(_quantity=2, _bulk_create=True)
|
||||||
|
cls.counter.products.add(*cls.products)
|
||||||
|
users = subscriber_user.make(_quantity=6, _bulk_create=True)
|
||||||
|
cls.regular_barmen = users[:2]
|
||||||
|
cls.tmp_barmen = users[2:4]
|
||||||
|
cls.not_barmen = users[4:]
|
||||||
|
CounterSellers.objects.bulk_create(
|
||||||
|
[
|
||||||
|
*baker.prepare(
|
||||||
|
CounterSellers,
|
||||||
|
counter=cls.counter,
|
||||||
|
user=iter(cls.regular_barmen),
|
||||||
|
is_regular=True,
|
||||||
|
_quantity=len(cls.regular_barmen),
|
||||||
|
),
|
||||||
|
*baker.prepare(
|
||||||
|
CounterSellers,
|
||||||
|
counter=cls.counter,
|
||||||
|
user=iter(cls.tmp_barmen),
|
||||||
|
is_regular=False,
|
||||||
|
_quantity=len(cls.tmp_barmen),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
cls.operator = baker.make(
|
||||||
|
User, groups=[Group.objects.get(id=settings.SITH_GROUP_COUNTER_ADMIN_ID)]
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_view_ok(self):
|
||||||
|
url = reverse("counter:admin", kwargs={"counter_id": self.counter.id})
|
||||||
|
self.client.force_login(self.operator)
|
||||||
|
res = self.client.get(url)
|
||||||
|
assert res.status_code == 200
|
||||||
|
res = self.client.post(
|
||||||
|
url,
|
||||||
|
data={
|
||||||
|
"sellers_regular": [u.id for u in self.regular_barmen],
|
||||||
|
"sellers_temporary": [u.id for u in self.tmp_barmen],
|
||||||
|
"products": [p.id for p in self.products],
|
||||||
|
},
|
||||||
|
)
|
||||||
|
self.assertRedirects(res, url)
|
||||||
|
|
||||||
|
def test_add_barmen(self):
|
||||||
|
form = CounterEditForm(
|
||||||
|
data={
|
||||||
|
"sellers_regular": [*self.regular_barmen, self.not_barmen[0]],
|
||||||
|
"sellers_temporary": [*self.tmp_barmen, self.not_barmen[1]],
|
||||||
|
"products": self.products,
|
||||||
|
},
|
||||||
|
instance=self.counter,
|
||||||
|
user=self.operator,
|
||||||
|
)
|
||||||
|
assert form.is_valid()
|
||||||
|
form.save()
|
||||||
|
assert set(self.counter.sellers.filter(countersellers__is_regular=True)) == {
|
||||||
|
*self.regular_barmen,
|
||||||
|
self.not_barmen[0],
|
||||||
|
}
|
||||||
|
assert set(self.counter.sellers.filter(countersellers__is_regular=False)) == {
|
||||||
|
*self.tmp_barmen,
|
||||||
|
self.not_barmen[1],
|
||||||
|
}
|
||||||
|
|
||||||
|
def test_barman_change_status(self):
|
||||||
|
"""Test when a barman goes from temporary to regular"""
|
||||||
|
form = CounterEditForm(
|
||||||
|
data={
|
||||||
|
"sellers_regular": [*self.regular_barmen, self.tmp_barmen[0]],
|
||||||
|
"sellers_temporary": [*self.tmp_barmen[1:]],
|
||||||
|
"products": self.products,
|
||||||
|
},
|
||||||
|
instance=self.counter,
|
||||||
|
user=self.operator,
|
||||||
|
)
|
||||||
|
assert form.is_valid()
|
||||||
|
form.save()
|
||||||
|
assert set(self.counter.sellers.filter(countersellers__is_regular=True)) == {
|
||||||
|
*self.regular_barmen,
|
||||||
|
self.tmp_barmen[0],
|
||||||
|
}
|
||||||
|
assert set(
|
||||||
|
self.counter.sellers.filter(countersellers__is_regular=False)
|
||||||
|
) == set(self.tmp_barmen[1:])
|
||||||
|
|
||||||
|
def test_barman_duplicate(self):
|
||||||
|
"""Test that a barman cannot be regular and temporary at the same time."""
|
||||||
|
form = CounterEditForm(
|
||||||
|
data={
|
||||||
|
"sellers_regular": [*self.regular_barmen, self.not_barmen[0]],
|
||||||
|
"sellers_temporary": [*self.tmp_barmen, self.not_barmen[0]],
|
||||||
|
"products": self.products,
|
||||||
|
},
|
||||||
|
instance=self.counter,
|
||||||
|
user=self.operator,
|
||||||
|
)
|
||||||
|
assert not form.is_valid()
|
||||||
|
assert form.errors == {
|
||||||
|
"__all__": [
|
||||||
|
"Un utilisateur ne peut pas être un barman "
|
||||||
|
"régulier et temporaire en même temps, "
|
||||||
|
"mais les utilisateurs suivants ont été définis "
|
||||||
|
f"comme les deux : {self.not_barmen[0].get_display_name()}"
|
||||||
|
],
|
||||||
|
}
|
||||||
|
assert set(self.counter.sellers.filter(countersellers__is_regular=True)) == set(
|
||||||
|
self.regular_barmen
|
||||||
|
)
|
||||||
|
assert set(
|
||||||
|
self.counter.sellers.filter(countersellers__is_regular=False)
|
||||||
|
) == set(self.tmp_barmen)
|
||||||
|
|
||||||
|
|
||||||
class TestEditCounterProducts(TestCase):
|
class TestEditCounterProducts(TestCase):
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ from datetime import datetime, timedelta
|
|||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib.auth.mixins import PermissionRequiredMixin, UserPassesTestMixin
|
from django.contrib.auth.mixins import PermissionRequiredMixin, UserPassesTestMixin
|
||||||
|
from django.contrib.messages.views import SuccessMessageMixin
|
||||||
from django.core.exceptions import PermissionDenied
|
from django.core.exceptions import PermissionDenied
|
||||||
from django.db import transaction
|
from django.db import transaction
|
||||||
from django.forms import CheckboxSelectMultiple
|
from django.forms import CheckboxSelectMultiple
|
||||||
@@ -58,7 +59,9 @@ class CounterListView(CounterAdminTabsMixin, CanViewMixin, ListView):
|
|||||||
current_tab = "counters"
|
current_tab = "counters"
|
||||||
|
|
||||||
|
|
||||||
class CounterEditView(CounterAdminTabsMixin, UserPassesTestMixin, UpdateView):
|
class CounterEditView(
|
||||||
|
CounterAdminTabsMixin, UserPassesTestMixin, SuccessMessageMixin, UpdateView
|
||||||
|
):
|
||||||
"""Edit a counter's main informations (for the counter's manager)."""
|
"""Edit a counter's main informations (for the counter's manager)."""
|
||||||
|
|
||||||
model = Counter
|
model = Counter
|
||||||
@@ -66,6 +69,7 @@ class CounterEditView(CounterAdminTabsMixin, UserPassesTestMixin, UpdateView):
|
|||||||
pk_url_kwarg = "counter_id"
|
pk_url_kwarg = "counter_id"
|
||||||
template_name = "core/edit.jinja"
|
template_name = "core/edit.jinja"
|
||||||
current_tab = "counters"
|
current_tab = "counters"
|
||||||
|
success_message = _("Counter update done")
|
||||||
|
|
||||||
def test_func(self):
|
def test_func(self):
|
||||||
if self.request.user.has_perm("counter.change_counter"):
|
if self.request.user.has_perm("counter.change_counter"):
|
||||||
|
|||||||
1
docs/reference/api/schemas.md
Normal file
1
docs/reference/api/schemas.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
::: api.schemas
|
||||||
1
docs/reference/api/views.md
Normal file
1
docs/reference/api/views.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
::: api.views
|
||||||
353
docs/tutorial/api/account-link.md
Normal file
353
docs/tutorial/api/account-link.md
Normal file
@@ -0,0 +1,353 @@
|
|||||||
|
Le site AE offre des mécanismes permettant aux applications tierces
|
||||||
|
de récupérer les informations sur un utilisateur du site AE.
|
||||||
|
De cette manière, il devient possible de synchroniser les informations
|
||||||
|
qu possède l'application tierce sur l'utilisateur, directement depuis
|
||||||
|
le site AE.
|
||||||
|
|
||||||
|
## Fonctionnement général
|
||||||
|
|
||||||
|
Pour authentifier vos utilisateurs, vous aurez besoin d'un serveur web
|
||||||
|
et d'un client d'API (celui auquel est liée votre
|
||||||
|
[clef d'API](./connect.md#obtenir-une-clef-dapi)).
|
||||||
|
Deux informations vous sont nécessaires, en plus de votre clef d'API :
|
||||||
|
|
||||||
|
- l'id du client : vous pouvez l'obtenir soit en le demandant à l'équipe info,
|
||||||
|
soit en appelant la route `GET /client/me` avec votre clef d'API
|
||||||
|
renseignée dans le header [X-APIKey](./connect.md#x-apikey)
|
||||||
|
- la clef HMAC du client : vous devez la demander à l'équipe info.
|
||||||
|
|
||||||
|
Grâce à ces informations, vous allez pouvoir fournir le contexte nécessaire
|
||||||
|
au site AE pour qu'il authentifie vos utilisateurs.
|
||||||
|
|
||||||
|
En effet, la démarche d'authentification s'effectue presque entièrement
|
||||||
|
sur le site : le travail de l'application tierce consiste uniquement
|
||||||
|
à fournir à l'utilisateur une url avec les bons paramètres, puis
|
||||||
|
à recevoir la réponse du serveur si tout s'est bien passé.
|
||||||
|
|
||||||
|
Comme un dessin vaut parfois mieux que mille mots,
|
||||||
|
voici les diagrammes décrivant le processus.
|
||||||
|
L'un montre l'entièreté de la démarche ;
|
||||||
|
l'autre dans un souci de simplicité, ne montre que ce qui est visible
|
||||||
|
directement par l'application tierce.
|
||||||
|
|
||||||
|
=== "Intégralité du processus"
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
sequenceDiagram
|
||||||
|
actor User
|
||||||
|
participant App
|
||||||
|
User->>+App: Authentifie-moi, stp
|
||||||
|
App-->>-User: url de connexion<br/>avec signature
|
||||||
|
User->>+Sith: GET url
|
||||||
|
opt Utilisateur non-connecté
|
||||||
|
Sith->>+User: Formulaire de connexion
|
||||||
|
User-->>-Sith: Connexion
|
||||||
|
end
|
||||||
|
Sith->>Sith: vérification de la signature
|
||||||
|
Sith->>+User: Formulaire<br/>des conditions<br/>d'utilisation
|
||||||
|
User-->>-Sith: Validation
|
||||||
|
Sith->>+App: URL de retour<br/>avec données utilisateur
|
||||||
|
App->>App: Traitement des <br/>données utilisateur
|
||||||
|
App-->>-Sith: 204 OK, No content
|
||||||
|
Sith-->>-User: Message de succès
|
||||||
|
App--)User: Message de succès
|
||||||
|
```
|
||||||
|
|
||||||
|
=== "Point de vue de l'application tierce"
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
sequenceDiagram
|
||||||
|
actor User
|
||||||
|
participant App
|
||||||
|
User->>+App: Authentifie-moi, stp
|
||||||
|
App-->>-User: url de connexion<br/>avec signature
|
||||||
|
opt
|
||||||
|
Sith->>+App: URL de retour<br/>avec données utilisateur
|
||||||
|
App->>App: Traitement des <br/>données utilisateur
|
||||||
|
App-->>-Sith: 204 OK, No content
|
||||||
|
App--)User: Message de succès
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
## Données attendues
|
||||||
|
|
||||||
|
### URL de connexion
|
||||||
|
|
||||||
|
L'URL de connexion que vous allez fournir à l'utilisateur doit
|
||||||
|
être `https://ae.utbm.fr/api-link/auth/`
|
||||||
|
et doit contenir les données décrites dans
|
||||||
|
[`ThirdPartyAuthParamsSchema`][api.schemas.ThirdPartyAuthParamsSchema] :
|
||||||
|
|
||||||
|
- `client_id` (integer) : l'id de votre client, que vous pouvez obtenir
|
||||||
|
de la manière décrite plus haut
|
||||||
|
- `third_party_app`(string) : le nom de la plateforme pour laquelle
|
||||||
|
l'authentification va être réalisée (si votre application est un bot
|
||||||
|
discord, mettez la valeur "discord")
|
||||||
|
- `privacy_link`(URL) : l'URL vers la page de politique de confidentialité
|
||||||
|
qui s'appliquera dans le cadre de l'application
|
||||||
|
(s'il s'agit d'un bot discord, donnez le lien vers celles de Discord)
|
||||||
|
- `username`(string) : le pseudonyme que l'utilisateur possède sur
|
||||||
|
votre application
|
||||||
|
- `callback_url`(URL) : l'URL que le site AE appellera si l'authentification
|
||||||
|
réussit
|
||||||
|
- `signature`(string) : la signature des données de la requête.
|
||||||
|
|
||||||
|
Ces données doivent être url-encodées et passées dans les paramètres GET.
|
||||||
|
|
||||||
|
!!!tip "URL de retour"
|
||||||
|
|
||||||
|
Notre système n'impose aucune contrainte quant à la manière
|
||||||
|
de construire votre URL (hormis le fait que ce doit être une URL HTTPS valide),
|
||||||
|
mais il est tout de même conseillé d'utiliser l'identifiant de votre
|
||||||
|
utilisateur comme paramètre dans l'URL
|
||||||
|
(par exemple `GET /callback/{int:user_id}/`).
|
||||||
|
|
||||||
|
???Example
|
||||||
|
|
||||||
|
Supposons que votre client d'API soit utilisé dans le cadre d'un bot Discord,
|
||||||
|
avec les données suivantes :
|
||||||
|
|
||||||
|
- l'id du client est 15
|
||||||
|
- sa clef HMAC est "beb99dd53"
|
||||||
|
(c'est pour l'exemple, une vraie clef sera beaucoup plus longue)
|
||||||
|
- le pseudonyme discord de votre utilisateur est Brian
|
||||||
|
- son id sur discord est 123456789
|
||||||
|
- votre route de callback est `GET /callback/{int:user_id}/`,
|
||||||
|
accessible au domaine `https://bot.ae.utbm.fr`
|
||||||
|
|
||||||
|
Alors les paramètres de votre URL seront :
|
||||||
|
|
||||||
|
| Paramètre | valeur |
|
||||||
|
|-----------------|-----------------------------------------------------------------------|
|
||||||
|
| client_id | 15 |
|
||||||
|
| third_party_app | discord |
|
||||||
|
| privacy_link | `https://discord.com/privacy` |
|
||||||
|
| username | Brian |
|
||||||
|
| callback_url | `https://bot.ae.utbm.fr/callback/123456789/` |
|
||||||
|
| signature | 1a383c51060be64f07772aa42e07<br/>18ae096b8f21f2cdb4061c0834a416d12101 |
|
||||||
|
|
||||||
|
Et l'url fournie à l'utilisateur sera :
|
||||||
|
|
||||||
|
`https://ae.utbm.fr/api-link/auth/?client_id=15&third_party_app=discord
|
||||||
|
&privacy_link=https%3A%2F%2Fdiscord.com%2Fprivacy&username=Brian
|
||||||
|
&callback_url=https%3A%2F%2Fbot.ae.utbm.fr%2Fcallback%2F123456789%2F
|
||||||
|
&signature=1a383c51060be64f07772aa42e0718ae096b8f21f2cdb4061c0834a416d12101`
|
||||||
|
|
||||||
|
### Données de retour
|
||||||
|
|
||||||
|
Si l'authentification réussit, le site AE enverra une requête HTTP POST
|
||||||
|
à l'URL de retour fournie dans l'URL de connexion.
|
||||||
|
|
||||||
|
Le corps de la requête de callback et au format JSON
|
||||||
|
et contient deux paires clef-valeur :
|
||||||
|
|
||||||
|
- `user` : les données utilisateur, telles que décrites
|
||||||
|
par [UserProfileSchema][core.schemas.UserProfileSchema]
|
||||||
|
- `signature` : la signature des données utilisateur
|
||||||
|
|
||||||
|
???Example
|
||||||
|
|
||||||
|
En reprenant les mêmes paramètres que dans l'exemple précédent,
|
||||||
|
le site AE pourra renvoyer à l'application la requête suivante :
|
||||||
|
|
||||||
|
```http
|
||||||
|
POST https://bot.ae.utbm.fr/callback/123456789/
|
||||||
|
content-type: application/json
|
||||||
|
body: {
|
||||||
|
"user": {
|
||||||
|
"id": 144131,
|
||||||
|
"nick_name": "inzekitchen",
|
||||||
|
"first_name": "Brian",
|
||||||
|
...
|
||||||
|
},
|
||||||
|
"signature": "f16955bab6b805f6e1abbb98a86dfee53fed0bf812aa6513ca46cfd461b70020"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
L'application doit répondre avec un des codes HTTP suivants :
|
||||||
|
|
||||||
|
| Code | Raison |
|
||||||
|
|------|--------------------------------------------------------------------------------|
|
||||||
|
| 204 | Tout s'est bien passé |
|
||||||
|
| 403 | Les données de retour ne sont <br>pas signées ou sont mal signées |
|
||||||
|
| 404 | L'URL de retour ne permet pas <br>d'identifier un utilisateur de l'application |
|
||||||
|
|
||||||
|
!!!note "Code d'erreur par défaut"
|
||||||
|
|
||||||
|
Si l'appel de la route fait face à plusieurs problèmes en même temps
|
||||||
|
(par exemple, l'URL ne permet pas de retrouver votre utilisateur,
|
||||||
|
et en plus les données sont mal signées),
|
||||||
|
le 403 prime et doit être retourné par défaut.
|
||||||
|
|
||||||
|
## Signature des données
|
||||||
|
|
||||||
|
Les données de l'URL de connexion doivent être signées,
|
||||||
|
et la signature de l'URL de retour doit être vérifiée.
|
||||||
|
|
||||||
|
Dans le deux cas, la signature est le digest HMAC-SHA512
|
||||||
|
des données url-encodées, en utilisant la clef HMAC du client d'API.
|
||||||
|
|
||||||
|
???Example "Signature de l'URL de connexion"
|
||||||
|
|
||||||
|
En reprenant le même exemple que les fois précédentes,
|
||||||
|
l'url-encodage des données est :
|
||||||
|
|
||||||
|
`client_id=15&third_party_app=discord
|
||||||
|
&privacy_link=https%3A%2F%2Fdiscord.com%2Fprivacy%2F&username=Brian
|
||||||
|
&callback_url=https%3A%2F%2Fbot.ae.utbm.fr%2Fcallback%2F123456789%2F`
|
||||||
|
|
||||||
|
Notez que la signature n'est pas (encore) dedans.
|
||||||
|
Cette dernière peut-être obtenue avec le code suivant :
|
||||||
|
|
||||||
|
=== ":simple-python: Python"
|
||||||
|
|
||||||
|
Dépendances :
|
||||||
|
|
||||||
|
- `environs` (>=14.1)
|
||||||
|
|
||||||
|
```python
|
||||||
|
import hmac
|
||||||
|
from urllib.parse import urlencode
|
||||||
|
|
||||||
|
from environs import Env
|
||||||
|
|
||||||
|
env = Env()
|
||||||
|
env.read_env()
|
||||||
|
|
||||||
|
key = env.str("HMAC_KEY").encode()
|
||||||
|
data = {
|
||||||
|
"client_id": 15,
|
||||||
|
"third_party_app": "discord",
|
||||||
|
"privacy_link": "https://discord.com/privacy/",
|
||||||
|
"username": "Brian",
|
||||||
|
"callback_url": "https://bot.ae.utbm.fr/callback/123456789/",
|
||||||
|
}
|
||||||
|
urlencoded = urlencode(data)
|
||||||
|
data["signature"] = hmac.digest(key, urlencoded.encode(), "sha512").hex()
|
||||||
|
|
||||||
|
# URL a fournir à l'utilisateur pour son authentification
|
||||||
|
user_url = f"https://ae.ubtm.fr/api-link/auth/?{urlencode(data)}"
|
||||||
|
```
|
||||||
|
|
||||||
|
=== ":simple-rust: Rust"
|
||||||
|
|
||||||
|
Dépendances :
|
||||||
|
|
||||||
|
- `hmac` (>=0.12.1)
|
||||||
|
- `url` (>=2.5.7, features `serde`)
|
||||||
|
- `serde` (>=1.0.228, features `derive`)
|
||||||
|
- `serde_urlencoded` (>="0.7.1)
|
||||||
|
- `sha2` (>=0.10.9)
|
||||||
|
- `dotenvy` (>= 0.15)
|
||||||
|
|
||||||
|
```rust
|
||||||
|
use hmac::{Mac, SimpleHmac};
|
||||||
|
use serde::Serialize;
|
||||||
|
use sha2::Sha512;
|
||||||
|
use url::Url;
|
||||||
|
|
||||||
|
#[derive(Serialize, Debug)]
|
||||||
|
struct UrlData<'a> {
|
||||||
|
client_id: u32,
|
||||||
|
third_party_app: &'a str,
|
||||||
|
privacy_link: Url,
|
||||||
|
username: &'a str,
|
||||||
|
callback_url: Url,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> UrlData<'a> {
|
||||||
|
pub fn signature(&self, key: &[u8]) -> CtOutput<SimpleHmac<Sha512>> {
|
||||||
|
let urlencoded = serde_urlencoded::to_string(self).unwrap();
|
||||||
|
SimpleHmac::<Sha512>::new_from_slice(key)
|
||||||
|
.unwrap()
|
||||||
|
.chain_update(urlencoded.as_bytes())
|
||||||
|
.finalize()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Into<Url> for UrlData<'_> {
|
||||||
|
fn into(self) -> Url {
|
||||||
|
let key = std::env::var("HMAC_KEY").unwrap();
|
||||||
|
let mut url = Url::parse("http://ae.utbm.fr/api-link/auth/").unwrap();
|
||||||
|
url.set_query(Some(
|
||||||
|
format!(
|
||||||
|
"{}&signature={:x}",
|
||||||
|
serde_urlencoded::to_string(&self).unwrap(),
|
||||||
|
self.signature(key.as_bytes()).into_bytes()
|
||||||
|
)
|
||||||
|
.as_str(),
|
||||||
|
));
|
||||||
|
url
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
dotenvy::dotenv().expect("Couldn't load env");
|
||||||
|
let data = UrlData {
|
||||||
|
client_id: 1,
|
||||||
|
third_party_app: "discord",
|
||||||
|
privacy_link: "https://discord.com/privacy/".parse().unwrap(),
|
||||||
|
username: "Brian",
|
||||||
|
callback_url: "https://bot.ae.utbm.fr/callback/123456789/"
|
||||||
|
.parse()
|
||||||
|
.unwrap(),
|
||||||
|
};
|
||||||
|
let url: Url = data.into();
|
||||||
|
println!("{:?}", url);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
???Example "Vérification de la signature de la réponse"
|
||||||
|
|
||||||
|
Les données utilisateur peuvent ressembler à :
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"user": {
|
||||||
|
"display_name": "Matthieu Vincent",
|
||||||
|
"profile_url": "/user/380/",
|
||||||
|
"profile_pict": "/static/core/img/unknown.jpg",
|
||||||
|
"id": 380,
|
||||||
|
"nick_name": None,
|
||||||
|
"first_name": "Matthieu",
|
||||||
|
"last_name": "Vincent",
|
||||||
|
},
|
||||||
|
"signature": "3802a280fbb01bd9fetc."
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Vous pouvez vérifier la signature ainsi :
|
||||||
|
|
||||||
|
```python
|
||||||
|
import hmac
|
||||||
|
from urllib.parse import urlencode
|
||||||
|
|
||||||
|
from environs import Env
|
||||||
|
|
||||||
|
env = Env()
|
||||||
|
env.read_env()
|
||||||
|
|
||||||
|
def is_signature_valid(user_data: dict, signature: str) -> bool:
|
||||||
|
key = env.str("HMAC_KEY").encode()
|
||||||
|
urlencoded = urlencode(user_data)
|
||||||
|
return hmac.compare_digest(
|
||||||
|
hmac.digest(key, urlencoded.encode(), "sha512").hex(),
|
||||||
|
signature,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
post_data = <récupération des données POST>
|
||||||
|
print(
|
||||||
|
"signature valide :",
|
||||||
|
is_signature_valid(post_data["user"], post_data["signature"]
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
!!!Warning
|
||||||
|
|
||||||
|
Vous devez impérativement vérifier la signature
|
||||||
|
des données de la requête de callback !
|
||||||
|
|
||||||
|
Si l'équipe informatique se rend compte que vous ne le faites pas,
|
||||||
|
elle se réserve le droit de suspendre votre application,
|
||||||
|
immédiatement et sans préavis.
|
||||||
@@ -112,7 +112,7 @@ cf. [HTTP persistant connection (wikipedia)](https://en.wikipedia.org/wiki/HTTP_
|
|||||||
|
|
||||||
Voici quelques exemples :
|
Voici quelques exemples :
|
||||||
|
|
||||||
=== "Python (requests)"
|
=== ":simple-python: Python (requests)"
|
||||||
|
|
||||||
Dépendances :
|
Dépendances :
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@ Voici quelques exemples :
|
|||||||
print(response.json())
|
print(response.json())
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Python (aiohttp)"
|
=== ":simple-python: Python (aiohttp)"
|
||||||
|
|
||||||
Dépendances :
|
Dépendances :
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ Voici quelques exemples :
|
|||||||
asyncio.run(main())
|
asyncio.run(main())
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Javascript (axios)"
|
=== ":simple-javascript: Javascript (axios)"
|
||||||
|
|
||||||
Dépendances :
|
Dépendances :
|
||||||
|
|
||||||
@@ -178,7 +178,7 @@ Voici quelques exemples :
|
|||||||
console.log(await instance.get("club/1").json());
|
console.log(await instance.get("club/1").json());
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Rust (reqwest)"
|
=== ":simple-rust: Rust (reqwest)"
|
||||||
|
|
||||||
Dépendances :
|
Dépendances :
|
||||||
|
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright 2022
|
|
||||||
# - Maréchal <thgirod@hotmail.com
|
|
||||||
#
|
|
||||||
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
||||||
# http://ae.utbm.fr.
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or modify it under
|
|
||||||
# the terms of the GNU General Public License a published by the Free Software
|
|
||||||
# Foundation; either version 3 of the License, or (at your option) any later
|
|
||||||
# version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
||||||
# details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License along with
|
|
||||||
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
||||||
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
|
|
||||||
class PaymentResultConverter:
|
|
||||||
"""Converter used for url mapping of the `eboutic.views.payment_result` view.
|
|
||||||
|
|
||||||
It's meant to build an url that can match
|
|
||||||
either `/eboutic/pay/success/` or `/eboutic/pay/failure/`
|
|
||||||
but nothing else.
|
|
||||||
"""
|
|
||||||
|
|
||||||
regex = "(success|failure)"
|
|
||||||
|
|
||||||
def to_python(self, value):
|
|
||||||
return str(value)
|
|
||||||
|
|
||||||
def to_url(self, value):
|
|
||||||
return str(value)
|
|
||||||
@@ -116,6 +116,56 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<section>
|
||||||
|
<div class="category-header">
|
||||||
|
<h3 class="margin-bottom">{% trans %}Eurockéennes 2025 partnership{% endtrans %}</h3>
|
||||||
|
{% if user.is_subscribed %}
|
||||||
|
<div id="eurock-partner" style="
|
||||||
|
min-height: 600px;
|
||||||
|
background-color: lightgrey;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
{% trans trimmed %}
|
||||||
|
Our partner uses Weezevent to sell tickets.
|
||||||
|
Weezevent may collect user info according to
|
||||||
|
its own privacy policy.
|
||||||
|
By clicking the accept button you consent to
|
||||||
|
their terms of services.
|
||||||
|
{% endtrans %}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<a href="https://weezevent.com/fr/politique-de-confidentialite/">{% trans %}Privacy policy{% endtrans %}</a>
|
||||||
|
|
||||||
|
<button
|
||||||
|
hx-get="{{ url("eboutic:eurock") }}"
|
||||||
|
hx-target="#eurock-partner"
|
||||||
|
hx-swap="outerHTML"
|
||||||
|
hx-trigger="click, load[document.cookie.includes('weezevent_accept=true')]"
|
||||||
|
@htmx:after-request="document.cookie = 'weezevent_accept=true'"
|
||||||
|
>{% trans %}Accept{% endtrans %}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<p>
|
||||||
|
{%- trans trimmed %}
|
||||||
|
You must be subscribed to benefit from the partnership with the Eurockéennes.
|
||||||
|
{% endtrans -%}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
{%- trans trimmed %}
|
||||||
|
This partnership offers a discount of up to 33%
|
||||||
|
on tickets for Friday, Saturday and Sunday,
|
||||||
|
as well as the 3-day package from Friday to Sunday.
|
||||||
|
{% endtrans -%}
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
{% for priority_groups in products|groupby('order') %}
|
{% for priority_groups in products|groupby('order') %}
|
||||||
{% for category, items in priority_groups.list|groupby('category') %}
|
{% for category, items in priority_groups.list|groupby('category') %}
|
||||||
{% if items|count > 0 %}
|
{% if items|count > 0 %}
|
||||||
|
|||||||
16
eboutic/templates/eboutic/eurock_fragment.jinja
Normal file
16
eboutic/templates/eboutic/eurock_fragment.jinja
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<a title="Logiciel billetterie en ligne"
|
||||||
|
href="https://www.weezevent.com?c=sys_widget"
|
||||||
|
class="weezevent-widget-integration"
|
||||||
|
target="_blank"
|
||||||
|
data-src="https://widget.weezevent.com/ticket/8aaba226-f7a3-4192-a64e-72ff8f5b35b7?id_evenement=1419869&locale=fr-FR&code=28747"
|
||||||
|
data-width="650"
|
||||||
|
data-height="600"
|
||||||
|
data-resize="1"
|
||||||
|
data-nopb="0"
|
||||||
|
data-type="neo"
|
||||||
|
data-width_auto="1"
|
||||||
|
data-noscroll="0"
|
||||||
|
data-id="1419869">
|
||||||
|
Billetterie Weezevent
|
||||||
|
</a>
|
||||||
|
<script type="text/javascript" src="https://widget.weezevent.com/weez.js" async defer></script>
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<a
|
|
||||||
title="Logiciel billetterie en ligne"
|
|
||||||
href="https://widget.weezevent.com/ticket/6ef65533-f5b0-4571-9d21-1f1bc63921f0?id_evenement=1211855&locale=fr-FR&code=34146"
|
|
||||||
class="weezevent-widget-integration"
|
|
||||||
target="_blank"
|
|
||||||
data-src="https://widget.weezevent.com/ticket/6ef65533-f5b0-4571-9d21-1f1bc63921f0?id_evenement=1211855&locale=fr-FR&code=34146"
|
|
||||||
data-width="650"
|
|
||||||
data-height="600"
|
|
||||||
data-resize="1"
|
|
||||||
data-nopb="0"
|
|
||||||
data-type="neo"
|
|
||||||
data-width_auto="1"
|
|
||||||
data-noscroll="0"
|
|
||||||
data-id="1211855">
|
|
||||||
Billetterie Weezevent
|
|
||||||
</a>
|
|
||||||
<script type="text/javascript" src="https://widget.weezevent.com/weez.js" async defer></script>
|
|
||||||
@@ -24,17 +24,18 @@
|
|||||||
|
|
||||||
from django.urls import path, register_converter
|
from django.urls import path, register_converter
|
||||||
|
|
||||||
from eboutic.converters import PaymentResultConverter
|
from core.converters import ResultConverter
|
||||||
from eboutic.views import (
|
from eboutic.views import (
|
||||||
BillingInfoFormFragment,
|
BillingInfoFormFragment,
|
||||||
EbouticCheckout,
|
EbouticCheckout,
|
||||||
EbouticMainView,
|
EbouticMainView,
|
||||||
EbouticPayWithSith,
|
EbouticPayWithSith,
|
||||||
EtransactionAutoAnswer,
|
EtransactionAutoAnswer,
|
||||||
|
EurockPartnerFragment,
|
||||||
payment_result,
|
payment_result,
|
||||||
)
|
)
|
||||||
|
|
||||||
register_converter(PaymentResultConverter, "res")
|
register_converter(ResultConverter, "res")
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
# Subscription views
|
# Subscription views
|
||||||
@@ -50,4 +51,5 @@ urlpatterns = [
|
|||||||
EtransactionAutoAnswer.as_view(),
|
EtransactionAutoAnswer.as_view(),
|
||||||
name="etransation_autoanswer",
|
name="etransation_autoanswer",
|
||||||
),
|
),
|
||||||
|
path("eurock/", EurockPartnerFragment.as_view(), name="eurock"),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -42,11 +42,11 @@ from django.shortcuts import redirect, render
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from django.views.decorators.http import require_GET
|
from django.views.decorators.http import require_GET
|
||||||
from django.views.generic import DetailView, FormView, UpdateView, View
|
from django.views.generic import DetailView, FormView, TemplateView, UpdateView, View
|
||||||
from django.views.generic.edit import SingleObjectMixin
|
from django.views.generic.edit import SingleObjectMixin
|
||||||
from django_countries.fields import Country
|
from django_countries.fields import Country
|
||||||
|
|
||||||
from core.auth.mixins import CanViewMixin
|
from core.auth.mixins import CanViewMixin, IsSubscriberMixin
|
||||||
from core.views.mixins import FragmentMixin, UseFragmentsMixin
|
from core.views.mixins import FragmentMixin, UseFragmentsMixin
|
||||||
from counter.forms import BaseBasketForm, BasketProductForm, BillingInfoForm
|
from counter.forms import BaseBasketForm, BasketProductForm, BillingInfoForm
|
||||||
from counter.models import (
|
from counter.models import (
|
||||||
@@ -350,3 +350,7 @@ class EtransactionAutoAnswer(View):
|
|||||||
return HttpResponse(
|
return HttpResponse(
|
||||||
"Payment failed with error: " + request.GET["Error"], status=202
|
"Payment failed with error: " + request.GET["Error"], status=202
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class EurockPartnerFragment(IsSubscriberMixin, TemplateView):
|
||||||
|
template_name = "eboutic/eurock_fragment.jinja"
|
||||||
|
|||||||
@@ -146,7 +146,7 @@
|
|||||||
<label for="{{ input_id }}">
|
<label for="{{ input_id }}">
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
<figure>
|
<figure>
|
||||||
{%- if user.is_viewable %}
|
{%- if user.can_view(candidature.user) %}
|
||||||
{% if candidature.user.profile_pict %}
|
{% if candidature.user.profile_pict %}
|
||||||
<img class="candidate__picture" src="{{ candidature.user.profile_pict.get_download_url() }}" alt="{% trans %}Profile{% endtrans %}">
|
<img class="candidate__picture" src="{{ candidature.user.profile_pict.get_download_url() }}" alt="{% trans %}Profile{% endtrans %}">
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ from django.test import Client, TestCase
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils.timezone import now
|
from django.utils.timezone import now
|
||||||
from model_bakery import baker
|
from model_bakery import baker
|
||||||
|
from model_bakery.recipe import Recipe
|
||||||
|
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
|
||||||
@@ -52,6 +54,102 @@ class TestElectionUpdateView(TestElection):
|
|||||||
assert response.status_code == 403
|
assert response.status_code == 403
|
||||||
|
|
||||||
|
|
||||||
|
class TestElectionForm(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpTestData(cls):
|
||||||
|
cls.election = baker.make(Election, end_date=now() + timedelta(days=1))
|
||||||
|
cls.group = baker.make(Group)
|
||||||
|
cls.election.vote_groups.add(cls.group)
|
||||||
|
cls.election.edit_groups.add(cls.group)
|
||||||
|
lists = baker.make(
|
||||||
|
ElectionList, election=cls.election, _quantity=2, _bulk_create=True
|
||||||
|
)
|
||||||
|
cls.roles = baker.make(
|
||||||
|
Role, election=cls.election, _quantity=2, _bulk_create=True
|
||||||
|
)
|
||||||
|
users = baker.make(User, _quantity=4, _bulk_create=True)
|
||||||
|
recipe = Recipe(Candidature)
|
||||||
|
cls.cand = [
|
||||||
|
recipe.prepare(role=cls.roles[0], user=users[0], election_list=lists[0]),
|
||||||
|
recipe.prepare(role=cls.roles[0], user=users[1], election_list=lists[1]),
|
||||||
|
recipe.prepare(role=cls.roles[1], user=users[2], election_list=lists[0]),
|
||||||
|
recipe.prepare(role=cls.roles[1], user=users[3], election_list=lists[1]),
|
||||||
|
]
|
||||||
|
Candidature.objects.bulk_create(cls.cand)
|
||||||
|
cls.vote_url = reverse("election:vote", kwargs={"election_id": cls.election.id})
|
||||||
|
cls.detail_url = reverse(
|
||||||
|
"election:detail", kwargs={"election_id": cls.election.id}
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_election_good_form(self):
|
||||||
|
postes = (self.roles[0].title, self.roles[1].title)
|
||||||
|
votes = [
|
||||||
|
{postes[0]: "", postes[1]: str(self.cand[2].id)},
|
||||||
|
{postes[0]: "", postes[1]: ""},
|
||||||
|
{postes[0]: str(self.cand[0].id), postes[1]: str(self.cand[2].id)},
|
||||||
|
{postes[0]: str(self.cand[0].id), postes[1]: str(self.cand[3].id)},
|
||||||
|
]
|
||||||
|
voters = subscriber_user.make(_quantity=len(votes), _bulk_create=True)
|
||||||
|
self.group.users.set(voters)
|
||||||
|
|
||||||
|
for voter, vote in zip(voters, votes, strict=True):
|
||||||
|
assert self.election.can_vote(voter)
|
||||||
|
self.client.force_login(voter)
|
||||||
|
response = self.client.post(self.vote_url, data=vote)
|
||||||
|
assertRedirects(response, self.detail_url)
|
||||||
|
|
||||||
|
assert set(self.election.voters.all()) == set(voters)
|
||||||
|
assert self.election.results == {
|
||||||
|
postes[0]: {
|
||||||
|
self.cand[0].user.username: {"percent": 50.0, "vote": 2},
|
||||||
|
self.cand[1].user.username: {"percent": 0.0, "vote": 0},
|
||||||
|
"blank vote": {"percent": 50.0, "vote": 2},
|
||||||
|
"total vote": 4,
|
||||||
|
},
|
||||||
|
postes[1]: {
|
||||||
|
self.cand[2].user.username: {"percent": 50.0, "vote": 2},
|
||||||
|
self.cand[3].user.username: {"percent": 25.0, "vote": 1},
|
||||||
|
"blank vote": {"percent": 25.0, "vote": 1},
|
||||||
|
"total vote": 4,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
def test_election_bad_form(self):
|
||||||
|
postes = (self.roles[0].title, self.roles[1].title)
|
||||||
|
|
||||||
|
votes = [
|
||||||
|
{postes[0]: "", postes[1]: str(self.cand[0].id)}, # wrong candidate
|
||||||
|
{postes[0]: ""},
|
||||||
|
{
|
||||||
|
postes[0]: "0123456789", # unknow users
|
||||||
|
postes[1]: str(subscriber_user.make().id), # not a candidate
|
||||||
|
},
|
||||||
|
{},
|
||||||
|
]
|
||||||
|
voters = subscriber_user.make(_quantity=len(votes), _bulk_create=True)
|
||||||
|
self.group.users.set(voters)
|
||||||
|
|
||||||
|
for voter, vote in zip(voters, votes, strict=True):
|
||||||
|
self.client.force_login(voter)
|
||||||
|
response = self.client.post(self.vote_url, data=vote)
|
||||||
|
assertRedirects(response, self.detail_url)
|
||||||
|
|
||||||
|
assert self.election.results == {
|
||||||
|
postes[0]: {
|
||||||
|
self.cand[0].user.username: {"percent": 0.0, "vote": 0},
|
||||||
|
self.cand[1].user.username: {"percent": 0.0, "vote": 0},
|
||||||
|
"blank vote": {"percent": 100.0, "vote": 2},
|
||||||
|
"total vote": 2,
|
||||||
|
},
|
||||||
|
postes[1]: {
|
||||||
|
self.cand[2].user.username: {"percent": 0.0, "vote": 0},
|
||||||
|
self.cand[3].user.username: {"percent": 0.0, "vote": 0},
|
||||||
|
"blank vote": {"percent": 100.0, "vote": 2},
|
||||||
|
"total vote": 2,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
@pytest.mark.django_db
|
||||||
def test_election_create_list_permission(client: Client):
|
def test_election_create_list_permission(client: Client):
|
||||||
election = baker.make(Election, end_candidature=now() + timedelta(hours=1))
|
election = baker.make(Election, end_candidature=now() + timedelta(hours=1))
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
from cryptography.utils import cached_property
|
from cryptography.utils import cached_property
|
||||||
from django.conf import settings
|
|
||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from django.contrib.auth.mixins import (
|
from django.contrib.auth.mixins import (
|
||||||
LoginRequiredMixin,
|
LoginRequiredMixin,
|
||||||
@@ -115,16 +114,9 @@ class VoteFormView(LoginRequiredMixin, UserPassesTestMixin, FormView):
|
|||||||
def test_func(self):
|
def test_func(self):
|
||||||
if not self.election.can_vote(self.request.user):
|
if not self.election.can_vote(self.request.user):
|
||||||
return False
|
return False
|
||||||
|
return self.election.vote_groups.filter(
|
||||||
groups = set(self.election.vote_groups.values_list("id", flat=True))
|
id__in=self.request.user.all_groups
|
||||||
if (
|
).exists()
|
||||||
settings.SITH_GROUP_SUBSCRIBERS_ID in groups
|
|
||||||
and self.request.user.is_subscribed
|
|
||||||
):
|
|
||||||
# the subscriber group isn't truly attached to users,
|
|
||||||
# so it must be dealt with separately
|
|
||||||
return True
|
|
||||||
return self.request.user.groups.filter(id__in=groups).exists()
|
|
||||||
|
|
||||||
def vote(self, election_data):
|
def vote(self, election_data):
|
||||||
with transaction.atomic():
|
with transaction.atomic():
|
||||||
@@ -238,15 +230,9 @@ class RoleCreateView(LoginRequiredMixin, UserPassesTestMixin, CreateView):
|
|||||||
return False
|
return False
|
||||||
if self.request.user.has_perm("election.add_role"):
|
if self.request.user.has_perm("election.add_role"):
|
||||||
return True
|
return True
|
||||||
groups = set(self.election.edit_groups.values_list("id", flat=True))
|
return self.election.edit_groups.filter(
|
||||||
if (
|
id__in=self.request.user.all_groups
|
||||||
settings.SITH_GROUP_SUBSCRIBERS_ID in groups
|
).exists()
|
||||||
and self.request.user.is_subscribed
|
|
||||||
):
|
|
||||||
# the subscriber group isn't truly attached to users,
|
|
||||||
# so it must be dealt with separately
|
|
||||||
return True
|
|
||||||
return self.request.user.groups.filter(id__in=groups).exists()
|
|
||||||
|
|
||||||
def get_initial(self):
|
def get_initial(self):
|
||||||
return {"election": self.election}
|
return {"election": self.election}
|
||||||
@@ -279,14 +265,7 @@ class ElectionListCreateView(LoginRequiredMixin, UserPassesTestMixin, CreateView
|
|||||||
.union(self.election.edit_groups.values("id"))
|
.union(self.election.edit_groups.values("id"))
|
||||||
.values_list("id", flat=True)
|
.values_list("id", flat=True)
|
||||||
)
|
)
|
||||||
if (
|
return not groups.isdisjoint(self.request.user.all_groups.keys())
|
||||||
settings.SITH_GROUP_SUBSCRIBERS_ID in groups
|
|
||||||
and self.request.user.is_subscribed
|
|
||||||
):
|
|
||||||
# the subscriber group isn't truly attached to users,
|
|
||||||
# so it must be dealt with separately
|
|
||||||
return True
|
|
||||||
return self.request.user.groups.filter(id__in=groups).exists()
|
|
||||||
|
|
||||||
def get_initial(self):
|
def get_initial(self):
|
||||||
return {"election": self.election}
|
return {"election": self.election}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-07 15:47+0100\n"
|
"POT-Creation-Date: 2026-03-23 22:21+0100\n"
|
||||||
"PO-Revision-Date: 2016-07-18\n"
|
"PO-Revision-Date: 2016-07-18\n"
|
||||||
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
||||||
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
||||||
@@ -35,6 +35,10 @@ msgstr ""
|
|||||||
"True si gardé à jour par le biais d'un fournisseur externe de domains "
|
"True si gardé à jour par le biais d'un fournisseur externe de domains "
|
||||||
"toxics, False sinon"
|
"toxics, False sinon"
|
||||||
|
|
||||||
|
#: api/admin.py
|
||||||
|
msgid "Reset HMAC key"
|
||||||
|
msgstr "Réinitialiser la clef HMAC"
|
||||||
|
|
||||||
#: api/admin.py
|
#: api/admin.py
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -48,6 +52,23 @@ msgstr ""
|
|||||||
msgid "Revoke selected API keys"
|
msgid "Revoke selected API keys"
|
||||||
msgstr "Révoquer les clefs d'API sélectionnées"
|
msgstr "Révoquer les clefs d'API sélectionnées"
|
||||||
|
|
||||||
|
#: api/forms.py
|
||||||
|
msgid "I have read and I accept the terms and conditions of use"
|
||||||
|
msgstr "J'ai lu et j'accepte les conditions générales d'utilisation."
|
||||||
|
|
||||||
|
#: api/forms.py
|
||||||
|
msgid "You must approve the terms and conditions of use."
|
||||||
|
msgstr "Vous devez approuver les conditions générales d'utilisation."
|
||||||
|
|
||||||
|
#: api/forms.py
|
||||||
|
msgid "You must confirm that this is your username."
|
||||||
|
msgstr "Vous devez confirmer que c'est bien votre nom d'utilisateur."
|
||||||
|
|
||||||
|
#: api/forms.py
|
||||||
|
#, python-format
|
||||||
|
msgid "I confirm that %(username)s is my username on %(app)s"
|
||||||
|
msgstr "Je confirme que %(username)s est mon nom d'utilisateur sur %(app)s"
|
||||||
|
|
||||||
#: api/models.py club/models.py com/models.py counter/models.py forum/models.py
|
#: api/models.py club/models.py com/models.py counter/models.py forum/models.py
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "nom"
|
msgstr "nom"
|
||||||
@@ -68,6 +89,10 @@ msgstr "permissions du client"
|
|||||||
msgid "Specific permissions for this api client."
|
msgid "Specific permissions for this api client."
|
||||||
msgstr "Permissions spécifiques pour ce client d'API"
|
msgstr "Permissions spécifiques pour ce client d'API"
|
||||||
|
|
||||||
|
#: api/models.py
|
||||||
|
msgid "HMAC Key"
|
||||||
|
msgstr "Clef HMAC"
|
||||||
|
|
||||||
#: api/models.py
|
#: api/models.py
|
||||||
msgid "api client"
|
msgid "api client"
|
||||||
msgstr "client d'api"
|
msgstr "client d'api"
|
||||||
@@ -97,6 +122,63 @@ msgstr "clef d'api"
|
|||||||
msgid "api keys"
|
msgid "api keys"
|
||||||
msgstr "clefs d'api"
|
msgstr "clefs d'api"
|
||||||
|
|
||||||
|
#: api/templates/api/third_party/auth.jinja
|
||||||
|
msgid "Confidentiality"
|
||||||
|
msgstr "Confidentialité"
|
||||||
|
|
||||||
|
#: api/templates/api/third_party/auth.jinja
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"By ticking this box and clicking on the send button, you acknowledge and "
|
||||||
|
"agree to provide %(app)s with your first name, last name, nickname and any "
|
||||||
|
"other information that was the third party app was explicitly authorized to "
|
||||||
|
"fetch and that it must have acknowledged to you, in a complete and accurate "
|
||||||
|
"manner."
|
||||||
|
msgstr ""
|
||||||
|
"En cochant cette case et en cliquant sur le bouton « Envoyer », vous "
|
||||||
|
"reconnaissez et acceptez de fournir à %(app)s votre prénom, nom, pseudonyme "
|
||||||
|
"et toute autre information que l'application tierce a été explicitement "
|
||||||
|
"autorisée à récupérer et qu'elle doit vous avoir communiqué de manière "
|
||||||
|
"complète et exacte."
|
||||||
|
|
||||||
|
#: api/templates/api/third_party/auth.jinja
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"The privacy policies of <a href=\"%(privacy_link)s\">%(app)s</a> and of <a "
|
||||||
|
"href=\"%(sith_cgu_link)s\">the Students' Association</a> applies as soon as "
|
||||||
|
"the form is submitted."
|
||||||
|
msgstr ""
|
||||||
|
"Les politiques de confidentialité de <a href=\"%(privacy_link)s\">%(app)s</a> et de <a "
|
||||||
|
"href=\"%(sith_cgu_link)s\">l'Association des Etudiants</a> s'appliquent dès la soumission "
|
||||||
|
"du formulaire."
|
||||||
|
|
||||||
|
#: api/templates/api/third_party/auth.jinja
|
||||||
|
msgid "Confirmation of identity"
|
||||||
|
msgstr "Confirmation d'identité"
|
||||||
|
|
||||||
|
#: api/views.py
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You are going to link your AE account and your %(app)s account. Continue "
|
||||||
|
"only if this page was opened from %(app)s."
|
||||||
|
msgstr ""
|
||||||
|
"Vous allez lier votre compte AE et votre compte %(app)s. Poursuivez "
|
||||||
|
"uniquement si cette page a été ouverte depuis %(app)s."
|
||||||
|
|
||||||
|
#: api/views.py
|
||||||
|
msgid "You have been successfully authenticated. You can now close this page."
|
||||||
|
msgstr "Vous avez été authentifié avec succès. Vous pouvez maintenant fermer cette page."
|
||||||
|
|
||||||
|
#: api/views.py
|
||||||
|
msgid ""
|
||||||
|
"Your authentication on the AE website was successful, but an error happened "
|
||||||
|
"during the interaction with the third-party application. Please contact the "
|
||||||
|
"managers of the latter."
|
||||||
|
msgstr ""
|
||||||
|
"Votre authentification sur le site AE a fonctionné, mais une erreur est arrivée "
|
||||||
|
"durant l'interaction avec l'application tierce. Veuillez contacter les responsables "
|
||||||
|
"de cette dernière."
|
||||||
|
|
||||||
#: club/forms.py
|
#: club/forms.py
|
||||||
msgid "Users to add"
|
msgid "Users to add"
|
||||||
msgstr "Utilisateurs à ajouter"
|
msgstr "Utilisateurs à ajouter"
|
||||||
@@ -239,7 +321,7 @@ msgid "role"
|
|||||||
msgstr "rôle"
|
msgstr "rôle"
|
||||||
|
|
||||||
#: club/models.py core/models.py counter/models.py election/models.py
|
#: club/models.py core/models.py counter/models.py election/models.py
|
||||||
#: forum/models.py reservation/models.py
|
#: forum/models.py
|
||||||
msgid "description"
|
msgid "description"
|
||||||
msgstr "description"
|
msgstr "description"
|
||||||
|
|
||||||
@@ -514,18 +596,6 @@ msgstr "Nouveau Trombi"
|
|||||||
msgid "Posters"
|
msgid "Posters"
|
||||||
msgstr "Affiches"
|
msgstr "Affiches"
|
||||||
|
|
||||||
#: club/templates/club/club_tools.jinja
|
|
||||||
msgid "Reservable rooms"
|
|
||||||
msgstr "Salles réservables"
|
|
||||||
|
|
||||||
#: club/templates/club/club_tools.jinja
|
|
||||||
msgid "Add a room"
|
|
||||||
msgstr "Ajouter une salle"
|
|
||||||
|
|
||||||
#: club/templates/club/club_tools.jinja
|
|
||||||
msgid "This club manages no reservable room"
|
|
||||||
msgstr "Ce club ne gère pas de salle réservable"
|
|
||||||
|
|
||||||
#: club/templates/club/club_tools.jinja
|
#: club/templates/club/club_tools.jinja
|
||||||
msgid "Counters:"
|
msgid "Counters:"
|
||||||
msgstr "Comptoirs : "
|
msgstr "Comptoirs : "
|
||||||
@@ -563,8 +633,9 @@ msgstr ""
|
|||||||
#: com/templates/com/news_edit.jinja com/templates/com/poster_edit.jinja
|
#: com/templates/com/news_edit.jinja com/templates/com/poster_edit.jinja
|
||||||
#: com/templates/com/screen_edit.jinja com/templates/com/weekmail.jinja
|
#: com/templates/com/screen_edit.jinja com/templates/com/weekmail.jinja
|
||||||
#: core/templates/core/create.jinja core/templates/core/edit.jinja
|
#: core/templates/core/create.jinja core/templates/core/edit.jinja
|
||||||
#: core/templates/core/file_edit.jinja core/templates/core/page/edit.jinja
|
#: core/templates/core/file_edit.jinja
|
||||||
#: core/templates/core/page/prop.jinja
|
#: core/templates/core/fragment/user_visibility.jinja
|
||||||
|
#: core/templates/core/page/edit.jinja core/templates/core/page/prop.jinja
|
||||||
#: core/templates/core/user_godfathers.jinja
|
#: core/templates/core/user_godfathers.jinja
|
||||||
#: core/templates/core/user_godfathers_tree.jinja
|
#: core/templates/core/user_godfathers_tree.jinja
|
||||||
#: core/templates/core/user_preferences.jinja
|
#: core/templates/core/user_preferences.jinja
|
||||||
@@ -804,7 +875,7 @@ msgstr "Une description plus détaillée et exhaustive de l'évènement."
|
|||||||
msgid "The club which organizes the event."
|
msgid "The club which organizes the event."
|
||||||
msgstr "Le club qui organise l'évènement."
|
msgstr "Le club qui organise l'évènement."
|
||||||
|
|
||||||
#: com/models.py pedagogy/models.py reservation/models.py trombi/models.py
|
#: com/models.py pedagogy/models.py trombi/models.py
|
||||||
msgid "author"
|
msgid "author"
|
||||||
msgstr "auteur"
|
msgstr "auteur"
|
||||||
|
|
||||||
@@ -1101,11 +1172,6 @@ msgstr "Emploi du temps"
|
|||||||
msgid "Matmatronch"
|
msgid "Matmatronch"
|
||||||
msgstr "Matmatronch"
|
msgstr "Matmatronch"
|
||||||
|
|
||||||
#: com/templates/com/news_list.jinja
|
|
||||||
#: reservation/templates/reservation/schedule.jinja
|
|
||||||
msgid "Room reservation"
|
|
||||||
msgstr "Réservation de salle"
|
|
||||||
|
|
||||||
#: com/templates/com/news_list.jinja core/templates/core/base/navbar.jinja
|
#: com/templates/com/news_list.jinja core/templates/core/base/navbar.jinja
|
||||||
#: core/templates/core/user_tools.jinja
|
#: core/templates/core/user_tools.jinja
|
||||||
msgid "Elections"
|
msgid "Elections"
|
||||||
@@ -1564,6 +1630,18 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Si vous désactivez cette option, seuls les admins pourront voir votre profil."
|
"Si vous désactivez cette option, seuls les admins pourront voir votre profil."
|
||||||
|
|
||||||
|
#: core/models.py
|
||||||
|
msgid "whitelisted users"
|
||||||
|
msgstr "utilisateurs whitelistés"
|
||||||
|
|
||||||
|
#: core/models.py
|
||||||
|
msgid ""
|
||||||
|
"Even if this profile is hidden, the users in this list will still be able to "
|
||||||
|
"see it."
|
||||||
|
msgstr ""
|
||||||
|
"Même si ce profil est caché, les utilisateurs sur cette liste pourront "
|
||||||
|
"toujours le voir."
|
||||||
|
|
||||||
#: core/models.py
|
#: core/models.py
|
||||||
msgid "A user with that username already exists"
|
msgid "A user with that username already exists"
|
||||||
msgstr "Un utilisateur de ce nom d'utilisateur existe déjà"
|
msgstr "Un utilisateur de ce nom d'utilisateur existe déjà"
|
||||||
@@ -1620,6 +1698,14 @@ msgstr "recevoir le Weekmail"
|
|||||||
msgid "show your stats to others"
|
msgid "show your stats to others"
|
||||||
msgstr "montrez vos statistiques aux autres"
|
msgstr "montrez vos statistiques aux autres"
|
||||||
|
|
||||||
|
#: core/models.py
|
||||||
|
msgid ""
|
||||||
|
"Allow subscribers (or whitelisted users if your profile is hidden) to access "
|
||||||
|
"your AE account stats."
|
||||||
|
msgstr ""
|
||||||
|
"Autorise les cotisants (ou les personnes whitelistées, si votre profil est "
|
||||||
|
"caché) à accéder aux statistiques de votre compte AE"
|
||||||
|
|
||||||
#: core/models.py
|
#: core/models.py
|
||||||
msgid "get a notification for every click"
|
msgid "get a notification for every click"
|
||||||
msgstr "avoir une notification pour chaque click"
|
msgstr "avoir une notification pour chaque click"
|
||||||
@@ -1966,7 +2052,6 @@ msgstr "Confirmation"
|
|||||||
#: core/templates/core/file_delete_confirm.jinja
|
#: core/templates/core/file_delete_confirm.jinja
|
||||||
#: counter/templates/counter/counter_click.jinja
|
#: counter/templates/counter/counter_click.jinja
|
||||||
#: counter/templates/counter/fragments/delete_student_card.jinja
|
#: counter/templates/counter/fragments/delete_student_card.jinja
|
||||||
#: reservation/templates/reservation/fragments/create_reservation.jinja
|
|
||||||
#: sas/templates/sas/ask_picture_removal.jinja
|
#: sas/templates/sas/ask_picture_removal.jinja
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
@@ -2630,21 +2715,12 @@ msgid "Preferences"
|
|||||||
msgstr "Préférences"
|
msgstr "Préférences"
|
||||||
|
|
||||||
#: core/templates/core/user_preferences.jinja
|
#: core/templates/core/user_preferences.jinja
|
||||||
msgid "General"
|
msgid "Notifications"
|
||||||
msgstr "Général"
|
msgstr "Notifications"
|
||||||
|
|
||||||
#: core/templates/core/user_preferences.jinja trombi/views.py
|
|
||||||
msgid "Trombi"
|
|
||||||
msgstr "Trombi"
|
|
||||||
|
|
||||||
#: core/templates/core/user_preferences.jinja
|
#: core/templates/core/user_preferences.jinja
|
||||||
#, python-format
|
msgid "Visibility"
|
||||||
msgid "You already choose to be in that Trombi: %(trombi)s."
|
msgstr "Visibilité"
|
||||||
msgstr "Vous avez déjà choisi ce Trombi: %(trombi)s."
|
|
||||||
|
|
||||||
#: core/templates/core/user_preferences.jinja
|
|
||||||
msgid "Go to my Trombi tools"
|
|
||||||
msgstr "Allez à mes outils de Trombi"
|
|
||||||
|
|
||||||
#: core/templates/core/user_preferences.jinja
|
#: core/templates/core/user_preferences.jinja
|
||||||
#: counter/templates/counter/counter_click.jinja
|
#: counter/templates/counter/counter_click.jinja
|
||||||
@@ -2663,6 +2739,19 @@ msgstr ""
|
|||||||
"aurez besoin d'un lecteur NFC. Nous enregistrons l'UID de la carte qui fait "
|
"aurez besoin d'un lecteur NFC. Nous enregistrons l'UID de la carte qui fait "
|
||||||
"14 caractères de long."
|
"14 caractères de long."
|
||||||
|
|
||||||
|
#: core/templates/core/user_preferences.jinja trombi/views.py
|
||||||
|
msgid "Trombi"
|
||||||
|
msgstr "Trombi"
|
||||||
|
|
||||||
|
#: core/templates/core/user_preferences.jinja
|
||||||
|
#, python-format
|
||||||
|
msgid "You already choose to be in that Trombi: %(trombi)s."
|
||||||
|
msgstr "Vous avez déjà choisi ce Trombi: %(trombi)s."
|
||||||
|
|
||||||
|
#: core/templates/core/user_preferences.jinja
|
||||||
|
msgid "Go to my Trombi tools"
|
||||||
|
msgstr "Allez à mes outils de Trombi"
|
||||||
|
|
||||||
#: core/templates/core/user_stats.jinja
|
#: core/templates/core/user_stats.jinja
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(user_name)s's stats"
|
msgid "%(user_name)s's stats"
|
||||||
@@ -2943,6 +3032,10 @@ msgstr "Photos"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Compte"
|
msgstr "Compte"
|
||||||
|
|
||||||
|
#: core/views/user.py
|
||||||
|
msgid "Visibility parameters updated."
|
||||||
|
msgstr "Paramètres de visibilité mis à jour."
|
||||||
|
|
||||||
#: counter/apps.py counter/models.py
|
#: counter/apps.py counter/models.py
|
||||||
msgid "counter"
|
msgid "counter"
|
||||||
msgstr "comptoir"
|
msgstr "comptoir"
|
||||||
@@ -2955,6 +3048,29 @@ msgstr "Cet UID est invalide"
|
|||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Utilisateur non trouvé"
|
msgstr "Utilisateur non trouvé"
|
||||||
|
|
||||||
|
#: counter/forms.py
|
||||||
|
msgid "Regular barmen"
|
||||||
|
msgstr "Barmen réguliers"
|
||||||
|
|
||||||
|
#: counter/forms.py
|
||||||
|
msgid ""
|
||||||
|
"Barmen having regular permanences or frequently giving a hand throughout the "
|
||||||
|
"semester."
|
||||||
|
msgstr ""
|
||||||
|
"Les barmen assurant des permanences régulières ou donnant régulièrement un "
|
||||||
|
"coup de main au cours du semestre."
|
||||||
|
|
||||||
|
#: counter/forms.py
|
||||||
|
msgid "Temporary barmen"
|
||||||
|
msgstr "Barmen temporaires"
|
||||||
|
|
||||||
|
#: counter/forms.py
|
||||||
|
msgid ""
|
||||||
|
"Barmen who will be there only for a limited period (e.g. for one evening)"
|
||||||
|
msgstr ""
|
||||||
|
"Les barmen qui seront là uniquement pour une durée limitée (par exemple, le "
|
||||||
|
"temps d'une soirée)"
|
||||||
|
|
||||||
#: counter/forms.py
|
#: counter/forms.py
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to add a product that is not owned by your club to this counter, "
|
"If you want to add a product that is not owned by your club to this counter, "
|
||||||
@@ -2963,6 +3079,16 @@ msgstr ""
|
|||||||
"Si vous souhaitez ajouter sur ce comptoir un produit qui n'appartient pas à "
|
"Si vous souhaitez ajouter sur ce comptoir un produit qui n'appartient pas à "
|
||||||
"votre club, vous devriez demander à un admin."
|
"votre club, vous devriez demander à un admin."
|
||||||
|
|
||||||
|
#: counter/forms.py
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"A user cannot be a regular and a temporary barman at the same time, but the "
|
||||||
|
"following users have been defined as both : %(users)s"
|
||||||
|
msgstr ""
|
||||||
|
"Un utilisateur ne peut pas être un barman régulier et temporaire en même "
|
||||||
|
"temps, mais les utilisateurs suivants ont été définis comme les deux : "
|
||||||
|
"%(users)s"
|
||||||
|
|
||||||
#: counter/forms.py
|
#: counter/forms.py
|
||||||
msgid "Date and time of action"
|
msgid "Date and time of action"
|
||||||
msgstr "Date et heure de l'action"
|
msgstr "Date et heure de l'action"
|
||||||
@@ -3111,7 +3237,7 @@ msgstr "Mettre à True si le mail a reçu une erreur"
|
|||||||
msgid "The operation that emptied the account."
|
msgid "The operation that emptied the account."
|
||||||
msgstr "L'opération qui a vidé le compte."
|
msgstr "L'opération qui a vidé le compte."
|
||||||
|
|
||||||
#: counter/models.py pedagogy/models.py reservation/models.py
|
#: counter/models.py pedagogy/models.py
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgstr "commentaire"
|
msgstr "commentaire"
|
||||||
|
|
||||||
@@ -3211,6 +3337,10 @@ msgstr "vendeurs"
|
|||||||
msgid "token"
|
msgid "token"
|
||||||
msgstr "jeton"
|
msgstr "jeton"
|
||||||
|
|
||||||
|
#: counter/models.py
|
||||||
|
msgid "regular barman"
|
||||||
|
msgstr "barman régulier"
|
||||||
|
|
||||||
#: counter/models.py sith/settings.py
|
#: counter/models.py sith/settings.py
|
||||||
msgid "Credit card"
|
msgid "Credit card"
|
||||||
msgstr "Carte bancaire"
|
msgstr "Carte bancaire"
|
||||||
@@ -3775,6 +3905,10 @@ msgstr ""
|
|||||||
"votre cotisation. Si vous ne renouvelez pas votre cotisation, il n'y aura "
|
"votre cotisation. Si vous ne renouvelez pas votre cotisation, il n'y aura "
|
||||||
"aucune conséquence autre que le retrait de l'argent de votre compte."
|
"aucune conséquence autre que le retrait de l'argent de votre compte."
|
||||||
|
|
||||||
|
#: counter/templates/counter/product_form.jinja
|
||||||
|
msgid "Remove this action"
|
||||||
|
msgstr "Retirer cette action"
|
||||||
|
|
||||||
#: counter/templates/counter/product_form.jinja
|
#: counter/templates/counter/product_form.jinja
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Edit product %(name)s"
|
msgid "Edit product %(name)s"
|
||||||
@@ -3802,6 +3936,10 @@ msgstr ""
|
|||||||
"Les actions automatiques vous permettent de planifier des modifications du "
|
"Les actions automatiques vous permettent de planifier des modifications du "
|
||||||
"produit à l'avance."
|
"produit à l'avance."
|
||||||
|
|
||||||
|
#: counter/templates/counter/product_form.jinja
|
||||||
|
msgid "Add action"
|
||||||
|
msgstr "Ajouter une action"
|
||||||
|
|
||||||
#: counter/templates/counter/product_list.jinja
|
#: counter/templates/counter/product_list.jinja
|
||||||
msgid "Product list"
|
msgid "Product list"
|
||||||
msgstr "Liste des produits"
|
msgstr "Liste des produits"
|
||||||
@@ -3915,6 +4053,10 @@ msgstr "Temps"
|
|||||||
msgid "Top 100 barman %(counter_name)s (all semesters)"
|
msgid "Top 100 barman %(counter_name)s (all semesters)"
|
||||||
msgstr "Top 100 barman %(counter_name)s (tous les semestres)"
|
msgstr "Top 100 barman %(counter_name)s (tous les semestres)"
|
||||||
|
|
||||||
|
#: counter/views/admin.py
|
||||||
|
msgid "Counter update done"
|
||||||
|
msgstr "Mise à jour du comptoir effectuée"
|
||||||
|
|
||||||
#: counter/views/admin.py
|
#: counter/views/admin.py
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(formula)s (formula)"
|
msgid "%(formula)s (formula)"
|
||||||
@@ -4824,73 +4966,6 @@ msgstr "Signaler ce commentaire"
|
|||||||
msgid "Edit UE"
|
msgid "Edit UE"
|
||||||
msgstr "Éditer l'UE"
|
msgstr "Éditer l'UE"
|
||||||
|
|
||||||
#: reservation/forms.py
|
|
||||||
msgid "The start must be set before the end"
|
|
||||||
msgstr "Le début doit être placé avant la fin"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "room name"
|
|
||||||
msgstr "Nom de la salle"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "room owner"
|
|
||||||
msgstr "propriétaire de la salle"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "The club which manages this room"
|
|
||||||
msgstr "Le club qui gère cette salle"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "site"
|
|
||||||
msgstr "site"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "reservable room"
|
|
||||||
msgstr "salle réservable"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "reservable rooms"
|
|
||||||
msgstr "salles réservables"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "reserved room"
|
|
||||||
msgstr "salle réservée"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "slot start"
|
|
||||||
msgstr "début du créneau"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "slot end"
|
|
||||||
msgstr "fin du créneau"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "reservation slot"
|
|
||||||
msgstr "créneau de réservation"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "reservation slots"
|
|
||||||
msgstr "créneaux de réservation"
|
|
||||||
|
|
||||||
#: reservation/models.py
|
|
||||||
msgid "There is already a reservation on this slot."
|
|
||||||
msgstr "Il y a déjà une réservation sur ce créneau."
|
|
||||||
|
|
||||||
#: reservation/templates/reservation/fragments/create_reservation.jinja
|
|
||||||
msgid "Book a room"
|
|
||||||
msgstr "Réserver une salle"
|
|
||||||
|
|
||||||
#: reservation/templates/reservation/schedule.jinja
|
|
||||||
msgid "You can book a room by selecting a free slot in the calendar."
|
|
||||||
msgstr ""
|
|
||||||
"Vous pouvez réserver une salle en sélectionnant un emplacement libre dans le "
|
|
||||||
"calendrier."
|
|
||||||
|
|
||||||
#: reservation/views.py
|
|
||||||
#, python-format
|
|
||||||
msgid "%(name)s was updated successfully"
|
|
||||||
msgstr "%(name)s a été mis à jour avec succès"
|
|
||||||
|
|
||||||
#: rootplace/forms.py
|
#: rootplace/forms.py
|
||||||
msgid "User that will be kept"
|
msgid "User that will be kept"
|
||||||
msgstr "Utilisateur qui sera conservé"
|
msgstr "Utilisateur qui sera conservé"
|
||||||
@@ -5330,8 +5405,6 @@ msgid "One day"
|
|||||||
msgstr "Un jour"
|
msgstr "Un jour"
|
||||||
|
|
||||||
#: sith/settings.py
|
#: sith/settings.py
|
||||||
#, fuzzy
|
|
||||||
#| msgid "GA staff member"
|
|
||||||
msgid "GA staff member"
|
msgid "GA staff member"
|
||||||
msgstr "Membre staff GA"
|
msgstr "Membre staff GA"
|
||||||
|
|
||||||
@@ -5876,3 +5949,39 @@ msgstr "Vous ne pouvez plus écrire de commentaires, la date est passée."
|
|||||||
#, python-format
|
#, python-format
|
||||||
msgid "Maximum characters: %(max_length)s"
|
msgid "Maximum characters: %(max_length)s"
|
||||||
msgstr "Nombre de caractères max: %(max_length)s"
|
msgstr "Nombre de caractères max: %(max_length)s"
|
||||||
|
|
||||||
|
#: eboutic/templates/eboutic/eboutic_main.jinja
|
||||||
|
msgid "Eurockéennes 2025 partnership"
|
||||||
|
msgstr "Partenariat Eurockéennes 2025"
|
||||||
|
|
||||||
|
#: eboutic/templates/eboutic/eboutic_main.jinja
|
||||||
|
msgid ""
|
||||||
|
"Our partner uses Weezevent to sell tickets. Weezevent may collect user info "
|
||||||
|
"according to its own privacy policy. By clicking the accept button you "
|
||||||
|
"consent to their terms of services."
|
||||||
|
msgstr ""
|
||||||
|
"Notre partenaire utilises Wezevent pour vendre ses billets. Weezevent peut "
|
||||||
|
"collecter des informations utilisateur conformément à sa propre politique de "
|
||||||
|
"confidentialité. En cliquant sur le bouton d'acceptation vous consentez à "
|
||||||
|
"leurs termes de service."
|
||||||
|
|
||||||
|
#: eboutic/templates/eboutic/eboutic_main.jinja
|
||||||
|
msgid "Privacy policy"
|
||||||
|
msgstr "Politique de confidentialité"
|
||||||
|
|
||||||
|
#: eboutic/templates/eboutic/eboutic_main.jinja
|
||||||
|
msgid ""
|
||||||
|
"You must be subscribed to benefit from the partnership with the Eurockéennes."
|
||||||
|
msgstr ""
|
||||||
|
"Vous devez être cotisant pour bénéficier du partenariat avec les "
|
||||||
|
"Eurockéennes."
|
||||||
|
|
||||||
|
#: eboutic/templates/eboutic/eboutic_main.jinja
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"This partnership offers a discount of up to 33%% on tickets for Friday, "
|
||||||
|
"Saturday and Sunday, as well as the 3-day package from Friday to Sunday."
|
||||||
|
msgstr ""
|
||||||
|
"Ce partenariat permet de profiter d'une réduction jusqu'à 33%% sur les "
|
||||||
|
"billets du vendredi, du samedi et du dimanche, ainsi qu'au forfait 3 jours, "
|
||||||
|
"du vendredi au dimanche."
|
||||||
|
|||||||
@@ -255,14 +255,6 @@ 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"
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ nav:
|
|||||||
- API:
|
- API:
|
||||||
- Développement: tutorial/api/dev.md
|
- Développement: tutorial/api/dev.md
|
||||||
- Connexion à l'API: tutorial/api/connect.md
|
- Connexion à l'API: tutorial/api/connect.md
|
||||||
|
- Liaison avec le compte AE: tutorial/api/account-link.md
|
||||||
- Etransactions: tutorial/etransaction.md
|
- Etransactions: tutorial/etransaction.md
|
||||||
- How-to:
|
- How-to:
|
||||||
- L'ORM de Django: howto/querysets.md
|
- L'ORM de Django: howto/querysets.md
|
||||||
@@ -91,6 +92,8 @@ nav:
|
|||||||
- reference/api/hashers.md
|
- reference/api/hashers.md
|
||||||
- reference/api/models.md
|
- reference/api/models.md
|
||||||
- reference/api/perms.md
|
- reference/api/perms.md
|
||||||
|
- reference/api/schemas.md
|
||||||
|
- reference/api/views.md
|
||||||
- club:
|
- club:
|
||||||
- reference/club/models.md
|
- reference/club/models.md
|
||||||
- reference/club/views.md
|
- reference/club/views.md
|
||||||
|
|||||||
2458
package-lock.json
generated
2458
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
31
package.json
31
package.json
@@ -8,8 +8,6 @@
|
|||||||
"compile-dev": "vite build --mode development",
|
"compile-dev": "vite build --mode development",
|
||||||
"serve": "vite build --mode development --watch --minify false",
|
"serve": "vite build --mode development --watch --minify false",
|
||||||
"openapi": "openapi-ts",
|
"openapi": "openapi-ts",
|
||||||
"analyse-dev": "vite-bundle-visualizer --mode development",
|
|
||||||
"analyse-prod": "vite-bundle-visualizer --mode production",
|
|
||||||
"check": "tsc && biome check --write"
|
"check": "tsc && biome check --write"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
@@ -23,39 +21,33 @@
|
|||||||
"#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.29.0",
|
"@babel/core": "^7.29.0",
|
||||||
"@babel/preset-env": "^7.29.0",
|
"@babel/preset-env": "^7.29.0",
|
||||||
"@biomejs/biome": "^2.3.14",
|
"@biomejs/biome": "^2.4.6",
|
||||||
"@hey-api/openapi-ts": "^0.92.4",
|
"@hey-api/openapi-ts": "^0.94.0",
|
||||||
"@rollup/plugin-inject": "^5.0.5",
|
"@rollup/plugin-inject": "^5.0.5",
|
||||||
"@types/alpinejs": "^3.13.11",
|
"@types/alpinejs": "^3.13.11",
|
||||||
"@types/cytoscape-cxtmenu": "^3.4.5",
|
"@types/cytoscape-cxtmenu": "^3.4.5",
|
||||||
"@types/cytoscape-klay": "^3.1.5",
|
"@types/cytoscape-klay": "^3.1.5",
|
||||||
"@types/js-cookie": "^3.0.6",
|
"@types/js-cookie": "^3.0.6",
|
||||||
|
"rollup-plugin-visualizer": "^7.0.1",
|
||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"vite": "^7.3.1",
|
"vite": "^8.0.0"
|
||||||
"vite-bundle-visualizer": "^1.2.1",
|
|
||||||
"vite-plugin-static-copy": "^3.2.0"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@alpinejs/morph": "^3.14.9",
|
|
||||||
"@alpinejs/sort": "^3.15.8",
|
"@alpinejs/sort": "^3.15.8",
|
||||||
"@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.7.5",
|
"@floating-ui/dom": "^1.7.6",
|
||||||
"@fortawesome/fontawesome-free": "^7.2.0",
|
"@fortawesome/fontawesome-free": "^7.2.0",
|
||||||
"@fullcalendar/core": "^6.1.20",
|
"@fullcalendar/core": "^6.1.20",
|
||||||
"@fullcalendar/daygrid": "^6.1.20",
|
"@fullcalendar/daygrid": "^6.1.20",
|
||||||
"@fullcalendar/icalendar": "^6.1.20",
|
"@fullcalendar/icalendar": "^6.1.20",
|
||||||
"@fullcalendar/interaction": "^6.1.19",
|
|
||||||
"@fullcalendar/list": "^6.1.20",
|
"@fullcalendar/list": "^6.1.20",
|
||||||
"@fullcalendar/resource": "^6.1.19",
|
"@sentry/browser": "^10.43.0",
|
||||||
"@fullcalendar/resource-timeline": "^6.1.19",
|
"@zip.js/zip.js": "^2.8.23",
|
||||||
"@sentry/browser": "^10.38.0",
|
|
||||||
"@zip.js/zip.js": "^2.8.20",
|
|
||||||
"3d-force-graph": "^1.79.1",
|
"3d-force-graph": "^1.79.1",
|
||||||
"alpinejs": "^3.15.8",
|
"alpinejs": "^3.15.8",
|
||||||
"chart.js": "^4.5.1",
|
"chart.js": "^4.5.1",
|
||||||
@@ -65,15 +57,14 @@
|
|||||||
"cytoscape-klay": "^3.1.4",
|
"cytoscape-klay": "^3.1.4",
|
||||||
"d3-force-3d": "^3.0.6",
|
"d3-force-3d": "^3.0.6",
|
||||||
"easymde": "^2.20.0",
|
"easymde": "^2.20.0",
|
||||||
"glob": "^13.0.2",
|
"glob": "^13.0.6",
|
||||||
"html2canvas": "^1.4.1",
|
"html2canvas": "^1.4.1",
|
||||||
"htmx-ext-alpine-morph": "^2.0.1",
|
|
||||||
"htmx.org": "^2.0.8",
|
"htmx.org": "^2.0.8",
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"lit-html": "^3.3.2",
|
"lit-html": "^3.3.2",
|
||||||
"native-file-system-adapter": "^3.0.1",
|
"native-file-system-adapter": "^3.0.1",
|
||||||
"three": "^0.182.0",
|
"three": "^0.183.2",
|
||||||
"three-spritetext": "^1.10.0",
|
"three-spritetext": "^1.10.0",
|
||||||
"tom-select": "^2.5.1"
|
"tom-select": "^2.5.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ authors = [
|
|||||||
license = { text = "GPL-3.0-only" }
|
license = { text = "GPL-3.0-only" }
|
||||||
requires-python = "<4.0,>=3.12"
|
requires-python = "<4.0,>=3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"django>=5.2.11,<6.0.0",
|
"django>=5.2.12,<6.0.0",
|
||||||
"django-ninja>=1.5.3,<6.0.0",
|
"django-ninja>=1.5.3,<6.0.0",
|
||||||
"django-ninja-extra>=0.31.0",
|
"django-ninja-extra>=0.31.0",
|
||||||
"Pillow>=12.1.1,<13.0.0",
|
"Pillow>=12.1.1,<13.0.0",
|
||||||
@@ -27,15 +27,15 @@ dependencies = [
|
|||||||
"django-jinja<3.0.0,>=2.11.0",
|
"django-jinja<3.0.0,>=2.11.0",
|
||||||
"cryptography>=46.0.5,<47.0.0",
|
"cryptography>=46.0.5,<47.0.0",
|
||||||
"django-phonenumber-field>=8.4.0,<9.0.0",
|
"django-phonenumber-field>=8.4.0,<9.0.0",
|
||||||
"phonenumbers>=9.0.23,<10.0.0",
|
"phonenumbers>=9.0.25,<10.0.0",
|
||||||
"reportlab>=4.4.9,<5.0.0",
|
"reportlab>=4.4.10,<5.0.0",
|
||||||
"django-haystack<4.0.0,>=3.3.0",
|
"django-haystack<4.0.0,>=3.3.0",
|
||||||
"xapian-haystack<4.0.0,>=3.1.0",
|
"xapian-haystack<4.0.0,>=3.1.0",
|
||||||
"libsass<1.0.0,>=0.23.0",
|
"libsass<1.0.0,>=0.23.0",
|
||||||
"django-ordered-model<4.0.0,>=3.7.4",
|
"django-ordered-model<4.0.0,>=3.7.4",
|
||||||
"django-simple-captcha<1.0.0,>=0.6.3",
|
"django-simple-captcha<1.0.0,>=0.6.3",
|
||||||
"python-dateutil<3.0.0.0,>=2.9.0.post0",
|
"python-dateutil<3.0.0.0,>=2.9.0.post0",
|
||||||
"sentry-sdk>=2.52.0,<3.0.0",
|
"sentry-sdk>=2.54.0,<3.0.0",
|
||||||
"jinja2<4.0.0,>=3.1.6",
|
"jinja2<4.0.0,>=3.1.6",
|
||||||
"django-countries>=8.2.0,<9.0.0",
|
"django-countries>=8.2.0,<9.0.0",
|
||||||
"dict2xml>=1.7.8,<2.0.0",
|
"dict2xml>=1.7.8,<2.0.0",
|
||||||
@@ -51,7 +51,7 @@ dependencies = [
|
|||||||
"psutil>=7.2.2,<8.0.0",
|
"psutil>=7.2.2,<8.0.0",
|
||||||
"celery[redis]>=5.6.2,<7",
|
"celery[redis]>=5.6.2,<7",
|
||||||
"django-celery-results>=2.5.1",
|
"django-celery-results>=2.5.1",
|
||||||
"django-celery-beat>=2.7.0",
|
"django-celery-beat>=2.9.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
@@ -60,31 +60,31 @@ documentation = "https://sith-ae.readthedocs.io/"
|
|||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
prod = [
|
prod = [
|
||||||
"psycopg[c]>=3.3.2,<4.0.0",
|
"psycopg[c]>=3.3.3,<4.0.0",
|
||||||
]
|
]
|
||||||
dev = [
|
dev = [
|
||||||
"django-debug-toolbar>=6.2.0,<7",
|
"django-debug-toolbar>=6.2.0,<7",
|
||||||
"ipython>=9.10.0,<10.0.0",
|
"ipython>=9.11.0,<10.0.0",
|
||||||
"pre-commit>=4.5.1,<5.0.0",
|
"pre-commit>=4.5.1,<5.0.0",
|
||||||
"ruff>=0.15.0,<1.0.0",
|
"ruff>=0.15.5,<1.0.0",
|
||||||
"djhtml>=3.0.10,<4.0.0",
|
"djhtml>=3.0.10,<4.0.0",
|
||||||
"faker>=40.4.0,<41.0.0",
|
"faker>=40.8.0,<41.0.0",
|
||||||
"rjsmin>=1.2.5,<2.0.0",
|
"rjsmin>=1.2.5,<2.0.0",
|
||||||
]
|
]
|
||||||
tests = [
|
tests = [
|
||||||
"freezegun>=1.5.5,<2.0.0",
|
"freezegun>=1.5.5,<2.0.0",
|
||||||
"pytest>=9.0.2,<10.0.0",
|
"pytest>=9.0.2,<10.0.0",
|
||||||
"pytest-cov>=7.0.0,<8.0.0",
|
"pytest-cov>=7.0.0,<8.0.0",
|
||||||
"pytest-django<5.0.0,>=4.10.0",
|
"pytest-django<5.0.0,>=4.12.0",
|
||||||
"model-bakery<2.0.0,>=1.23.2",
|
"model-bakery<2.0.0,>=1.23.3",
|
||||||
"beautifulsoup4>=4.14.3,<5",
|
"beautifulsoup4>=4.14.3,<5",
|
||||||
"lxml>=6.0.2,<7",
|
"lxml>=6.0.2,<7",
|
||||||
]
|
]
|
||||||
docs = [
|
docs = [
|
||||||
"mkdocs<2.0.0,>=1.6.1",
|
"mkdocs<2.0.0,>=1.6.1",
|
||||||
"mkdocs-material>=9.7.1,<10.0.0",
|
"mkdocs-material>=9.7.5,<10.0.0",
|
||||||
"mkdocstrings>=1.0.3,<2.0.0",
|
"mkdocstrings>=1.0.3,<2.0.0",
|
||||||
"mkdocstrings-python>=2.0.2,<3.0.0",
|
"mkdocstrings-python>=2.0.3,<3.0.0",
|
||||||
"mkdocs-include-markdown-plugin>=7.2.1,<8.0.0",
|
"mkdocs-include-markdown-plugin>=7.2.1,<8.0.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
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"
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
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)
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
from django.apps import AppConfig
|
|
||||||
|
|
||||||
|
|
||||||
class ReservationConfig(AppConfig):
|
|
||||||
default_auto_field = "django.db.models.BigAutoField"
|
|
||||||
name = "reservation"
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
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)
|
|
||||||
@@ -1,117 +0,0 @@
|
|||||||
# 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",
|
|
||||||
)
|
|
||||||
],
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
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."))
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -1,136 +0,0 @@
|
|||||||
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 interactionPlugin, { type EventResizeDoneArg } from "@fullcalendar/interaction";
|
|
||||||
import resourceTimelinePlugin from "@fullcalendar/resource-timeline";
|
|
||||||
import { paginated } from "#core:utils/api";
|
|
||||||
import { inheritHtmlElement, registerComponent } from "#core:utils/web-components";
|
|
||||||
import {
|
|
||||||
type ReservationslotFetchSlotsData,
|
|
||||||
reservableroomFetchRooms,
|
|
||||||
reservationslotFetchSlots,
|
|
||||||
reservationslotUpdateSlot,
|
|
||||||
type SlotSchema,
|
|
||||||
} from "#openapi";
|
|
||||||
import type { SlotSelectedEventArg } from "#reservation:reservation/types";
|
|
||||||
|
|
||||||
@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 | EventResizeDoneArg) {
|
|
||||||
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,
|
|
||||||
eventResize: this.changeReservation,
|
|
||||||
});
|
|
||||||
this.scheduler.render();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
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,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
});
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
export interface SlotSelectedEventArg {
|
|
||||||
start: string;
|
|
||||||
end: string;
|
|
||||||
ressource: number;
|
|
||||||
}
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
#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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
<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>
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
{% 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 %}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
{% 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 %}
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -1,207 +0,0 @@
|
|||||||
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
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user