Implement a course dates fragment as a web view, currently we are using the course info page to get the course dates section by parsing the whole html page. LEARNER-2769
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
"""
|
|
Fragment for rendering the course dates sidebar.
|
|
"""
|
|
from django.http import Http404
|
|
from django.template.loader import render_to_string
|
|
from opaque_keys.edx.keys import CourseKey
|
|
from web_fragments.fragment import Fragment
|
|
|
|
from courseware.courses import get_course_date_blocks, get_course_with_access
|
|
from openedx.core.djangoapps.plugin_api.views import EdxFragmentView
|
|
|
|
|
|
class CourseDatesFragmentView(EdxFragmentView):
|
|
"""
|
|
A fragment to important dates within a course.
|
|
"""
|
|
def render_to_fragment(self, request, course_id=None, **kwargs):
|
|
"""
|
|
Render the course dates fragment.
|
|
"""
|
|
course_key = CourseKey.from_string(course_id)
|
|
course = get_course_with_access(request.user, 'load', course_key, check_if_enrolled=False)
|
|
course_date_blocks = get_course_date_blocks(course, request.user)
|
|
|
|
context = {
|
|
'course_date_blocks': course_date_blocks
|
|
}
|
|
html = render_to_string('course_experience/course-dates-fragment.html', context)
|
|
return Fragment(html)
|
|
|
|
|
|
class CourseDatesFragmentMobileView(CourseDatesFragmentView):
|
|
"""
|
|
A course dates fragment to show dates on mobile apps.
|
|
|
|
Mobile apps uses WebKit mobile client to create and maintain a session with
|
|
the server for authenticated requests, and it hasn't exposed any way to find
|
|
out either session was created with the server or not so mobile app uses a
|
|
mechanism to automatically create/recreate session with the server for all
|
|
authenticated requests if the server returns 404.
|
|
"""
|
|
def get(self, request, *args, **kwargs):
|
|
if not request.user.is_authenticated():
|
|
raise Http404
|
|
|
|
return super(CourseDatesFragmentMobileView, self).get(request, *args, **kwargs)
|