X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4b200d823f0ec79279da035a46d0d888693ca2fe..937a362ba8599c9571824493c13fed05223fb561:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 376d3287..3e55d693 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -165,7 +165,11 @@ class WikidataView(APIView): if attname.startswith("_"): continue for fieldname, lang in obj.wikidata_fields_for_attribute(attname): - d[fieldname] = getattr(obj, fieldname) + try: + d[fieldname] = getattr(obj, fieldname) + except ValueError: + # Like accessing related field on non-saved object. + continue if isinstance(d[fieldname], models.WikidataModel): d[fieldname] = { @@ -178,6 +182,7 @@ class WikidataView(APIView): d[fieldname] = [ { "model": type(item)._meta.model_name, + "id": item.pk, "wd": item.wikidata, "label": str(item) or item._wikidata_label } for item in d[fieldname].all() @@ -206,5 +211,27 @@ def publish_author(request, pk): } apiclient.api_call(request.user, f"authors/{author.slug}/", data) return redirect(reverse('admin:catalogue_author_change', args=[author.pk])) - - + + +@require_POST +@login_required +def publish_collection(request, pk): + collection = get_object_or_404(models.Collection, pk=pk) + data = { + "title": collection.name, + "description": collection.description, + "book_slugs": "\n".join( + book.slug + for book in collection.book_set.exclude(slug=None).exclude(slug='') + ) + } + apiclient.api_call( + request.user, + f"collections/{collection.slug}/", + data, + method='PUT', + as_json=True, + ) + return redirect(reverse( + 'admin:catalogue_collection_change', args=[collection.pk] + ))