예제 #1
0
 def test_update_and_fetch(self):
     jsondetails = CourseDetails.fetch(self.course.location)
     jsondetails.syllabus = "<a href='foo'>bar</a>"
     # encode - decode to convert date fields and other data which changes form
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).syllabus,
         jsondetails.syllabus, "After set syllabus"
     )
     jsondetails.overview = "Overview"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).overview,
         jsondetails.overview, "After set overview"
     )
     jsondetails.intro_video = "intro_video"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).intro_video,
         jsondetails.intro_video, "After set intro_video"
     )
     jsondetails.effort = "effort"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).effort,
         jsondetails.effort, "After set effort"
     )
     jsondetails.start_date = datetime.datetime(2010, 10, 1, 0, tzinfo=UTC())
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).start_date,
         jsondetails.start_date
     )
 def test_update_and_fetch(self):
     # # NOTE: I couldn't figure out how to validly test time setting w/ all the conversions
     jsondetails = CourseDetails.fetch(self.course_location)
     jsondetails.syllabus = "<a href='foo'>bar</a>"
     # encode - decode to convert date fields and other data which changes
     # form
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).syllabus,
         jsondetails.syllabus, "After set syllabus"
     )
     jsondetails.overview = "Overview"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).overview,
         jsondetails.overview, "After set overview"
     )
     jsondetails.intro_video = "intro_video"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).intro_video,
         jsondetails.intro_video, "After set intro_video"
     )
     jsondetails.effort = "effort"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).effort,
         jsondetails.effort, "After set effort"
     )
예제 #3
0
def settings_handler(request, tag=None, course_id=None, branch=None, version_guid=None, block=None):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    locator, course_module = _get_locator_and_course(course_id, branch, version_guid, block, request.user)
    if "text/html" in request.META.get("HTTP_ACCEPT", "") and request.method == "GET":
        upload_asset_url = locator.url_reverse("assets/")

        return render_to_response(
            "settings.html",
            {
                "context_course": course_module,
                "course_locator": locator,
                "lms_link_for_about_page": utils.get_lms_link_for_about_page(course_module.location),
                "course_image_url": utils.course_image_url(course_module),
                "details_url": locator.url_reverse("/settings/details/"),
                "about_page_editable": not settings.FEATURES.get("ENABLE_MKTG_SITE", False),
                "upload_asset_url": upload_asset_url,
            },
        )
    elif "application/json" in request.META.get("HTTP_ACCEPT", ""):
        if request.method == "GET":
            return JsonResponse(
                CourseDetails.fetch(locator),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder,
            )
        else:  # post or put, doesn't matter.
            return JsonResponse(CourseDetails.update_from_json(locator, request.json), encoder=CourseSettingsEncoder)
예제 #4
0
def settings_handler(request,
                     tag=None,
                     package_id=None,
                     branch=None,
                     version_guid=None,
                     block=None):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    locator, course_module = _get_locator_and_course(package_id, branch,
                                                     version_guid, block,
                                                     request.user)
    if 'text/html' in request.META.get('HTTP_ACCEPT',
                                       '') and request.method == 'GET':
        upload_asset_url = locator.url_reverse('assets/')

        # see if the ORG of this course can be attributed to a 'Microsite'. In that case, the
        # course about page should be editable in Studio
        about_page_editable = not microsite.get_value_for_org(
            course_module.location.org, 'ENABLE_MKTG_SITE',
            settings.FEATURES.get('ENABLE_MKTG_SITE', False))

        short_description_editable = settings.FEATURES.get(
            'EDITABLE_SHORT_DESCRIPTION', True)

        return render_to_response(
            'settings.html', {
                'context_course':
                course_module,
                'course_locator':
                locator,
                'lms_link_for_about_page':
                utils.get_lms_link_for_about_page(course_module.location),
                'course_image_url':
                utils.course_image_url(course_module),
                'details_url':
                locator.url_reverse('/settings/details/'),
                'about_page_editable':
                about_page_editable,
                'short_description_editable':
                short_description_editable,
                'upload_asset_url':
                upload_asset_url
            })
    elif 'application/json' in request.META.get('HTTP_ACCEPT', ''):
        if request.method == 'GET':
            return JsonResponse(
                CourseDetails.fetch(locator),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder)
        else:  # post or put, doesn't matter.
            return JsonResponse(CourseDetails.update_from_json(
                locator, request.json, request.user),
                                encoder=CourseSettingsEncoder)
