mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-13 11:35:44 +00:00
Compare commits
4 Commits
subscripti
...
trim-galax
Author | SHA1 | Date | |
---|---|---|---|
|
32f63fb57f | ||
|
b767079c5a | ||
|
37961e437b | ||
|
b97a1a2e56 |
@@ -560,7 +560,7 @@ class User(AbstractUser):
|
|||||||
"""Determine if the object is owned by the user."""
|
"""Determine if the object is owned by the user."""
|
||||||
if hasattr(obj, "is_owned_by") and obj.is_owned_by(self):
|
if hasattr(obj, "is_owned_by") and obj.is_owned_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "owner_group") and self.is_in_group(pk=obj.owner_group.id):
|
if hasattr(obj, "owner_group") and self.is_in_group(pk=obj.owner_group_id):
|
||||||
return True
|
return True
|
||||||
return self.is_root
|
return self.is_root
|
||||||
|
|
||||||
@@ -569,9 +569,15 @@ class User(AbstractUser):
|
|||||||
if hasattr(obj, "can_be_edited_by") and obj.can_be_edited_by(self):
|
if hasattr(obj, "can_be_edited_by") and obj.can_be_edited_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "edit_groups"):
|
if hasattr(obj, "edit_groups"):
|
||||||
for pk in obj.edit_groups.values_list("pk", flat=True):
|
if (
|
||||||
if self.is_in_group(pk=pk):
|
hasattr(obj, "_prefetched_objects_cache")
|
||||||
return True
|
and "edit_groups" in obj._prefetched_objects_cache
|
||||||
|
):
|
||||||
|
pks = [g.id for g in obj.edit_groups.all()]
|
||||||
|
else:
|
||||||
|
pks = list(obj.edit_groups.values_list("id", flat=True))
|
||||||
|
if any(self.is_in_group(pk=pk) for pk in pks):
|
||||||
|
return True
|
||||||
if isinstance(obj, User) and obj == self:
|
if isinstance(obj, User) and obj == self:
|
||||||
return True
|
return True
|
||||||
return self.is_owner(obj)
|
return self.is_owner(obj)
|
||||||
@@ -581,9 +587,18 @@ class User(AbstractUser):
|
|||||||
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
||||||
return True
|
return True
|
||||||
if hasattr(obj, "view_groups"):
|
if hasattr(obj, "view_groups"):
|
||||||
for pk in obj.view_groups.values_list("pk", flat=True):
|
# if "view_groups" has already been prefetched, use
|
||||||
if self.is_in_group(pk=pk):
|
# the prefetch cache, else fetch only the ids, to make
|
||||||
return True
|
# the query lighter.
|
||||||
|
if (
|
||||||
|
hasattr(obj, "_prefetched_objects_cache")
|
||||||
|
and "view_groups" in obj._prefetched_objects_cache
|
||||||
|
):
|
||||||
|
pks = [g.id for g in obj.view_groups.all()]
|
||||||
|
else:
|
||||||
|
pks = list(obj.view_groups.values_list("id", flat=True))
|
||||||
|
if any(self.is_in_group(pk=pk) for pk in pks):
|
||||||
|
return True
|
||||||
return self.can_edit(obj)
|
return self.can_edit(obj)
|
||||||
|
|
||||||
def can_be_edited_by(self, user):
|
def can_be_edited_by(self, user):
|
||||||
@@ -1384,9 +1399,9 @@ class Page(models.Model):
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def is_club_page(self):
|
def is_club_page(self):
|
||||||
club_root_page = Page.objects.filter(name=settings.SITH_CLUB_ROOT_PAGE).first()
|
return (
|
||||||
return club_root_page is not None and (
|
self.name == settings.SITH_CLUB_ROOT_PAGE
|
||||||
self == club_root_page or club_root_page in self.get_parent_list()
|
or settings.SITH_CLUB_ROOT_PAGE in [p.name for p in self.get_parent_list()]
|
||||||
)
|
)
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
|
@@ -5,16 +5,12 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if page_list %}
|
<h3>{% trans %}Page list{% endtrans %}</h3>
|
||||||
<h3>{% trans %}Page list{% endtrans %}</h3>
|
<ul>
|
||||||
<ul>
|
{% for p in page_list %}
|
||||||
{% for p in page_list %}
|
<li><a href="{{ p.get_absolute_url() }}">{{ p.display_name }}</a></li>
|
||||||
<li><a href="{{ p.get_absolute_url() }}">{{ p.get_display_name() }}</a></li>
|
{% endfor %}
|
||||||
{% endfor %}
|
</ul>
|
||||||
</ul>
|
|
||||||
{% else %}
|
|
||||||
{% trans %}There is no page in this website.{% endtrans %}
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -12,7 +12,10 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
from django.contrib.auth.mixins import PermissionRequiredMixin
|
from django.contrib.auth.mixins import PermissionRequiredMixin
|
||||||
|
from django.db.models import F, OuterRef, Subquery
|
||||||
|
from django.db.models.functions import Coalesce
|
||||||
|
|
||||||
# This file contains all the views that concern the page model
|
# This file contains all the views that concern the page model
|
||||||
from django.forms.models import modelform_factory
|
from django.forms.models import modelform_factory
|
||||||
@@ -43,6 +46,20 @@ class CanEditPagePropMixin(CanEditPropMixin):
|
|||||||
class PageListView(CanViewMixin, ListView):
|
class PageListView(CanViewMixin, ListView):
|
||||||
model = Page
|
model = Page
|
||||||
template_name = "core/page_list.jinja"
|
template_name = "core/page_list.jinja"
|
||||||
|
queryset = (
|
||||||
|
Page.objects.annotate(
|
||||||
|
display_name=Coalesce(
|
||||||
|
Subquery(
|
||||||
|
PageRev.objects.filter(page=OuterRef("id"))
|
||||||
|
.order_by("-date")
|
||||||
|
.values("title")[:1]
|
||||||
|
),
|
||||||
|
F("name"),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.prefetch_related("view_groups")
|
||||||
|
.select_related("parent")
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class PageView(CanViewMixin, DetailView):
|
class PageView(CanViewMixin, DetailView):
|
||||||
|
@@ -45,8 +45,9 @@ class Command(BaseCommand):
|
|||||||
"verbosity level should be between 0 and 2 included", stacklevel=2
|
"verbosity level should be between 0 and 2 included", stacklevel=2
|
||||||
)
|
)
|
||||||
|
|
||||||
if options["verbosity"] == 2:
|
if options["verbosity"] >= 2:
|
||||||
logger.setLevel(logging.DEBUG)
|
logger.setLevel(logging.DEBUG)
|
||||||
|
logging.getLogger("django.db.backends").setLevel(logging.DEBUG)
|
||||||
elif options["verbosity"] == 1:
|
elif options["verbosity"] == 1:
|
||||||
logger.setLevel(logging.INFO)
|
logger.setLevel(logging.INFO)
|
||||||
else:
|
else:
|
||||||
@@ -59,6 +60,3 @@ class Command(BaseCommand):
|
|||||||
Galaxy.objects.filter(state__isnull=True).delete()
|
Galaxy.objects.filter(state__isnull=True).delete()
|
||||||
|
|
||||||
logger.info("Ruled the galaxy in {} queries.".format(len(connection.queries)))
|
logger.info("Ruled the galaxy in {} queries.".format(len(connection.queries)))
|
||||||
if options["verbosity"] > 2:
|
|
||||||
for q in connection.queries:
|
|
||||||
logger.debug(q)
|
|
||||||
|
@@ -31,13 +31,14 @@ from collections import defaultdict
|
|||||||
from typing import NamedTuple, TypedDict
|
from typing import NamedTuple, TypedDict
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models import Count, F, Q, QuerySet
|
from django.db.models import Count, Exists, F, OuterRef, Q, QuerySet
|
||||||
from django.utils.timezone import localdate
|
from django.utils.timezone import localdate, now
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
from club.models import Membership
|
from club.models import Membership
|
||||||
from core.models import User
|
from core.models import User
|
||||||
from sas.models import PeoplePictureRelation, Picture
|
from sas.models import PeoplePictureRelation, Picture
|
||||||
|
from subscription.models import Subscription
|
||||||
|
|
||||||
|
|
||||||
class GalaxyStar(models.Model):
|
class GalaxyStar(models.Model):
|
||||||
@@ -198,8 +199,16 @@ class Galaxy(models.Model):
|
|||||||
cls, picture_count_threshold: int = DEFAULT_PICTURE_COUNT_THRESHOLD
|
cls, picture_count_threshold: int = DEFAULT_PICTURE_COUNT_THRESHOLD
|
||||||
) -> QuerySet[User]:
|
) -> QuerySet[User]:
|
||||||
return (
|
return (
|
||||||
User.objects.exclude(subscriptions=None)
|
User.objects.filter(is_subscriber_viewable=True)
|
||||||
.annotate(pictures_count=Count("pictures"))
|
.exclude(subscriptions=None)
|
||||||
|
.annotate(
|
||||||
|
pictures_count=Count("pictures"),
|
||||||
|
is_active_in_galaxy=Exists(
|
||||||
|
Subscription.objects.filter(
|
||||||
|
member=OuterRef("id"), subscription_end__gt=now()
|
||||||
|
)
|
||||||
|
),
|
||||||
|
)
|
||||||
.filter(pictures_count__gt=picture_count_threshold)
|
.filter(pictures_count__gt=picture_count_threshold)
|
||||||
.distinct()
|
.distinct()
|
||||||
)
|
)
|
||||||
@@ -290,9 +299,9 @@ class Galaxy(models.Model):
|
|||||||
31/12/2022 (also two years, but with an offset of one year), then their
|
31/12/2022 (also two years, but with an offset of one year), then their
|
||||||
club score is 365.
|
club score is 365.
|
||||||
"""
|
"""
|
||||||
memberships = user.memberships.only("start_date", "end_date", "club_id")
|
memberships = user.memberships.values("start_date", "end_date", "club_id")
|
||||||
result = defaultdict(int)
|
result = defaultdict(int)
|
||||||
now = localdate()
|
today = localdate()
|
||||||
for membership in memberships:
|
for membership in memberships:
|
||||||
# This is a N+1 query, but 92% of galaxy users have less than 10 memberships.
|
# This is a N+1 query, but 92% of galaxy users have less than 10 memberships.
|
||||||
# Only 5 users have more than 30 memberships.
|
# Only 5 users have more than 30 memberships.
|
||||||
@@ -300,23 +309,23 @@ class Galaxy(models.Model):
|
|||||||
Membership.objects.exclude(user=user)
|
Membership.objects.exclude(user=user)
|
||||||
.filter(
|
.filter(
|
||||||
Q( # start2 <= start1 <= end2
|
Q( # start2 <= start1 <= end2
|
||||||
start_date__lte=membership.start_date,
|
start_date__lte=membership["start_date"],
|
||||||
end_date__gte=membership.start_date,
|
end_date__gte=membership["start_date"],
|
||||||
)
|
)
|
||||||
| Q( # start2 <= start1 <= now
|
| Q( # start2 <= start1 <= today
|
||||||
start_date__lte=membership.start_date, end_date=None
|
start_date__lte=membership["start_date"], end_date=None
|
||||||
)
|
)
|
||||||
| Q( # start1 <= start2 <= end2
|
| Q( # start1 <= start2 <= end2
|
||||||
start_date__gte=membership.start_date,
|
start_date__gte=membership["start_date"],
|
||||||
start_date__lte=membership.end_date or now,
|
start_date__lte=membership["end_date"] or today,
|
||||||
),
|
),
|
||||||
club_id=membership.club_id,
|
club_id=membership["club_id"],
|
||||||
)
|
)
|
||||||
.only("start_date", "end_date", "user_id")
|
.only("start_date", "end_date", "user_id")
|
||||||
)
|
)
|
||||||
for other in common_memberships:
|
for other in common_memberships:
|
||||||
start = max(membership.start_date, other.start_date)
|
start = max(membership["start_date"], other.start_date)
|
||||||
end = min(membership.end_date or now, other.end_date or now)
|
end = min(membership["end_date"] or today, other.end_date or today)
|
||||||
result[other.user_id] += (end - start).days * cls.CLUBS_POINTS
|
result[other.user_id] += (end - start).days * cls.CLUBS_POINTS
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@@ -382,18 +391,22 @@ class Galaxy(models.Model):
|
|||||||
# this is memory expensive but prevents a lot of db hits, therefore
|
# this is memory expensive but prevents a lot of db hits, therefore
|
||||||
# is far more time efficient
|
# is far more time efficient
|
||||||
|
|
||||||
rulable_users = list(self.get_rulable_users(picture_count_threshold))
|
rulable_users_qs = self.get_rulable_users(picture_count_threshold)
|
||||||
rulable_users_count = len(rulable_users)
|
active_users_count = rulable_users_qs.filter(is_active_in_galaxy=True).count()
|
||||||
|
rulable_users = list(rulable_users_qs)
|
||||||
user1_count = 0
|
user1_count = 0
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"{rulable_users_count} citizen have been listed. Starting to rule."
|
f" {len(rulable_users)} citizens (with {active_users_count} active ones) "
|
||||||
|
f"have been listed. Starting to rule."
|
||||||
)
|
)
|
||||||
|
|
||||||
self.logger.info("Creating stars for all citizen")
|
self.logger.info("Creating stars for all citizen")
|
||||||
individual_scores = self.compute_individual_scores()
|
individual_scores = self.compute_individual_scores()
|
||||||
GalaxyStar.objects.bulk_create(
|
GalaxyStar.objects.bulk_create(
|
||||||
[
|
[
|
||||||
GalaxyStar(owner=user, galaxy=self, mass=individual_scores[user.id])
|
GalaxyStar(
|
||||||
|
owner_id=user.id, galaxy=self, mass=individual_scores[user.id]
|
||||||
|
)
|
||||||
for user in rulable_users
|
for user in rulable_users
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@@ -405,9 +418,9 @@ class Galaxy(models.Model):
|
|||||||
t_global_start = time.time()
|
t_global_start = time.time()
|
||||||
while len(rulable_users) > 0:
|
while len(rulable_users) > 0:
|
||||||
user1 = rulable_users.pop()
|
user1 = rulable_users.pop()
|
||||||
|
if not user1.is_active_in_galaxy:
|
||||||
|
continue
|
||||||
user1_count += 1
|
user1_count += 1
|
||||||
rulable_users_count2 = len(rulable_users)
|
|
||||||
|
|
||||||
star1 = stars[user1.id]
|
star1 = stars[user1.id]
|
||||||
|
|
||||||
lanes = []
|
lanes = []
|
||||||
@@ -448,17 +461,20 @@ class Galaxy(models.Model):
|
|||||||
self.logger.info("")
|
self.logger.info("")
|
||||||
self.logger.info(f" Ruling of {self} ".center(60, "#"))
|
self.logger.info(f" Ruling of {self} ".center(60, "#"))
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"Progression: {user1_count}/{rulable_users_count} "
|
f"Progression: {user1_count}/{active_users_count} "
|
||||||
f"citizen -- {rulable_users_count - user1_count} remaining"
|
f"citizen -- {active_users_count - user1_count} remaining"
|
||||||
)
|
)
|
||||||
self.logger.info(f"Speed: {global_avg_speed:.2f} citizen per second")
|
self.logger.info(f"Speed: {global_avg_speed:.2f} citizen per second")
|
||||||
eta = rulable_users_count2 // global_avg_speed
|
eta = len(rulable_users) // global_avg_speed
|
||||||
self.logger.info(
|
self.logger.info(
|
||||||
f"ETA: {int(eta // 60 % 60)} minutes {int(eta % 60)} seconds"
|
f"ETA: {int(eta // 60 % 60)} minutes {int(eta % 60)} seconds"
|
||||||
)
|
)
|
||||||
self.logger.info("#" * 60)
|
self.logger.info("#" * 60)
|
||||||
t_global_start = time.time()
|
t_global_start = time.time()
|
||||||
|
|
||||||
|
count, _ = self.stars.filter(Q(lanes1=None) & Q(lanes2=None)).delete()
|
||||||
|
self.logger.info(f"{count} orphan stars have been trimmed.")
|
||||||
|
|
||||||
# Here, we get the IDs of the old galaxies that we'll need to delete. In normal operation, only one galaxy
|
# Here, we get the IDs of the old galaxies that we'll need to delete. In normal operation, only one galaxy
|
||||||
# should be returned, and we can't delete it yet, as it's the one still displayed by the Sith.
|
# should be returned, and we can't delete it yet, as it's the one still displayed by the Sith.
|
||||||
old_galaxies_pks = list(
|
old_galaxies_pks = list(
|
||||||
|
@@ -122,7 +122,7 @@ class TestGalaxyModel(TestCase):
|
|||||||
self.com,
|
self.com,
|
||||||
]
|
]
|
||||||
|
|
||||||
with self.assertNumQueries(44):
|
with self.assertNumQueries(38):
|
||||||
while len(users) > 0:
|
while len(users) > 0:
|
||||||
user1 = users.pop(0)
|
user1 = users.pop(0)
|
||||||
family_scores = Galaxy.compute_user_family_score(user1)
|
family_scores = Galaxy.compute_user_family_score(user1)
|
||||||
@@ -150,7 +150,7 @@ class TestGalaxyModel(TestCase):
|
|||||||
that the number of queries to rule the galaxy is stable.
|
that the number of queries to rule the galaxy is stable.
|
||||||
"""
|
"""
|
||||||
galaxy = Galaxy.objects.create()
|
galaxy = Galaxy.objects.create()
|
||||||
with self.assertNumQueries(39):
|
with self.assertNumQueries(36):
|
||||||
galaxy.rule(0) # We want everybody here
|
galaxy.rule(0) # We want everybody here
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user