2020-09-22 16:29:59 +08:00
|
|
|
from django.db import models
|
2012-11-05 02:16:06 +08:00
|
|
|
|
|
|
|
|
2014-05-20 00:19:35 +08:00
|
|
|
class CurrentTranslation(models.ForeignObject):
|
|
|
|
"""
|
|
|
|
Creates virtual relation to the translation with model cache enabled.
|
|
|
|
"""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2014-05-20 00:19:35 +08:00
|
|
|
# Avoid validation
|
|
|
|
requires_unique_target = False
|
|
|
|
|
2015-07-22 22:43:21 +08:00
|
|
|
def __init__(self, to, on_delete, from_fields, to_fields, **kwargs):
|
2014-05-20 00:19:35 +08:00
|
|
|
# Disable reverse relation
|
|
|
|
kwargs["related_name"] = "+"
|
|
|
|
# Set unique to enable model cache.
|
|
|
|
kwargs["unique"] = True
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(to, on_delete, from_fields, to_fields, **kwargs)
|
2014-05-20 00:19:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ArticleTranslation(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
article = models.ForeignKey("indexes.Article", models.CASCADE)
|
2016-08-16 06:01:56 +08:00
|
|
|
article_no_constraint = models.ForeignKey(
|
|
|
|
"indexes.Article", models.CASCADE, db_constraint=False, related_name="+"
|
|
|
|
)
|
2014-05-20 00:19:35 +08:00
|
|
|
language = models.CharField(max_length=10, unique=True)
|
|
|
|
content = models.TextField()
|
|
|
|
|
|
|
|
|
2012-11-05 02:16:06 +08:00
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateTimeField()
|
2018-09-13 15:34:02 +08:00
|
|
|
published = models.BooleanField(default=False)
|
2012-11-05 02:16:06 +08:00
|
|
|
|
2014-05-20 00:19:35 +08:00
|
|
|
# Add virtual relation to the ArticleTranslation model.
|
2015-07-22 22:43:21 +08:00
|
|
|
translation = CurrentTranslation(
|
|
|
|
ArticleTranslation, models.CASCADE, ["id"], ["article"]
|
|
|
|
)
|
2014-05-20 00:19:35 +08:00
|
|
|
|
2012-11-05 02:16:06 +08:00
|
|
|
class Meta:
|
2022-07-11 14:23:50 +08:00
|
|
|
indexes = [models.Index(fields=["headline", "pub_date"])]
|
2012-12-18 16:56:30 +08:00
|
|
|
|
|
|
|
|
2020-09-22 16:29:59 +08:00
|
|
|
class IndexedArticle(models.Model):
|
|
|
|
headline = models.CharField(max_length=100, db_index=True)
|
|
|
|
body = models.TextField(db_index=True)
|
|
|
|
slug = models.CharField(max_length=40, unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
required_db_features = {"supports_index_on_text_field"}
|
2017-10-12 01:25:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
class IndexedArticle2(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
body = models.TextField()
|