forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Library Collections REST endpoints
- Loading branch information
1 parent
5fbcc79
commit f58bb67
Showing
4 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
110 changes: 110 additions & 0 deletions
110
openedx/core/djangoapps/content_libraries/collections/rest_api/v1/views.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
""" | ||
Collections API Views | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
from django.http import Http404 | ||
|
||
# from rest_framework.generics import GenericAPIView | ||
from rest_framework.response import Response | ||
from rest_framework.viewsets import ModelViewSet | ||
from rest_framework.status import HTTP_405_METHOD_NOT_ALLOWED | ||
|
||
from opaque_keys.edx.locator import LibraryLocatorV2 | ||
|
||
from openedx.core.djangoapps.content_libraries import api, permissions | ||
from openedx.core.djangoapps.content_libraries.serializers import ( | ||
ContentLibraryCollectionSerializer, | ||
ContentLibraryCollectionCreateOrUpdateSerializer, | ||
) | ||
|
||
from openedx_learning.api.authoring_models import Collection | ||
from openedx_learning.api import authoring as authoring_api | ||
|
||
|
||
class LibraryCollectionsView(ModelViewSet): | ||
""" | ||
Views to get, create and update Library Collections. | ||
""" | ||
|
||
serializer_class = ContentLibraryCollectionSerializer | ||
|
||
def retrieve(self, request, lib_key_str, pk=None): | ||
""" | ||
Retrieve the Content Library Collection | ||
""" | ||
try: | ||
collection = authoring_api.get_collection(pk) | ||
except Collection.DoesNotExist as exc: | ||
raise Http404 from exc | ||
|
||
# Check if user has permissions to view this collection by checking if | ||
# user has permission to view the Content Library it belongs to | ||
library_key = LibraryLocatorV2.from_string(lib_key_str) | ||
api.require_permission_for_library_key(library_key, request.user, permissions.CAN_VIEW_THIS_CONTENT_LIBRARY) | ||
serializer = self.get_serializer(collection) | ||
return Response(serializer.data) | ||
|
||
def list(self, request, lib_key_str): | ||
""" | ||
List Collections that belong to Content Library | ||
""" | ||
# Check if user has permissions to view collections by checking if user | ||
# has permission to view the Content Library they belong to | ||
library_key = LibraryLocatorV2.from_string(lib_key_str) | ||
api.require_permission_for_library_key(library_key, request.user, permissions.CAN_VIEW_THIS_CONTENT_LIBRARY) | ||
content_library = api.get_library(library_key) | ||
collections = authoring_api.get_learning_package_collections(content_library.learning_package.id) | ||
serializer = self.get_serializer(collections, many=True) | ||
return Response(serializer.data) | ||
|
||
def create(self, request, lib_key_str): | ||
""" | ||
Create a Collection that belongs to a Content Library | ||
""" | ||
# Check if user has permissions to create a collection in the Content Library | ||
# by checking if user has permission to edit the Content Library | ||
library_key = LibraryLocatorV2.from_string(lib_key_str) | ||
api.require_permission_for_library_key(library_key, request.user, permissions.CAN_EDIT_THIS_CONTENT_LIBRARY) | ||
create_serializer = ContentLibraryCollectionCreateOrUpdateSerializer(data=request.data) | ||
create_serializer.is_valid(raise_exception=True) | ||
content_library = api.get_library(library_key) | ||
collection = authoring_api.create_collection( | ||
content_library.learning_package.id, | ||
create_serializer.validated_data["title"], | ||
request.user.id, | ||
create_serializer.validated_data["description"] | ||
) | ||
serializer = self.get_serializer(collection) | ||
return Response(serializer.data) | ||
|
||
def partial_update(self, request, lib_key_str, pk=None): | ||
""" | ||
Update a Collection that belongs to a Content Library | ||
""" | ||
# Check if user has permissions to update a collection in the Content Library | ||
# by checking if user has permission to edit the Content Library | ||
library_key = LibraryLocatorV2.from_string(lib_key_str) | ||
api.require_permission_for_library_key(library_key, request.user, permissions.CAN_EDIT_THIS_CONTENT_LIBRARY) | ||
|
||
try: | ||
collection = authoring_api.get_collection(pk) | ||
except Collection.DoesNotExist as exc: | ||
raise Http404 from exc | ||
|
||
update_serializer = ContentLibraryCollectionCreateOrUpdateSerializer( | ||
collection, data=request.data, partial=True | ||
) | ||
update_serializer.is_valid(raise_exception=True) | ||
updated_collection = authoring_api.update_collection(pk, **update_serializer.validated_data) | ||
serializer = self.get_serializer(updated_collection) | ||
return Response(serializer.data) | ||
|
||
def destroy(self, request, lib_key_str, pk=None): | ||
""" | ||
Deletes a Collection that belongs to a Content Library | ||
Note: (currently not allowed) | ||
""" | ||
return Response(None, status=HTTP_405_METHOD_NOT_ALLOWED) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters