Filter by places.
[redakcja.git] / src / catalogue / admin.py
1 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.contrib import admin
5 from django.utils.html import escape, format_html
6 from django.utils.safestring import mark_safe
7 from django.utils.translation import gettext_lazy as _
8 from admin_numeric_filter.admin import RangeNumericFilter, NumericFilterModelAdmin
9 from admin_ordering.admin import OrderableAdmin
10 from fnpdjango.actions import export_as_csv_action
11 from modeltranslation.admin import TabbedTranslationAdmin
12 from . import models
13 import documents.models
14 from .wikidata import WikidataAdminMixin
15
16
17 class NotableBookInline(OrderableAdmin, admin.TabularInline):
18     model = models.NotableBook
19     autocomplete_fields = ['book']
20     ordering_field_hide_input = True
21
22
23 class AuthorAdmin(WikidataAdminMixin, TabbedTranslationAdmin):
24     list_display = [
25         "first_name",
26         "last_name",
27         "status",
28         "year_of_death",
29         "gender",
30         "nationality",
31         "priority",
32         "wikidata_link",
33         "slug",
34     ]
35     list_display_links = [
36         "first_name", "last_name"
37     ]
38     list_filter = [
39         ("year_of_death", RangeNumericFilter),
40         "priority",
41         "collections",
42         "status",
43         "gender",
44         "nationality",
45         "place_of_birth",
46         "place_of_death",
47         ("genitive", admin.EmptyFieldListFilter)
48     ]
49     list_per_page = 10000000
50     search_fields = ["first_name", "last_name", "wikidata"]
51     readonly_fields = ["wikidata_link", "description_preview"]
52
53     fieldsets = [
54         (None, {"fields": [("wikidata", "wikidata_link")]}),
55         (
56             _("Identification"),
57             {
58                 "fields": [
59                     ("first_name", "last_name"),
60                     "slug",
61                     "genitive",
62                     "gender",
63                     "nationality",
64                     ("date_of_birth", "year_of_birth", "year_of_birth_inexact", "year_of_birth_range", "place_of_birth"),
65                     ("date_of_death", "year_of_death", "year_of_death_inexact", "year_of_death_range", "place_of_death"),
66                     ("description", "description_preview"),
67                     "status",
68                     "collections",
69                     "priority",
70                     
71                     "notes",
72                     "gazeta_link",
73                     "culturepl_link",
74                     "plwiki",
75                     "photo", "photo_source", "photo_attribution",
76                 ]
77             },
78         ),
79     ]
80     
81     prepopulated_fields = {"slug": ("first_name", "last_name")}
82     autocomplete_fields = ["collections", "place_of_birth", "place_of_death"]
83     inlines = [
84         NotableBookInline,
85     ]
86
87     def description_preview(self, obj):
88         return obj.generate_description()
89
90
91 admin.site.register(models.Author, AuthorAdmin)
92
93
94 class LicenseFilter(admin.SimpleListFilter):
95     title = 'Licencja'
96     parameter_name = 'book_license'
97     license_url_field = 'document_book__dc__license'
98     license_name_field = 'document_book__dc__license_description'
99
100     def lookups(self, requesrt, model_admin):
101         return [
102             ('cc', 'CC'),
103             ('fal', 'FAL'),
104             ('pd', 'domena publiczna'),
105         ]
106
107     def queryset(self, request, queryset):
108         v = self.value()
109         if v == 'cc': 
110             return queryset.filter(**{
111                 self.license_url_field + '__icontains': 'creativecommons.org'
112             })
113         elif v == 'fal':
114             return queryset.filter(**{
115                 self.license_url_field + '__icontains': 'artlibre.org'
116             })
117         elif v == 'pd':
118             return queryset.filter(**{
119                 self.license_name_field + '__icontains': 'domena publiczna'
120             })
121         else:
122             return queryset
123
124
125 class CoverLicenseFilter(LicenseFilter):
126     title = 'Licencja okładki'
127     parameter_name = 'cover_license'
128     license_url_field = 'document_book__dc_cover_image__license_url'
129     license_name_field = 'document_book__dc_cover_image__license_name'
130
131
132 def add_title(base_class, suffix):
133     class TitledCategoryFilter(base_class):
134         def __init__(self, *args, **kwargs):
135             super().__init__(*args, **kwargs)
136             self.title += suffix
137     return TitledCategoryFilter
138
139
140
141 class BookAdmin(WikidataAdminMixin, NumericFilterModelAdmin):
142     list_display = [
143         "smart_title",
144         "authors_str",
145         "translators_str",
146         "language",
147         "pd_year",
148         "priority",
149         "wikidata_link",
150     ]
151     search_fields = [
152         "title", "wikidata",
153         "authors__first_name", "authors__last_name",
154         "translators__first_name", "translators__last_name",
155         "scans_source", "text_source", "notes", "estimate_source",
156     ]
157     autocomplete_fields = ["authors", "translators", "based_on", "collections", "epochs", "genres", "kinds"]
158     prepopulated_fields = {"slug": ("title",)}
159     list_filter = [
160         "language",
161         "based_on__language",
162         ("pd_year", RangeNumericFilter),
163         "collections",
164         "collections__category",
165         ("authors__collections", add_title(admin.RelatedFieldListFilter, ' autora')),
166         ("authors__collections__category", add_title(admin.RelatedFieldListFilter, ' autora')),
167         ("translators__collections", add_title(admin.RelatedFieldListFilter, ' tłumacza')), 
168         ("translators__collections__category", add_title(admin.RelatedFieldListFilter, ' tłumacza')),
169         "epochs", "kinds", "genres",
170         "priority",
171         "authors__gender", "authors__nationality",
172         "translators__gender", "translators__nationality",
173
174         ("authors__place_of_birth", add_title(admin.RelatedFieldListFilter, ' autora')),
175         ("authors__place_of_death", add_title(admin.RelatedFieldListFilter, ' autora')),
176         ("translators__place_of_birth", add_title(admin.RelatedFieldListFilter, ' tłumacza')),
177         ("translators__place_of_death", add_title(admin.RelatedFieldListFilter, ' tłumacza')),
178
179         "document_book__chunk__stage",
180
181         LicenseFilter,
182         CoverLicenseFilter,
183         'free_license',
184         'polona_missing',
185     ]
186     list_per_page = 1000000
187
188     readonly_fields = [
189         "wikidata_link",
190         "estimated_costs",
191         "documents_book_link",
192         "scans_source_link",
193     ]
194     actions = [export_as_csv_action(
195         fields=[
196             "id",
197             "wikidata",
198             "slug",
199             "title",
200             "authors_first_names",
201             "authors_last_names",
202             "translators_first_names",
203             "translators_last_names",
204             "language",
205             "based_on",
206             "scans_source",
207             "text_source",
208             "notes",
209             "priority",
210             "pd_year",
211             "gazeta_link",
212             "estimated_chars",
213             "estimated_verses",
214             "estimate_source"
215         ]
216     )]
217     fieldsets = [
218         (None, {"fields": [("wikidata", "wikidata_link")]}),
219         (
220             _("Identification"),
221             {
222                 "fields": [
223                     "title",
224                     ("slug", 'documents_book_link'),
225                     "authors",
226                     "translators",
227                     "language",
228                     "based_on",
229                     "original_year",
230                     "pd_year",
231                 ]
232             },
233         ),
234         (
235             _("Features"),
236             {
237                 "fields": [
238                     "epochs",
239                     "genres",
240                     "kinds",
241                 ]
242             },
243         ),
244         (
245             _("Plan"),
246             {
247                 "fields": [
248                     ("free_license", "polona_missing"),
249                     ("scans_source", "scans_source_link"),
250                     "text_source",
251                     "priority",
252                     "collections",
253                     "notes",
254                     ("estimated_chars", "estimated_verses", "estimate_source"),
255                     "estimated_costs",
256                 ]
257             },
258         ),
259     ]
260
261     def get_queryset(self, request):
262         qs = super().get_queryset(request)
263         if request.resolver_match.view_name.endswith("changelist"):
264             qs = qs.prefetch_related("authors", "translators")
265         return qs
266
267     def estimated_costs(self, obj):
268         return "\n".join(
269             "{}: {} zł".format(
270                 work_type.name,
271                 cost or '—'
272             )
273             for work_type, cost in obj.get_estimated_costs().items()
274         )
275
276     def smart_title(self, obj):
277         if obj.title:
278             return obj.title
279         if obj.notes:
280             n = obj.notes
281             if len(n) > 100:
282                 n = n[:100] + '…'
283             return mark_safe(
284                 '<em><small>' + escape(n) + '</small></em>'
285             )
286         return '---'
287     smart_title.short_description = _('Title')
288     smart_title.admin_order_field = 'title'
289
290     def documents_book_link(self, obj):
291         for book in obj.document_books.all():
292             return mark_safe('<a style="position: absolute" href="{}"><img height="100" width="70" src="/cover/preview/{}/?height=100&width=70"></a>'.format(book.get_absolute_url(), book.slug))
293     documents_book_link.short_description = _('Book')
294
295     def scans_source_link(self, obj):
296         if obj.scans_source:
297             return format_html(
298                 '<a href="{url}" target="_blank">{url}</a>',
299                 url=obj.scans_source,
300             )
301         else:
302             return ""
303     scans_source_link.short_description = _('scans source')
304
305
306 admin.site.register(models.Book, BookAdmin)
307
308
309 admin.site.register(models.CollectionCategory)
310
311
312 class AuthorInline(admin.TabularInline):
313     model = models.Author.collections.through
314     autocomplete_fields = ["author"]
315
316
317 class BookInline(admin.TabularInline):
318     model = models.Book.collections.through
319     autocomplete_fields = ["book"]
320
321
322 class CollectionAdmin(admin.ModelAdmin):
323     list_display = ["name"]
324     autocomplete_fields = []
325     prepopulated_fields = {"slug": ("name",)}
326     search_fields = ["name"]
327     fields = ['name', 'slug', 'category', 'description', 'notes', 'estimated_costs']
328     readonly_fields = ['estimated_costs']
329     inlines = [AuthorInline, BookInline]
330
331     def estimated_costs(self, obj):
332         return "\n".join(
333             "{}: {} zł".format(
334                 work_type.name,
335                 cost or '—'
336             )
337             for work_type, cost in obj.get_estimated_costs().items()
338         )
339
340
341 admin.site.register(models.Collection, CollectionAdmin)
342
343
344
345 class CategoryAdmin(admin.ModelAdmin):
346     search_fields = ["name"]
347
348
349 @admin.register(models.Epoch)
350 class EpochAdmin(CategoryAdmin):
351     list_display = ['name', 'adjective_feminine_singular', 'adjective_nonmasculine_plural']
352
353
354 @admin.register(models.Genre)
355 class GenreAdmin(CategoryAdmin):
356     list_display = ['name', 'plural', 'is_epoch_specific']
357
358
359 @admin.register(models.Kind)
360 class KindAdmin(CategoryAdmin):
361     list_display = ['name', 'collective_noun']
362
363
364
365 class WorkRateInline(admin.TabularInline):
366     model = models.WorkRate
367     autocomplete_fields = ['kinds', 'genres', 'epochs', 'collections']
368
369
370 class WorkTypeAdmin(admin.ModelAdmin):
371     inlines = [WorkRateInline]
372
373 admin.site.register(models.WorkType, WorkTypeAdmin)
374
375
376
377 @admin.register(models.Place)
378 class PlaceAdmin(WikidataAdminMixin, TabbedTranslationAdmin):
379     search_fields = ['name']