X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/407a830d3dbe065b09de2207d69b1d38511a770c..9d566b4741eb66bf09b5c7d213aa8541886e100a:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 635af5fd..6eb6e63f 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 @@ -221,6 +221,13 @@ def publish_author(request, pk): data = { "name_pl": author.name, "description_pl": author.generate_description(), + "genitive": author.genitive, + "gazeta_link": author.gazeta_link, + "culturepl_link": author.culturepl_link, + "wiki_link_pl": author.plwiki, + "photo": request.build_absolute_uri(author.photo.url) if author.photo else None, + "photo_source": author.photo_source, + "photo_attribution": author.photo_attribution, } apiclient.api_call(request.user, f"authors/{author.slug}/", data) return redirect(reverse('admin:catalogue_author_change', args=[author.pk])) @@ -289,3 +296,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 + ], + })