Importing catalogue from WL dump.
[redakcja.git] / src / catalogue / models.py
index c2ed381..b45cefe 100644 (file)
@@ -8,6 +8,10 @@ class Author(WikidataMixin, models.Model):
     slug = models.SlugField(null=True, blank=True, unique=True)
     first_name = models.CharField(max_length=255, blank=True)
     last_name = models.CharField(max_length=255, blank=True)
+
+    name_de = models.CharField(max_length=255, blank=True)
+    name_lt = models.CharField(max_length=255, blank=True)
+
     year_of_death = models.SmallIntegerField(null=True, blank=True)
     status = models.PositiveSmallIntegerField(
         null=True,
@@ -20,9 +24,20 @@ class Author(WikidataMixin, models.Model):
         ],
     )
     notes = models.TextField(blank=True)
+    gazeta_link = models.CharField(max_length=255, blank=True)
+    culturepl_link = models.CharField(max_length=255, blank=True)
+
+    description = models.TextField(blank=True)
+    description_de = models.TextField(blank=True)
+    description_lt = models.TextField(blank=True)
+
     priority = models.PositiveSmallIntegerField(
         default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
     )
+    collections = models.ManyToManyField("Collection", blank=True)
+
+    class Meta:
+        ordering = ("last_name", "first_name", "year_of_death")
 
     class Wikidata:
         first_name = WIKIDATA.GIVEN_NAME
@@ -44,7 +59,7 @@ class Book(WikidataMixin, models.Model):
         blank=True,
     )
     title = models.CharField(max_length=255, blank=True)
-    language = models.CharField(max_length=3, blank=True)
+    language = models.CharField(max_length=255, blank=True)
     based_on = models.ForeignKey(
         "self", models.PROTECT, related_name="translation", null=True, blank=True
     )
@@ -54,6 +69,12 @@ class Book(WikidataMixin, models.Model):
     priority = models.PositiveSmallIntegerField(
         default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
     )
+    pd_year = models.IntegerField(null=True, blank=True)
+    gazeta_link = models.CharField(max_length=255, blank=True)
+    collections = models.ManyToManyField("Collection", blank=True)
+
+    class Meta:
+        ordering = ("title",)
 
     class Wikidata:
         authors = WIKIDATA.AUTHOR
@@ -64,4 +85,25 @@ class Book(WikidataMixin, models.Model):
         notes = "description"
 
     def __str__(self):
-        return self.title
+        txt = self.title
+        astr = self.authors_str()
+        if astr:
+            txt = f"{astr} – {txt}"
+        tstr = self.translators_str()
+        if tstr:
+            txt = f"{txt} (tłum. {tstr})"
+        return txt
+
+    def authors_str(self):
+        return ", ".join(str(author) for author in self.authors.all())
+
+    def translators_str(self):
+        return ", ".join(str(author) for author in self.translators.all())
+
+
+class Collection(models.Model):
+    name = models.CharField(max_length=255)
+    slug = models.SlugField(max_length=255, unique=True)
+
+    def __str__(self):
+        return self.name