2020-01-21 06:35:58 +00:00
|
|
|
from operator import mul
|
2023-08-24 03:14:09 +00:00
|
|
|
import os
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.core.validators import RegexValidator
|
|
|
|
from django.db import models
|
2020-06-24 01:46:33 +00:00
|
|
|
from django.db.models import Max, CASCADE
|
2020-01-21 06:35:58 +00:00
|
|
|
from django.urls import reverse
|
|
|
|
from django.utils.functional import cached_property
|
|
|
|
from django.utils.timezone import now
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
2023-10-11 00:37:36 +00:00
|
|
|
from django.dispatch import receiver
|
|
|
|
from django.db.models.signals import post_save, pre_save
|
2023-10-11 05:08:26 +00:00
|
|
|
|
2023-10-11 00:37:36 +00:00
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
from fernet_fields import EncryptedCharField
|
|
|
|
from sortedm2m.fields import SortedManyToManyField
|
|
|
|
|
2024-02-26 20:49:52 +00:00
|
|
|
from judge.models.choices import ACE_THEMES, TIMEZONE
|
2020-01-21 06:35:58 +00:00
|
|
|
from judge.models.runtime import Language
|
|
|
|
from judge.ratings import rating_class
|
2023-10-10 22:38:48 +00:00
|
|
|
from judge.caching import cache_wrapper
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2022-09-01 04:18:38 +00:00
|
|
|
|
2022-05-14 17:57:27 +00:00
|
|
|
__all__ = ["Organization", "Profile", "OrganizationRequest", "Friend"]
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EncryptedNullCharField(EncryptedCharField):
|
|
|
|
def get_prep_value(self, value):
|
|
|
|
if not value:
|
|
|
|
return None
|
|
|
|
return super(EncryptedNullCharField, self).get_prep_value(value)
|
|
|
|
|
|
|
|
|
2023-08-24 03:14:09 +00:00
|
|
|
def profile_image_path(profile, filename):
|
|
|
|
tail = filename.split(".")[-1]
|
|
|
|
new_filename = f"user_{profile.id}.{tail}"
|
|
|
|
return os.path.join(settings.DMOJ_PROFILE_IMAGE_ROOT, new_filename)
|
|
|
|
|
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
class Organization(models.Model):
|
2022-05-14 17:57:27 +00:00
|
|
|
name = models.CharField(max_length=128, verbose_name=_("organization title"))
|
|
|
|
slug = models.SlugField(
|
|
|
|
max_length=128,
|
|
|
|
verbose_name=_("organization slug"),
|
|
|
|
help_text=_("Organization name shown in URL"),
|
2023-01-24 02:36:44 +00:00
|
|
|
unique=True,
|
2023-01-25 19:13:42 +00:00
|
|
|
validators=[
|
|
|
|
RegexValidator("^[-a-zA-Z0-9]+$", _("Only alphanumeric and hyphens"))
|
|
|
|
],
|
2022-05-14 17:57:27 +00:00
|
|
|
)
|
|
|
|
short_name = models.CharField(
|
|
|
|
max_length=20,
|
|
|
|
verbose_name=_("short name"),
|
|
|
|
help_text=_("Displayed beside user name during contests"),
|
|
|
|
)
|
2024-04-12 17:09:40 +00:00
|
|
|
about = models.CharField(
|
|
|
|
max_length=10000, verbose_name=_("organization description")
|
|
|
|
)
|
2022-05-14 17:57:27 +00:00
|
|
|
registrant = models.ForeignKey(
|
|
|
|
"Profile",
|
|
|
|
verbose_name=_("registrant"),
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
related_name="registrant+",
|
|
|
|
help_text=_("User who registered this organization"),
|
|
|
|
)
|
|
|
|
admins = models.ManyToManyField(
|
|
|
|
"Profile",
|
|
|
|
verbose_name=_("administrators"),
|
|
|
|
related_name="admin_of",
|
|
|
|
help_text=_("Those who can edit this organization"),
|
|
|
|
)
|
|
|
|
creation_date = models.DateTimeField(
|
|
|
|
verbose_name=_("creation date"), auto_now_add=True
|
|
|
|
)
|
|
|
|
is_open = models.BooleanField(
|
|
|
|
verbose_name=_("is open organization?"),
|
|
|
|
help_text=_("Allow joining organization"),
|
|
|
|
default=True,
|
|
|
|
)
|
|
|
|
slots = models.IntegerField(
|
|
|
|
verbose_name=_("maximum size"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
help_text=_(
|
|
|
|
"Maximum amount of users in this organization, "
|
|
|
|
"only applicable to private organizations"
|
|
|
|
),
|
|
|
|
)
|
|
|
|
access_code = models.CharField(
|
|
|
|
max_length=7,
|
|
|
|
help_text=_("Student access code"),
|
|
|
|
verbose_name=_("access code"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
logo_override_image = models.CharField(
|
|
|
|
verbose_name=_("Logo override image"),
|
|
|
|
default="",
|
|
|
|
max_length=150,
|
|
|
|
blank=True,
|
|
|
|
help_text=_(
|
|
|
|
"This image will replace the default site logo for users "
|
|
|
|
"viewing the organization."
|
|
|
|
),
|
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
def __contains__(self, item):
|
|
|
|
if isinstance(item, int):
|
|
|
|
return self.members.filter(id=item).exists()
|
|
|
|
elif isinstance(item, Profile):
|
|
|
|
return self.members.filter(id=item.id).exists()
|
|
|
|
else:
|
2022-05-14 17:57:27 +00:00
|
|
|
raise TypeError(
|
|
|
|
"Organization membership test must be Profile or primany key"
|
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2023-08-25 23:12:53 +00:00
|
|
|
def delete(self, *args, **kwargs):
|
|
|
|
contests = self.contest_set
|
|
|
|
for contest in contests.all():
|
|
|
|
if contest.organizations.count() == 1:
|
|
|
|
contest.delete()
|
|
|
|
super().delete(*args, **kwargs)
|
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def get_absolute_url(self):
|
2022-05-14 17:57:27 +00:00
|
|
|
return reverse("organization_home", args=(self.id, self.slug))
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
def get_users_url(self):
|
2022-05-14 17:57:27 +00:00
|
|
|
return reverse("organization_users", args=(self.id, self.slug))
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2022-05-28 04:28:22 +00:00
|
|
|
def get_problems_url(self):
|
|
|
|
return reverse("organization_problems", args=(self.id, self.slug))
|
|
|
|
|
|
|
|
def get_contests_url(self):
|
|
|
|
return reverse("organization_contests", args=(self.id, self.slug))
|
|
|
|
|
2022-06-07 22:11:30 +00:00
|
|
|
def get_submissions_url(self):
|
|
|
|
return reverse("organization_submissions", args=(self.id, self.slug))
|
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
class Meta:
|
2022-05-14 17:57:27 +00:00
|
|
|
ordering = ["name"]
|
2020-01-21 06:35:58 +00:00
|
|
|
permissions = (
|
2022-05-14 17:57:27 +00:00
|
|
|
("organization_admin", "Administer organizations"),
|
|
|
|
("edit_all_organization", "Edit all organizations"),
|
2020-01-21 06:35:58 +00:00
|
|
|
)
|
2022-05-14 17:57:27 +00:00
|
|
|
verbose_name = _("organization")
|
|
|
|
verbose_name_plural = _("organizations")
|
2023-10-10 22:38:48 +00:00
|
|
|
app_label = "judge"
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Profile(models.Model):
|
2022-05-14 17:57:27 +00:00
|
|
|
user = models.OneToOneField(
|
|
|
|
User, verbose_name=_("user associated"), on_delete=models.CASCADE
|
|
|
|
)
|
2024-04-12 17:09:40 +00:00
|
|
|
about = models.CharField(
|
|
|
|
max_length=10000, verbose_name=_("self-description"), null=True, blank=True
|
|
|
|
)
|
2022-05-14 17:57:27 +00:00
|
|
|
timezone = models.CharField(
|
|
|
|
max_length=50,
|
|
|
|
verbose_name=_("location"),
|
|
|
|
choices=TIMEZONE,
|
|
|
|
default=settings.DEFAULT_USER_TIME_ZONE,
|
|
|
|
)
|
|
|
|
language = models.ForeignKey(
|
|
|
|
"Language",
|
|
|
|
verbose_name=_("preferred language"),
|
|
|
|
on_delete=models.SET_DEFAULT,
|
|
|
|
default=Language.get_default_language_pk,
|
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
points = models.FloatField(default=0, db_index=True)
|
|
|
|
performance_points = models.FloatField(default=0, db_index=True)
|
|
|
|
problem_count = models.IntegerField(default=0, db_index=True)
|
2022-05-14 17:57:27 +00:00
|
|
|
ace_theme = models.CharField(max_length=30, choices=ACE_THEMES, default="github")
|
|
|
|
last_access = models.DateTimeField(verbose_name=_("last access time"), default=now)
|
|
|
|
ip = models.GenericIPAddressField(verbose_name=_("last IP"), blank=True, null=True)
|
|
|
|
organizations = SortedManyToManyField(
|
|
|
|
Organization,
|
|
|
|
verbose_name=_("organization"),
|
|
|
|
blank=True,
|
|
|
|
related_name="members",
|
|
|
|
related_query_name="member",
|
|
|
|
)
|
|
|
|
display_rank = models.CharField(
|
|
|
|
max_length=10,
|
|
|
|
default="user",
|
|
|
|
verbose_name=_("display rank"),
|
|
|
|
choices=(
|
|
|
|
("user", "Normal User"),
|
|
|
|
("setter", "Problem Setter"),
|
|
|
|
("admin", "Admin"),
|
|
|
|
),
|
2023-08-28 19:20:35 +00:00
|
|
|
db_index=True,
|
2022-05-14 17:57:27 +00:00
|
|
|
)
|
|
|
|
mute = models.BooleanField(
|
|
|
|
verbose_name=_("comment mute"),
|
|
|
|
help_text=_("Some users are at their best when silent."),
|
|
|
|
default=False,
|
|
|
|
)
|
|
|
|
is_unlisted = models.BooleanField(
|
|
|
|
verbose_name=_("unlisted user"),
|
|
|
|
help_text=_("User will not be ranked."),
|
|
|
|
default=False,
|
|
|
|
)
|
2022-03-10 05:38:29 +00:00
|
|
|
is_banned_problem_voting = models.BooleanField(
|
2022-05-14 17:57:27 +00:00
|
|
|
verbose_name=_("banned from voting"),
|
2022-03-10 05:38:29 +00:00
|
|
|
help_text=_("User will not be able to vote on problems' point values."),
|
|
|
|
default=False,
|
|
|
|
)
|
2023-10-11 00:37:36 +00:00
|
|
|
rating = models.IntegerField(null=True, default=None, db_index=True)
|
2022-05-14 17:57:27 +00:00
|
|
|
current_contest = models.OneToOneField(
|
|
|
|
"ContestParticipation",
|
|
|
|
verbose_name=_("current contest"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
related_name="+",
|
|
|
|
on_delete=models.SET_NULL,
|
|
|
|
)
|
|
|
|
is_totp_enabled = models.BooleanField(
|
|
|
|
verbose_name=_("2FA enabled"),
|
|
|
|
default=False,
|
|
|
|
help_text=_("check to enable TOTP-based two factor authentication"),
|
|
|
|
)
|
|
|
|
totp_key = EncryptedNullCharField(
|
|
|
|
max_length=32,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
verbose_name=_("TOTP key"),
|
|
|
|
help_text=_("32 character base32-encoded key for TOTP"),
|
|
|
|
validators=[
|
|
|
|
RegexValidator("^$|^[A-Z2-7]{32}$", _("TOTP key must be empty or base32"))
|
|
|
|
],
|
|
|
|
)
|
|
|
|
notes = models.TextField(
|
|
|
|
verbose_name=_("internal notes"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
help_text=_("Notes for administrators regarding this user."),
|
|
|
|
)
|
2023-08-24 03:14:09 +00:00
|
|
|
profile_image = models.ImageField(upload_to=profile_image_path, null=True)
|
2023-08-25 20:36:38 +00:00
|
|
|
email_change_pending = models.EmailField(blank=True, null=True)
|
2023-09-02 00:42:58 +00:00
|
|
|
css_background = models.TextField(
|
|
|
|
verbose_name=_("Custom background"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
help_text=_('CSS custom background properties: url("image_url"), color, etc'),
|
|
|
|
max_length=300,
|
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2023-10-11 00:37:36 +00:00
|
|
|
@cached_property
|
|
|
|
def _cached_info(self):
|
2024-02-23 23:07:34 +00:00
|
|
|
return _get_basic_info(self.id)
|
2023-10-11 00:37:36 +00:00
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
@cached_property
|
|
|
|
def organization(self):
|
|
|
|
# We do this to take advantage of prefetch_related
|
|
|
|
orgs = self.organizations.all()
|
|
|
|
return orgs[0] if orgs else None
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def username(self):
|
2023-10-11 00:37:36 +00:00
|
|
|
return self._cached_info["username"]
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def first_name(self):
|
2024-01-18 18:33:36 +00:00
|
|
|
return self._cached_info.get("first_name", "")
|
2023-10-11 00:37:36 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def last_name(self):
|
2024-01-18 18:33:36 +00:00
|
|
|
return self._cached_info.get("last_name", "")
|
2023-10-11 00:37:36 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def email(self):
|
|
|
|
return self._cached_info["email"]
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def is_muted(self):
|
|
|
|
return self._cached_info["mute"]
|
|
|
|
|
|
|
|
@cached_property
|
2023-10-11 02:01:06 +00:00
|
|
|
def profile_image_url(self):
|
2024-01-18 18:33:36 +00:00
|
|
|
return self._cached_info.get("profile_image_url")
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2020-07-03 02:50:31 +00:00
|
|
|
@cached_property
|
|
|
|
def count_unseen_notifications(self):
|
2023-10-10 22:38:48 +00:00
|
|
|
from judge.models.notification import unseen_notifications_count
|
|
|
|
|
|
|
|
return unseen_notifications_count(self)
|
2022-05-14 17:57:27 +00:00
|
|
|
|
2022-09-01 04:18:38 +00:00
|
|
|
@cached_property
|
|
|
|
def count_unread_chat_boxes(self):
|
|
|
|
from chat_box.utils import get_unread_boxes
|
|
|
|
|
|
|
|
return get_unread_boxes(self)
|
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
_pp_table = [pow(settings.DMOJ_PP_STEP, i) for i in range(settings.DMOJ_PP_ENTRIES)]
|
|
|
|
|
|
|
|
def calculate_points(self, table=_pp_table):
|
|
|
|
from judge.models import Problem
|
2022-05-14 17:57:27 +00:00
|
|
|
|
2021-05-24 20:00:36 +00:00
|
|
|
public_problems = Problem.get_public_problems()
|
|
|
|
data = (
|
2022-05-14 17:57:27 +00:00
|
|
|
public_problems.filter(
|
|
|
|
submission__user=self, submission__points__isnull=False
|
|
|
|
)
|
|
|
|
.annotate(max_points=Max("submission__points"))
|
|
|
|
.order_by("-max_points")
|
|
|
|
.values_list("max_points", flat=True)
|
|
|
|
.filter(max_points__gt=0)
|
2021-05-24 20:00:36 +00:00
|
|
|
)
|
|
|
|
extradata = (
|
2022-05-14 17:57:27 +00:00
|
|
|
public_problems.filter(submission__user=self, submission__result="AC")
|
|
|
|
.values("id")
|
|
|
|
.distinct()
|
|
|
|
.count()
|
2021-05-24 20:00:36 +00:00
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
bonus_function = settings.DMOJ_PP_BONUS_FUNCTION
|
|
|
|
points = sum(data)
|
|
|
|
problems = len(data)
|
|
|
|
entries = min(len(data), len(table))
|
|
|
|
pp = sum(map(mul, table[:entries], data[:entries])) + bonus_function(extradata)
|
2022-05-14 17:57:27 +00:00
|
|
|
if (
|
|
|
|
self.points != points
|
|
|
|
or problems != self.problem_count
|
|
|
|
or self.performance_points != pp
|
|
|
|
):
|
2020-01-21 06:35:58 +00:00
|
|
|
self.points = points
|
|
|
|
self.problem_count = problems
|
|
|
|
self.performance_points = pp
|
2022-05-14 17:57:27 +00:00
|
|
|
self.save(update_fields=["points", "problem_count", "performance_points"])
|
2020-01-21 06:35:58 +00:00
|
|
|
return points
|
|
|
|
|
|
|
|
calculate_points.alters_data = True
|
|
|
|
|
|
|
|
def remove_contest(self):
|
|
|
|
self.current_contest = None
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
remove_contest.alters_data = True
|
|
|
|
|
|
|
|
def update_contest(self):
|
2021-12-12 03:27:00 +00:00
|
|
|
from judge.models import ContestParticipation
|
2022-05-14 17:57:27 +00:00
|
|
|
|
2021-12-12 03:27:00 +00:00
|
|
|
try:
|
|
|
|
contest = self.current_contest
|
2022-05-14 17:57:27 +00:00
|
|
|
if contest is not None and (
|
|
|
|
contest.ended or not contest.contest.is_accessible_by(self.user)
|
|
|
|
):
|
2021-12-12 03:27:00 +00:00
|
|
|
self.remove_contest()
|
|
|
|
except ContestParticipation.DoesNotExist:
|
2020-01-21 06:35:58 +00:00
|
|
|
self.remove_contest()
|
|
|
|
|
|
|
|
update_contest.alters_data = True
|
|
|
|
|
|
|
|
def get_absolute_url(self):
|
2022-05-14 17:57:27 +00:00
|
|
|
return reverse("user_page", args=(self.user.username,))
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.user.username
|
|
|
|
|
|
|
|
@classmethod
|
2022-05-14 17:57:27 +00:00
|
|
|
def get_user_css_class(
|
|
|
|
cls, display_rank, rating, rating_colors=settings.DMOJ_RATING_COLORS
|
|
|
|
):
|
2020-01-21 06:35:58 +00:00
|
|
|
if rating_colors:
|
2022-05-14 17:57:27 +00:00
|
|
|
return "rating %s %s" % (
|
|
|
|
rating_class(rating) if rating is not None else "rate-none",
|
|
|
|
display_rank,
|
|
|
|
)
|
2020-01-21 06:35:58 +00:00
|
|
|
return display_rank
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def css_class(self):
|
|
|
|
return self.get_user_css_class(self.display_rank, self.rating)
|
|
|
|
|
2023-02-13 03:35:48 +00:00
|
|
|
def get_friends(self): # list of ids, including you
|
|
|
|
friend_obj = self.following_users.prefetch_related("users")
|
|
|
|
ret = []
|
2022-05-14 17:57:27 +00:00
|
|
|
if friend_obj:
|
2023-02-13 03:35:48 +00:00
|
|
|
ret = [friend.id for friend in friend_obj[0].users.all()]
|
|
|
|
ret.append(self.id)
|
2020-06-24 01:46:33 +00:00
|
|
|
return ret
|
|
|
|
|
2023-01-24 02:36:44 +00:00
|
|
|
def can_edit_organization(self, org):
|
|
|
|
if not self.user.is_authenticated:
|
|
|
|
return False
|
|
|
|
profile_id = self.id
|
|
|
|
return (
|
|
|
|
org.admins.filter(id=profile_id).exists()
|
|
|
|
or org.registrant_id == profile_id
|
|
|
|
or self.user.is_superuser
|
|
|
|
)
|
|
|
|
|
2024-02-23 23:07:34 +00:00
|
|
|
@classmethod
|
|
|
|
def prefetch_profile_cache(self, profile_ids):
|
|
|
|
_get_basic_info.prefetch_multi([(pid,) for pid in profile_ids])
|
|
|
|
|
2020-01-21 06:35:58 +00:00
|
|
|
class Meta:
|
2023-11-29 02:32:31 +00:00
|
|
|
indexes = [
|
|
|
|
models.Index(fields=["is_unlisted", "performance_points"]),
|
|
|
|
]
|
2020-01-21 06:35:58 +00:00
|
|
|
permissions = (
|
2022-05-14 17:57:27 +00:00
|
|
|
("test_site", "Shows in-progress development stuff"),
|
|
|
|
("totp", "Edit TOTP settings"),
|
2020-01-21 06:35:58 +00:00
|
|
|
)
|
2022-05-14 17:57:27 +00:00
|
|
|
verbose_name = _("user profile")
|
|
|
|
verbose_name_plural = _("user profiles")
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OrganizationRequest(models.Model):
|
2022-05-14 17:57:27 +00:00
|
|
|
user = models.ForeignKey(
|
|
|
|
Profile,
|
|
|
|
verbose_name=_("user"),
|
|
|
|
related_name="requests",
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
)
|
|
|
|
organization = models.ForeignKey(
|
|
|
|
Organization,
|
|
|
|
verbose_name=_("organization"),
|
|
|
|
related_name="requests",
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
)
|
|
|
|
time = models.DateTimeField(verbose_name=_("request time"), auto_now_add=True)
|
|
|
|
state = models.CharField(
|
|
|
|
max_length=1,
|
|
|
|
verbose_name=_("state"),
|
|
|
|
choices=(
|
|
|
|
("P", "Pending"),
|
|
|
|
("A", "Approved"),
|
|
|
|
("R", "Rejected"),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
reason = models.TextField(verbose_name=_("reason"))
|
2020-01-21 06:35:58 +00:00
|
|
|
|
|
|
|
class Meta:
|
2022-05-14 17:57:27 +00:00
|
|
|
verbose_name = _("organization join request")
|
|
|
|
verbose_name_plural = _("organization join requests")
|
2020-06-24 01:46:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Friend(models.Model):
|
|
|
|
users = models.ManyToManyField(Profile)
|
2022-05-14 17:57:27 +00:00
|
|
|
current_user = models.ForeignKey(
|
2023-02-13 03:35:48 +00:00
|
|
|
Profile,
|
|
|
|
related_name="following_users",
|
|
|
|
on_delete=CASCADE,
|
2022-05-14 17:57:27 +00:00
|
|
|
)
|
2020-06-24 01:46:33 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def is_friend(self, current_user, new_friend):
|
|
|
|
try:
|
2023-11-24 03:52:19 +00:00
|
|
|
return current_user.following_users.filter(users=new_friend).exists()
|
2020-06-24 01:46:33 +00:00
|
|
|
except:
|
|
|
|
return False
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def make_friend(self, current_user, new_friend):
|
2022-05-14 17:57:27 +00:00
|
|
|
friend, created = self.objects.get_or_create(current_user=current_user)
|
2020-06-24 01:46:33 +00:00
|
|
|
friend.users.add(new_friend)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def remove_friend(self, current_user, new_friend):
|
2022-05-14 17:57:27 +00:00
|
|
|
friend, created = self.objects.get_or_create(current_user=current_user)
|
2020-06-24 01:46:33 +00:00
|
|
|
friend.users.remove(new_friend)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def toggle_friend(self, current_user, new_friend):
|
2022-05-14 17:57:27 +00:00
|
|
|
if self.is_friend(current_user, new_friend):
|
2020-06-24 01:46:33 +00:00
|
|
|
self.remove_friend(current_user, new_friend)
|
|
|
|
else:
|
|
|
|
self.make_friend(current_user, new_friend)
|
|
|
|
|
2021-11-21 04:23:03 +00:00
|
|
|
@classmethod
|
|
|
|
def get_friend_profiles(self, current_user):
|
|
|
|
try:
|
|
|
|
ret = self.objects.get(current_user=current_user).users.all()
|
|
|
|
except Friend.DoesNotExist:
|
2021-11-23 03:54:48 +00:00
|
|
|
ret = Profile.objects.none()
|
2021-11-21 04:23:03 +00:00
|
|
|
return ret
|
|
|
|
|
2020-06-24 01:46:33 +00:00
|
|
|
def __str__(self):
|
|
|
|
return str(self.current_user)
|
2022-10-17 20:48:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OrganizationProfile(models.Model):
|
2024-04-12 06:51:57 +00:00
|
|
|
profile = models.ForeignKey(
|
2022-10-17 20:48:07 +00:00
|
|
|
Profile,
|
|
|
|
verbose_name=_("user"),
|
|
|
|
related_name="last_visit",
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
db_index=True,
|
|
|
|
)
|
|
|
|
organization = models.ForeignKey(
|
|
|
|
Organization,
|
|
|
|
verbose_name=_("organization"),
|
|
|
|
related_name="last_vist",
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
)
|
|
|
|
last_visit = models.AutoField(
|
2022-10-17 22:08:12 +00:00
|
|
|
verbose_name=_("last visit"),
|
2022-10-17 20:48:07 +00:00
|
|
|
primary_key=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
@classmethod
|
2024-04-12 06:51:57 +00:00
|
|
|
def remove_organization(self, profile, organization):
|
|
|
|
organization_profile = self.objects.filter(
|
|
|
|
profile=profile, organization=organization
|
2022-10-18 00:30:00 +00:00
|
|
|
)
|
2024-04-12 06:51:57 +00:00
|
|
|
if organization_profile.exists():
|
|
|
|
organization_profile.delete()
|
2022-10-17 20:48:07 +00:00
|
|
|
|
|
|
|
@classmethod
|
2024-04-12 06:51:57 +00:00
|
|
|
def add_organization(self, profile, organization):
|
|
|
|
self.remove_organization(profile, organization)
|
|
|
|
new_row = OrganizationProfile(profile=profile, organization=organization)
|
|
|
|
new_row.save()
|
2022-10-17 20:48:07 +00:00
|
|
|
|
|
|
|
@classmethod
|
2024-04-12 06:51:57 +00:00
|
|
|
def get_most_recent_organizations(cls, profile):
|
|
|
|
queryset = cls.objects.filter(profile=profile).order_by("-last_visit")[:5]
|
|
|
|
queryset = queryset.select_related("organization").defer("organization__about")
|
|
|
|
organizations = [op.organization for op in queryset]
|
|
|
|
|
|
|
|
return organizations
|
2023-10-11 00:37:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
@receiver([post_save], sender=User)
|
|
|
|
def on_user_save(sender, instance, **kwargs):
|
2023-10-11 05:08:26 +00:00
|
|
|
try:
|
|
|
|
profile = instance.profile
|
2024-02-23 23:07:34 +00:00
|
|
|
_get_basic_info.dirty(profile.id)
|
2023-10-11 05:21:21 +00:00
|
|
|
except:
|
2023-10-11 05:08:26 +00:00
|
|
|
pass
|
2023-10-11 00:37:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
@receiver([pre_save], sender=Profile)
|
|
|
|
def on_profile_save(sender, instance, **kwargs):
|
|
|
|
if instance.id is None:
|
|
|
|
return
|
|
|
|
prev = sender.objects.get(id=instance.id)
|
|
|
|
if prev.mute != instance.mute or prev.profile_image != instance.profile_image:
|
2024-02-23 23:07:34 +00:00
|
|
|
_get_basic_info.dirty(instance.id)
|
|
|
|
|
|
|
|
|
|
|
|
@cache_wrapper(prefix="Pgbi2")
|
|
|
|
def _get_basic_info(profile_id):
|
|
|
|
profile = (
|
|
|
|
Profile.objects.select_related("user")
|
|
|
|
.only(
|
|
|
|
"id",
|
|
|
|
"mute",
|
|
|
|
"profile_image",
|
|
|
|
"user__username",
|
|
|
|
"user__email",
|
|
|
|
"user__first_name",
|
|
|
|
"user__last_name",
|
|
|
|
)
|
|
|
|
.get(id=profile_id)
|
|
|
|
)
|
|
|
|
user = profile.user
|
|
|
|
res = {
|
|
|
|
"email": user.email,
|
|
|
|
"username": user.username,
|
|
|
|
"mute": profile.mute,
|
|
|
|
"first_name": user.first_name or None,
|
|
|
|
"last_name": user.last_name or None,
|
|
|
|
"profile_image_url": profile.profile_image.url
|
|
|
|
if profile.profile_image
|
|
|
|
else None,
|
|
|
|
}
|
|
|
|
res = {k: v for k, v in res.items() if v is not None}
|
|
|
|
return res
|