Files
edx-platform/lms/djangoapps/instructor/views/api_v2.py
jawad khan 712123847e feat: Instructor course information v2 apis (#37588)
* feat: Instructor course information v2 apis
2025-11-19 16:09:59 +05:00

272 lines
9.6 KiB
Python

"""
Instructor API v2 views.
This module contains the v2 API endpoints for instructor functionality.
These APIs are designed to be consumed by MFEs and other API clients.
"""
import logging
import edx_api_doc_tools as apidocs
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey, UsageKey
from rest_framework import status
from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
from rest_framework.views import APIView
from lms.djangoapps.courseware.tabs import get_course_tab_list
from lms.djangoapps.instructor import permissions
from lms.djangoapps.instructor.views.api import get_student_from_identifier
from lms.djangoapps.instructor.views.instructor_task_helpers import extract_task_features
from lms.djangoapps.instructor_task import api as task_api
from openedx.core.lib.api.view_utils import DeveloperErrorViewMixin
from openedx.core.lib.courses import get_course_by_id
from .serializers_v2 import (
InstructorTaskListSerializer,
CourseInformationSerializer
)
log = logging.getLogger(__name__)
class CourseMetadataView(DeveloperErrorViewMixin, APIView):
"""
**Use Cases**
Retrieve comprehensive course metadata including enrollment counts, dashboard configuration,
permissions, and navigation sections.
**Example Requests**
GET /api/instructor/v2/courses/{course_id}
**Response Values**
{
"course_id": "course-v1:edX+DemoX+Demo_Course",
"display_name": "Demonstration Course",
"org": "edX",
"course_number": "DemoX",
"enrollment_start": "2013-02-05T00:00:00Z",
"enrollment_end": null,
"start": "2013-02-05T05:00:00Z",
"end": "2024-12-31T23:59:59Z",
"pacing": "instructor",
"has_started": true,
"has_ended": false,
"total_enrollment": 150,
"enrollment_counts": {
"total": 150,
"audit": 100,
"verified": 40,
"honor": 10
},
"num_sections": 12,
"grade_cutoffs": "A is 0.9, B is 0.8, C is 0.7, D is 0.6",
"course_errors": [],
"studio_url": "https://studio.example.com/course/course-v1:edX+DemoX+2024",
"permissions": {
"admin": false,
"instructor": true,
"finance_admin": false,
"sales_admin": false,
"staff": true,
"forum_admin": true,
"data_researcher": false
},
"tabs": [
{
"tab_id": "courseware",
"title": "Course",
"url": "INSTRUCTOR_MICROFRONTEND_URL/courses/course-v1:edX+DemoX+2024/courseware"
},
{
"tab_id": "progress",
"title": "Progress",
"url": "INSTRUCTOR_MICROFRONTEND_URL/courses/course-v1:edX+DemoX+2024/progress"
},
],
"disable_buttons": false,
"analytics_dashboard_message": "To gain insights into student enrollment and participation..."
}
**Parameters**
course_key: Course key for the course.
**Returns**
* 200: OK - Returns course metadata
* 401: Unauthorized - User is not authenticated
* 403: Forbidden - User lacks instructor permissions
* 404: Not Found - Course does not exist
"""
permission_classes = (IsAuthenticated, permissions.InstructorPermission)
permission_name = permissions.VIEW_DASHBOARD
@apidocs.schema(
parameters=[
apidocs.string_parameter(
'course_id',
apidocs.ParameterLocation.PATH,
description="Course key for the course.",
),
],
responses={
200: CourseInformationSerializer,
401: "The requesting user is not authenticated.",
403: "The requesting user lacks instructor access to the course.",
404: "The requested course does not exist.",
},
)
def get(self, request, course_id):
"""
Retrieve comprehensive course information including metadata, enrollment statistics,
dashboard configuration, and user permissions.
"""
course_key = CourseKey.from_string(course_id)
course = get_course_by_id(course_key)
tabs = get_course_tab_list(request.user, course)
context = {
'tabs': tabs,
'course': course,
'user': request.user,
'request': request
}
serializer = CourseInformationSerializer(context)
return Response(serializer.data, status=status.HTTP_200_OK)
class InstructorTaskListView(DeveloperErrorViewMixin, APIView):
"""
**Use Cases**
List instructor tasks for a course.
**Example Requests**
GET /api/instructor/v2/courses/{course_key}/instructor_tasks
GET /api/instructor/v2/courses/{course_key}/instructor_tasks?problem_location_str=block-v1:...
GET /api/instructor/v2/courses/{course_key}/instructor_tasks?
problem_location_str=block-v1:...&unique_student_identifier=student@example.com
**Response Values**
{
"tasks": [
{
"task_id": "2519ff31-22d9-4a62-91e2-55495895b355",
"task_type": "grade_problems",
"task_state": "PROGRESS",
"status": "Incomplete",
"created": "2019-01-15T18:00:15.902470+00:00",
"task_input": "{}",
"task_output": null,
"duration_sec": "unknown",
"task_message": "No status information available",
"requester": "staff"
}
]
}
**Parameters**
course_key: Course key for the course.
problem_location_str (optional): Filter tasks to a specific problem location.
unique_student_identifier (optional): Filter tasks to specific student (must be used with problem_location_str).
**Returns**
* 200: OK - Returns list of instructor tasks
* 400: Bad Request - Invalid parameters
* 401: Unauthorized - User is not authenticated
* 403: Forbidden - User lacks instructor permissions
* 404: Not Found - Course does not exist
"""
permission_classes = (IsAuthenticated, permissions.InstructorPermission)
permission_name = permissions.SHOW_TASKS
@apidocs.schema(
parameters=[
apidocs.string_parameter(
'course_id',
apidocs.ParameterLocation.PATH,
description="Course key for the course.",
),
apidocs.string_parameter(
'problem_location_str',
apidocs.ParameterLocation.QUERY,
description="Optional: Filter tasks to a specific problem location.",
),
apidocs.string_parameter(
'unique_student_identifier',
apidocs.ParameterLocation.QUERY,
description="Optional: Filter tasks to a specific student (requires problem_location_str).",
),
],
responses={
200: InstructorTaskListSerializer,
400: "Invalid parameters provided.",
401: "The requesting user is not authenticated.",
403: "The requesting user lacks instructor access to the course.",
404: "The requested course does not exist.",
},
)
def get(self, request, course_id):
"""
List instructor tasks for a course.
"""
course_key = CourseKey.from_string(course_id)
# Get query parameters
problem_location_str = request.query_params.get('problem_location_str', None)
unique_student_identifier = request.query_params.get('unique_student_identifier', None)
student = None
if unique_student_identifier:
try:
student = get_student_from_identifier(unique_student_identifier)
except Exception: # pylint: disable=broad-except
return Response(
{'error': 'Invalid student identifier'},
status=status.HTTP_400_BAD_REQUEST
)
# Validate parameters
if student and not problem_location_str:
return Response(
{'error': 'unique_student_identifier must be used with problem_location_str'},
status=status.HTTP_400_BAD_REQUEST
)
# Get tasks based on filters
if problem_location_str:
try:
module_state_key = UsageKey.from_string(problem_location_str).map_into_course(course_key)
except InvalidKeyError:
return Response(
{'error': 'Invalid problem location'},
status=status.HTTP_400_BAD_REQUEST
)
if student:
# Tasks for specific problem and student
tasks = task_api.get_instructor_task_history(course_key, module_state_key, student)
else:
# Tasks for specific problem
tasks = task_api.get_instructor_task_history(course_key, module_state_key)
else:
# All running tasks
tasks = task_api.get_running_instructor_tasks(course_key)
# Extract task features and serialize
tasks_data = [extract_task_features(task) for task in tasks]
serializer = InstructorTaskListSerializer({'tasks': tasks_data})
return Response(serializer.data, status=status.HTTP_200_OK)