Skip to content

Commit

Permalink
WIP: start working on #25
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Apr 18, 2023
1 parent 15539b8 commit 004919d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
14 changes: 14 additions & 0 deletions apis_bibsonomy/api_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,23 @@
from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
from rest_framework.views import APIView
from rest_framework import viewsets, generics

from .models import Reference
from .utils import BibsonomyEntry
from .serializers import ReferenceSerializer

class ReferenceList(generics.ListCreateAPIView):
"""
API endpoint that allows references to be viewed.
"""
serializer_class = ReferenceSerializer
permission_classes = [IsAuthenticated]

def get_queryset(self):
ct = self.kwargs['ct']
pk = self.kwargs['pk']
return Reference.objects.filter(content_type = ct, object_id = pk)


class SaveBibsonomyEntry(APIView):
Expand Down
7 changes: 7 additions & 0 deletions apis_bibsonomy/serializers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .models import Reference
from rest_framework import serializers


class ReferenceSerializer(serializers.ModelSerializer):
class Meta:
model = Reference
5 changes: 3 additions & 2 deletions apis_bibsonomy/urls.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from rest_framework.routers import DefaultRouter
from django.urls import path
from . import api_views
from . import autocompletes
Expand All @@ -6,6 +7,6 @@

urlpatterns = [
path('save_get/', api_views.SaveBibsonomyEntry.as_view(), name='savegetbibsonomyentry'),
path('autocomplete/', autocompletes.BibsonomyAutocomplete.as_view(), name='bibsonomyautocomplete')
path('autocomplete/', autocompletes.BibsonomyAutocomplete.as_view(), name='bibsonomyautocomplete'),
path('references/<int:ct>/<int:pk>', api_views.ReferenceList.as_view(), name='referenceslist'),
]

0 comments on commit 004919d

Please sign in to comment.