예제 #5
0
 def test_update_and_fetch(self):
     # # NOTE: I couldn't figure out how to validly test time setting w/ all the conversions
     jsondetails = CourseDetails.fetch(self.course_location)
     jsondetails.syllabus = "<a href='foo'>bar</a>"
     # encode - decode to convert date fields and other data which changes form
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).syllabus,
         jsondetails.syllabus, "After set syllabus")
     jsondetails.overview = "Overview"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).overview,
         jsondetails.overview, "After set overview")
     jsondetails.intro_video = "intro_video"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).intro_video,
         jsondetails.intro_video, "After set intro_video")
     jsondetails.effort = "effort"
     self.assertEqual(
         CourseDetails.update_from_json(jsondetails.__dict__).effort,
         jsondetails.effort, "After set effort")
예제 #6
0
def settings_handler(request,
                     tag=None,
                     course_id=None,
                     branch=None,
                     version_guid=None,
                     block=None):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    locator, course_module = _get_locator_and_course(course_id, branch,
                                                     version_guid, block,
                                                     request.user)
    if 'text/html' in request.META.get('HTTP_ACCEPT',
                                       '') and request.method == 'GET':
        upload_asset_url = locator.url_reverse('assets/')

        return render_to_response(
            'settings.html', {
                'context_course':
                course_module,
                'course_locator':
                locator,
                'lms_link_for_about_page':
                utils.get_lms_link_for_about_page(course_module.location),
                'course_image_url':
                utils.course_image_url(course_module),
                'details_url':
                locator.url_reverse('/settings/details/'),
                'about_page_editable':
                not settings.FEATURES.get('ENABLE_MKTG_SITE', False),
                'upload_asset_url':
                upload_asset_url
            })
    elif 'application/json' in request.META.get('HTTP_ACCEPT', ''):
        if request.method == 'GET':
            return JsonResponse(
                CourseDetails.fetch(locator),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder)
        else:  # post or put, doesn't matter.
            return JsonResponse(CourseDetails.update_from_json(
                locator, request.json),
                                encoder=CourseSettingsEncoder)
예제 #7
0
def settings_handler(request, tag=None, package_id=None, branch=None, version_guid=None, block=None):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    locator, course_module = _get_locator_and_course(
        package_id, branch, version_guid, block, request.user
    )
    if 'text/html' in request.META.get('HTTP_ACCEPT', '') and request.method == 'GET':
        upload_asset_url = locator.url_reverse('assets/')

        # see if the ORG of this course can be attributed to a 'Microsite'. In that case, the
        # course about page should be editable in Studio
        about_page_editable = not MicrositeConfiguration.get_microsite_configuration_value_for_org(
            course_module.location.org,
            'ENABLE_MKTG_SITE',
            settings.FEATURES.get('ENABLE_MKTG_SITE', False)
        )

        short_description_editable = settings.FEATURES.get('EDITABLE_SHORT_DESCRIPTION', True)

        return render_to_response('settings.html', {
            'context_course': course_module,
            'course_locator': locator,
            'lms_link_for_about_page': utils.get_lms_link_for_about_page(course_module.location),
            'course_image_url': utils.course_image_url(course_module),
            'details_url': locator.url_reverse('/settings/details/'),
            'about_page_editable': about_page_editable,
            'short_description_editable': short_description_editable,
            'upload_asset_url': upload_asset_url
        })
    elif 'application/json' in request.META.get('HTTP_ACCEPT', ''):
        if request.method == 'GET':
            return JsonResponse(
                CourseDetails.fetch(locator),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder
            )
        else:  # post or put, doesn't matter.
            return JsonResponse(
                CourseDetails.update_from_json(locator, request.json, request.user),
                encoder=CourseSettingsEncoder
            )
예제 #8
0
 def test_update_and_fetch(self):
     jsondetails = CourseDetails.fetch(self.course_locator)
     jsondetails.syllabus = "<a href='foo'>bar</a>"
     # encode - decode to convert date fields and other data which changes form
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).syllabus,
         jsondetails.syllabus, "After set syllabus")
     jsondetails.short_description = "Short Description"
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).short_description,
         jsondetails.short_description, "After set short_description")
     jsondetails.overview = "Overview"
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).overview,
         jsondetails.overview, "After set overview")
     jsondetails.intro_video = "intro_video"
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).intro_video,
         jsondetails.intro_video, "After set intro_video")
     jsondetails.effort = "effort"
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).effort,
         jsondetails.effort, "After set effort")
     jsondetails.start_date = datetime.datetime(2010,
                                                10,
                                                1,
                                                0,
                                                tzinfo=UTC())
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).start_date,
         jsondetails.start_date)
     jsondetails.course_image_name = "an_image.jpg"
     self.assertEqual(
         CourseDetails.update_from_json(self.course_locator,
                                        jsondetails.__dict__,
                                        self.user).course_image_name,
         jsondetails.course_image_name)
