integreat_cms/cms/models/feedback/poi_feedback.py
from __future__ import annotations
from typing import TYPE_CHECKING
from django.db import models
from django.urls import reverse
from django.utils.functional import cached_property
from django.utils.translation import gettext_lazy as _
from ..pois.poi_translation import POITranslation
from .feedback import Feedback
if TYPE_CHECKING:
from django.db.models.query import QuerySet
class POIFeedback(Feedback):
"""
Database model representing feedback about events.
"""
poi_translation = models.ForeignKey(
POITranslation,
on_delete=models.CASCADE,
related_name="feedback",
verbose_name=_("location translation"),
)
@property
def object_name(self) -> str:
"""
This property returns the name of the object this feedback comments on.
:return: The name of the object this feedback refers to
"""
return self.best_poi_translation.title
@cached_property
def object_url(self) -> str:
"""
This property returns the url to the object this feedback comments on.
:return: The url to the referred object
"""
return reverse(
"edit_poi",
kwargs={
"poi_id": self.poi_translation.poi.id,
"region_slug": self.region.slug,
"language_slug": self.best_poi_translation.language.slug,
},
)
@cached_property
def best_poi_translation(self) -> POITranslation:
"""
This property returns the best translation for the POI this feedback comments on.
:return: The best poi translation
"""
return self.poi_translation.poi.best_translation
@property
def related_feedback(self) -> QuerySet[POIFeedback]:
"""
This property returns all feedback entries which relate to the same object and have the same is_technical value.
:return: The queryset of related feedback
"""
return POIFeedback.objects.filter(
poi_translation__poi=self.poi_translation.poi,
language=self.language,
is_technical=self.is_technical,
)
class Meta:
#: The verbose name of the model
verbose_name = _("location feedback")
#: The plural verbose name of the model
verbose_name_plural = _("location feedback")
#: The default permissions for this model
default_permissions = ()