X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/6c81c82481a5407bc6e4f3c5cdd16baedbc2a523..ae2a8df21e1038038cf898eb5a9d09b9ecc33f8f:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 5ea1bbea..44ad3058 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -3,7 +3,7 @@ # from django.apps import apps from django.db.models import Prefetch -from django.http import Http404 +from django.http import Http404, JsonResponse from django.urls import reverse from django.utils.formats import localize_input from django.contrib.auth.decorators import login_required @@ -20,7 +20,7 @@ from rest_framework.permissions import IsAdminUser from rest_framework.response import Response from rest_framework.views import APIView from rest_framework import serializers - +from depot.woblink import get_woblink_session @@ -106,6 +106,15 @@ class Terms(ListAPIView): label = serializers.CharField(source='name') +class AudienceTerms(Terms): + queryset = models.Audience.objects.all() + search_fields = ['code', 'name', 'description'] + + class serializer_class(serializers.Serializer): + label = serializers.CharField(source='code') + name = serializers.CharField() + description = serializers.CharField() + class EpochTerms(Terms): queryset = models.Epoch.objects.all() class KindTerms(Terms): @@ -150,6 +159,9 @@ class ThemaTerms(Terms): name = serializers.CharField() description = serializers.CharField() +class MainThemaTerms(ThemaTerms): + queryset = models.Thema.objects.filter(usable=True, hidden=False, usable_as_main=True) + class WikidataView(APIView): permission_classes = [IsAdminUser] @@ -225,7 +237,7 @@ def publish_author(request, pk): "gazeta_link": author.gazeta_link, "culturepl_link": author.culturepl_link, "wiki_link_pl": author.plwiki, - "photo": request.build_absolute_uri(author.photo.url), + "photo": request.build_absolute_uri(author.photo.url) if author.photo else None, "photo_source": author.photo_source, "photo_attribution": author.photo_attribution, } @@ -296,3 +308,23 @@ def publish_collection(request, pk): return redirect(reverse( 'admin:catalogue_collection_change', args=[collection.pk] )) + + +@login_required +def woblink_author_autocomplete(request): + session = get_woblink_session() + term = request.GET.get('term') + if not term: + return JsonResponse({}) + response = session.get( + 'https://publisher.woblink.com/author/autocomplete/' + term + ).json() + return JsonResponse({ + "results": [ + { + "id": item['autId'], + "text": item['autFullname'], + } + for item in response + ], + })