예제 #9
0
def settings_handler(request, course_key_string):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    course_key = CourseKey.from_string(course_key_string)
    course_module = _get_course_module(course_key, request.user)
    if "text/html" in request.META.get("HTTP_ACCEPT", "") and request.method == "GET":
        upload_asset_url = reverse_course_url("assets_handler", course_key)

        # see if the ORG of this course can be attributed to a 'Microsite'. In that case, the
        # course about page should be editable in Studio
        about_page_editable = not microsite.get_value_for_org(
            course_module.location.org, "ENABLE_MKTG_SITE", settings.FEATURES.get("ENABLE_MKTG_SITE", False)
        )

        short_description_editable = settings.FEATURES.get("EDITABLE_SHORT_DESCRIPTION", True)

        return render_to_response(
            "settings.html",
            {
                "context_course": course_module,
                "course_locator": course_key,
                "lms_link_for_about_page": utils.get_lms_link_for_about_page(course_key),
                "course_image_url": utils.course_image_url(course_module),
                "details_url": reverse_course_url("settings_handler", course_key),
                "about_page_editable": about_page_editable,
                "short_description_editable": short_description_editable,
                "upload_asset_url": upload_asset_url,
            },
        )
    elif "application/json" in request.META.get("HTTP_ACCEPT", ""):
        if request.method == "GET":
            return JsonResponse(
                CourseDetails.fetch(course_key),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder,
            )
        else:  # post or put, doesn't matter.
            return JsonResponse(
                CourseDetails.update_from_json(course_key, request.json, request.user), encoder=CourseSettingsEncoder
            )
예제 #10
0
 def test_update_and_fetch(self):
     jsondetails = CourseDetails.fetch(self.course.id)
     jsondetails.syllabus = "<a href='foo'>bar</a>"
     # encode - decode to convert date fields and other data which changes form
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).syllabus,
         jsondetails.syllabus, "After set syllabus"
     )
     jsondetails.short_description = "Short Description"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).short_description,
         jsondetails.short_description, "After set short_description"
     )
     jsondetails.overview = "Overview"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).overview,
         jsondetails.overview, "After set overview"
     )
     jsondetails.intro_video = "intro_video"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).intro_video,
         jsondetails.intro_video, "After set intro_video"
     )
     jsondetails.effort = "effort"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).effort,
         jsondetails.effort, "After set effort"
     )
     jsondetails.category = "category"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).category,
         jsondetails.category, "After set category"
     )
     jsondetails.start_date = datetime.datetime(2010, 10, 1, 0, tzinfo=UTC())
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).start_date,
         jsondetails.start_date
     )
     jsondetails.course_image_name = "an_image.jpg"
     self.assertEqual(
         CourseDetails.update_from_json(self.course.id, jsondetails.__dict__, self.user).course_image_name,
         jsondetails.course_image_name
     )
예제 #11
0
def settings_handler(request, tag=None, course_id=None, branch=None, version_guid=None, block=None):
    """
    Course settings for dates and about pages
    GET
        html: get the page
        json: get the CourseDetails model
    PUT
        json: update the Course and About xblocks through the CourseDetails model
    """
    locator = BlockUsageLocator(course_id=course_id, branch=branch, version_guid=version_guid, usage_id=block)
    if not has_access(request.user, locator):
        raise PermissionDenied()

    if 'text/html' in request.META.get('HTTP_ACCEPT', '') and request.method == 'GET':
        course_old_location = loc_mapper().translate_locator_to_location(locator)
        course_module = modulestore().get_item(course_old_location)

        upload_asset_url = locator.url_reverse('assets/')

        return render_to_response('settings.html', {
            'context_course': course_module,
            'course_locator': locator,
            'lms_link_for_about_page': utils.get_lms_link_for_about_page(course_old_location),
            'course_image_url': utils.course_image_url(course_module),
            'details_url': locator.url_reverse('/settings/details/'),
            'about_page_editable': not settings.FEATURES.get(
                'ENABLE_MKTG_SITE', False
            ),
            'upload_asset_url': upload_asset_url
        })
    elif 'application/json' in request.META.get('HTTP_ACCEPT', ''):
        if request.method == 'GET':
            return JsonResponse(
                CourseDetails.fetch(locator),
                # encoder serializes dates, old locations, and instances
                encoder=CourseSettingsEncoder
            )
        else:  # post or put, doesn't matter.
            return JsonResponse(
                CourseDetails.update_from_json(locator, request.json),
                encoder=CourseSettingsEncoder
            )