* Generate common/djangoapps import shims for LMS * Generate common/djangoapps import shims for Studio * Stop appending project root to sys.path * Stop appending common/djangoapps to sys.path * Import from common.djangoapps.course_action_state instead of course_action_state * Import from common.djangoapps.course_modes instead of course_modes * Import from common.djangoapps.database_fixups instead of database_fixups * Import from common.djangoapps.edxmako instead of edxmako * Import from common.djangoapps.entitlements instead of entitlements * Import from common.djangoapps.pipline_mako instead of pipeline_mako * Import from common.djangoapps.static_replace instead of static_replace * Import from common.djangoapps.student instead of student * Import from common.djangoapps.terrain instead of terrain * Import from common.djangoapps.third_party_auth instead of third_party_auth * Import from common.djangoapps.track instead of track * Import from common.djangoapps.util instead of util * Import from common.djangoapps.xblock_django instead of xblock_django * Add empty common/djangoapps/__init__.py to fix pytest collection * Fix pylint formatting violations * Exclude import_shims/ directory tree from linting
55 lines
2.0 KiB
Python
55 lines
2.0 KiB
Python
"""
|
|
Views to toggle Calendar Sync settings for a user on a course
|
|
"""
|
|
|
|
|
|
import json
|
|
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.http import HttpResponse
|
|
from django.shortcuts import redirect
|
|
from django.urls import reverse
|
|
from django.utils.decorators import method_decorator
|
|
from django.views.decorators.csrf import ensure_csrf_cookie
|
|
from django.views.generic import View
|
|
from opaque_keys.edx.keys import CourseKey
|
|
from rest_framework import status
|
|
|
|
from openedx.features.calendar_sync.api import (
|
|
SUBSCRIBE, UNSUBSCRIBE, subscribe_user_to_calendar, unsubscribe_user_to_calendar
|
|
)
|
|
from common.djangoapps.util.views import ensure_valid_course_key
|
|
|
|
|
|
class CalendarSyncView(View):
|
|
"""
|
|
View for Calendar Sync
|
|
"""
|
|
@method_decorator(login_required)
|
|
@method_decorator(ensure_csrf_cookie)
|
|
@method_decorator(ensure_valid_course_key)
|
|
def post(self, request, course_id):
|
|
"""
|
|
Updates the request user's calendar sync subscription status
|
|
|
|
Arguments:
|
|
request: HTTP request
|
|
course_id (str): string of a course key
|
|
"""
|
|
course_key = CourseKey.from_string(course_id)
|
|
tool_data = request.POST.get('tool_data')
|
|
if not tool_data:
|
|
return HttpResponse('Tool data was not provided.', status=status.HTTP_422_UNPROCESSABLE_ENTITY)
|
|
|
|
json_acceptable_string = tool_data.replace("'", "\"")
|
|
data = json.loads(json_acceptable_string)
|
|
toggle_data = data.get('toggle_data')
|
|
if toggle_data == SUBSCRIBE:
|
|
subscribe_user_to_calendar(request.user, course_key)
|
|
elif toggle_data == UNSUBSCRIBE:
|
|
unsubscribe_user_to_calendar(request.user, course_key)
|
|
else:
|
|
return HttpResponse('Toggle data was not provided or had unknown value.',
|
|
status=status.HTTP_422_UNPROCESSABLE_ENTITY)
|
|
return redirect(reverse('openedx.course_experience.course_home', args=[course_id]))
|