Commit 819a56fe by cahrens

Remove usages of deprecated SlashSeparatedCourseKey.

parent 0aaea6a0
...@@ -2,9 +2,7 @@ ...@@ -2,9 +2,7 @@
Script for cloning a course Script for cloning a course
""" """
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from student.roles import CourseInstructorRole, CourseStaffRole from student.roles import CourseInstructorRole, CourseStaffRole
from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore import ModuleStoreEnum
...@@ -18,22 +16,13 @@ class Command(BaseCommand): ...@@ -18,22 +16,13 @@ class Command(BaseCommand):
"""Clone a MongoDB-backed course to another location""" """Clone a MongoDB-backed course to another location"""
help = 'Clone a MongoDB backed course to another location' help = 'Clone a MongoDB backed course to another location'
def course_key_from_arg(self, arg):
"""
Convert the command line arg into a course key
"""
try:
return CourseKey.from_string(arg)
except InvalidKeyError:
return SlashSeparatedCourseKey.from_deprecated_string(arg)
def handle(self, *args, **options): def handle(self, *args, **options):
"Execute the command" "Execute the command"
if len(args) != 2: if len(args) != 2:
raise CommandError("clone requires 2 arguments: <source-course_id> <dest-course_id>") raise CommandError("clone requires 2 arguments: <source-course_id> <dest-course_id>")
source_course_id = self.course_key_from_arg(args[0]) source_course_id = CourseKey.from_string(args[0])
dest_course_id = self.course_key_from_arg(args[1]) dest_course_id = CourseKey.from_string(args[1])
mstore = modulestore() mstore = modulestore()
......
...@@ -8,9 +8,7 @@ ...@@ -8,9 +8,7 @@
# #
from optparse import make_option from optparse import make_option
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from contentstore.views import tabs from contentstore.views import tabs
from courseware.courses import get_course_by_id from courseware.courses import get_course_by_id
...@@ -67,12 +65,7 @@ command again, adding --insert or --delete to edit the list. ...@@ -67,12 +65,7 @@ command again, adding --insert or --delete to edit the list.
if not options['course']: if not options['course']:
raise CommandError(Command.course_option.help) raise CommandError(Command.course_option.help)
try: course = get_course_by_id(CourseKey.from_string(options['course']))
course_key = CourseKey.from_string(options['course'])
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
course = get_course_by_id(course_key)
print 'Warning: this command directly edits the list of course tabs in mongo.' print 'Warning: this command directly edits the list of course tabs in mongo.'
print 'Tabs before any changes:' print 'Tabs before any changes:'
......
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xmodule.contentstore.utils import empty_asset_trashcan from xmodule.contentstore.utils import empty_asset_trashcan
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
...@@ -17,12 +15,7 @@ class Command(BaseCommand): ...@@ -17,12 +15,7 @@ class Command(BaseCommand):
raise CommandError("empty_asset_trashcan requires one or no arguments: |<course_id>|") raise CommandError("empty_asset_trashcan requires one or no arguments: |<course_id>|")
if len(args) == 1: if len(args) == 1:
try: course_ids = [CourseKey.from_string(args[0])]
course_key = CourseKey.from_string(args[0])
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(args[0])
course_ids = [course_key]
else: else:
course_ids = [course.id for course in modulestore().get_courses()] course_ids = [course.id for course in modulestore().get_courses()]
......
...@@ -6,7 +6,6 @@ import os ...@@ -6,7 +6,6 @@ import os
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xmodule.contentstore.django import contentstore from xmodule.contentstore.django import contentstore
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
...@@ -31,10 +30,7 @@ class Command(BaseCommand): ...@@ -31,10 +30,7 @@ class Command(BaseCommand):
try: try:
course_key = CourseKey.from_string(options['course_id']) course_key = CourseKey.from_string(options['course_id'])
except InvalidKeyError: except InvalidKeyError:
try: raise CommandError("Invalid course_key: '%s'." % options['course_id'])
course_key = SlashSeparatedCourseKey.from_deprecated_string(options['course_id'])
except InvalidKeyError:
raise CommandError("Invalid course_key: '%s'." % options['course_id'])
if not modulestore().get_course(course_key): if not modulestore().get_course(course_key):
raise CommandError("Course with %s key not found." % options['course_id']) raise CommandError("Course with %s key not found." % options['course_id'])
......
...@@ -20,7 +20,6 @@ from django.core.management.base import BaseCommand, CommandError ...@@ -20,7 +20,6 @@ from django.core.management.base import BaseCommand, CommandError
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
import contentstore.git_export_utils as git_export_utils import contentstore.git_export_utils as git_export_utils
from contentstore.git_export_utils import GitExportError from contentstore.git_export_utils import GitExportError
...@@ -59,10 +58,7 @@ class Command(BaseCommand): ...@@ -59,10 +58,7 @@ class Command(BaseCommand):
try: try:
course_key = CourseKey.from_string(args[0]) course_key = CourseKey.from_string(args[0])
except InvalidKeyError: except InvalidKeyError:
try: raise CommandError(unicode(GitExportError.BAD_COURSE))
course_key = SlashSeparatedCourseKey.from_deprecated_string(args[0])
except InvalidKeyError:
raise CommandError(unicode(GitExportError.BAD_COURSE))
try: try:
git_export_utils.export_to_git( git_export_utils.export_to_git(
......
...@@ -3,9 +3,7 @@ from optparse import make_option ...@@ -3,9 +3,7 @@ from optparse import make_option
from textwrap import dedent from textwrap import dedent
from django.core.management import BaseCommand, CommandError from django.core.management import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from opaque_keys.edx.locator import LibraryLocator from opaque_keys.edx.locator import LibraryLocator
from contentstore.courseware_index import LibrarySearchIndexer from contentstore.courseware_index import LibrarySearchIndexer
...@@ -42,10 +40,7 @@ class Command(BaseCommand): ...@@ -42,10 +40,7 @@ class Command(BaseCommand):
def _parse_library_key(self, raw_value): def _parse_library_key(self, raw_value):
""" Parses library key from string """ """ Parses library key from string """
try: result = CourseKey.from_string(raw_value)
result = CourseKey.from_string(raw_value)
except InvalidKeyError:
result = SlashSeparatedCourseKey.from_deprecated_string(raw_value)
if not isinstance(result, LibraryLocator): if not isinstance(result, LibraryLocator):
raise CommandError(u"Argument {0} is not a library key".format(raw_value)) raise CommandError(u"Argument {0} is not a library key".format(raw_value))
......
...@@ -9,7 +9,6 @@ from django.contrib import admin ...@@ -9,7 +9,6 @@ from django.contrib import admin
from pytz import timezone, UTC from pytz import timezone, UTC
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from util.date_utils import get_time_display from util.date_utils import get_time_display
...@@ -86,10 +85,7 @@ class CourseModeForm(forms.ModelForm): ...@@ -86,10 +85,7 @@ class CourseModeForm(forms.ModelForm):
try: try:
course_key = CourseKey.from_string(course_id) course_key = CourseKey.from_string(course_id)
except InvalidKeyError: except InvalidKeyError:
try: raise forms.ValidationError("Cannot make a valid CourseKey from id {}!".format(course_id))
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
except InvalidKeyError:
raise forms.ValidationError("Cannot make a valid CourseKey from id {}!".format(course_id))
if not modulestore().has_course(course_key): if not modulestore().has_course(course_key):
raise forms.ValidationError("Cannot find course with id {} in the modulestore".format(course_id)) raise forms.ValidationError("Cannot find course with id {} in the modulestore".format(course_id))
......
...@@ -17,7 +17,6 @@ from django.utils.translation import get_language, to_locale ...@@ -17,7 +17,6 @@ from django.utils.translation import get_language, to_locale
from django.views.generic.base import View from django.views.generic.base import View
from ipware.ip import get_ip from ipware.ip import get_ip
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from course_modes.models import CourseMode from course_modes.models import CourseMode
from courseware.access import has_access from courseware.access import has_access
...@@ -234,7 +233,7 @@ class ChooseModeView(View): ...@@ -234,7 +233,7 @@ class ChooseModeView(View):
below the minimum, otherwise redirects to the verification flow. below the minimum, otherwise redirects to the verification flow.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
user = request.user user = request.user
# This is a bit redundant with logic in student.views.change_enrollment, # This is a bit redundant with logic in student.views.change_enrollment,
......
from django.test import TestCase from django.test import TestCase
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.locator import CourseLocator
from django_comment_common.models import Role from django_comment_common.models import Role
from models import CourseDiscussionSettings from models import CourseDiscussionSettings
...@@ -33,7 +33,7 @@ class RoleAssignmentTest(TestCase): ...@@ -33,7 +33,7 @@ class RoleAssignmentTest(TestCase):
"hacky", "hacky",
"hacky@fake.edx.org" "hacky@fake.edx.org"
) )
self.course_key = SlashSeparatedCourseKey("edX", "Fake101", "2012") self.course_key = CourseLocator("edX", "Fake101", "2012")
CourseEnrollment.enroll(self.staff_user, self.course_key) CourseEnrollment.enroll(self.staff_user, self.course_key)
CourseEnrollment.enroll(self.student_user, self.course_key) CourseEnrollment.enroll(self.student_user, self.course_key)
......
...@@ -14,7 +14,7 @@ from django.contrib.auth.models import User ...@@ -14,7 +14,7 @@ from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from student.models import anonymous_id_for_user from student.models import anonymous_id_for_user
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
class Command(BaseCommand): class Command(BaseCommand):
...@@ -36,7 +36,7 @@ class Command(BaseCommand): ...@@ -36,7 +36,7 @@ class Command(BaseCommand):
raise CommandError("Usage: unique_id_mapping %s" % raise CommandError("Usage: unique_id_mapping %s" %
" ".join(("<%s>" % arg for arg in Command.args))) " ".join(("<%s>" % arg for arg in Command.args)))
course_key = SlashSeparatedCourseKey.from_deprecated_string(args[0]) course_key = CourseKey.from_string(args[0])
# Generate the output filename from the course ID. # Generate the output filename from the course ID.
# Change slashes to dashes first, and then append .csv extension. # Change slashes to dashes first, and then append .csv extension.
......
...@@ -4,9 +4,7 @@ import logging ...@@ -4,9 +4,7 @@ import logging
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from django.db import transaction from django.db import transaction
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from optparse import make_option from optparse import make_option
from student.models import CourseEnrollment, User from student.models import CourseEnrollment, User
...@@ -86,10 +84,7 @@ class Command(BaseCommand): ...@@ -86,10 +84,7 @@ class Command(BaseCommand):
if not options['from_mode'] or not options['to_mode']: if not options['from_mode'] or not options['to_mode']:
raise CommandError('You must specify a "to" and "from" mode as parameters') raise CommandError('You must specify a "to" and "from" mode as parameters')
try: course_key = CourseKey.from_string(options['course_id'])
course_key = CourseKey.from_string(options['course_id'])
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(options['course_id'])
enrollment_args = dict( enrollment_args = dict(
course_id=course_key, course_id=course_key,
......
...@@ -5,9 +5,7 @@ import uuid ...@@ -5,9 +5,7 @@ import uuid
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from student.models import CourseEnrollment from student.models import CourseEnrollment
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from student.forms import AccountCreationForm from student.forms import AccountCreationForm
from student.views import _do_create_account from student.views import _do_create_account
...@@ -55,10 +53,7 @@ Examples: ...@@ -55,10 +53,7 @@ Examples:
num = int(args[0]) num = int(args[0])
if len(args) == 2: if len(args) == 2:
try: course_key = CourseKey.from_string(args[1])
course_key = CourseKey.from_string(args[1])
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(args[1])
else: else:
course_key = None course_key = None
......
...@@ -5,9 +5,7 @@ from django.contrib.auth.models import User ...@@ -5,9 +5,7 @@ from django.contrib.auth.models import User
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from django.utils import translation from django.utils import translation
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from student.forms import AccountCreationForm from student.forms import AccountCreationForm
from student.models import CourseEnrollment, create_comments_service_user from student.models import CourseEnrollment, create_comments_service_user
from student.views import _do_create_account, AccountValidationError from student.views import _do_create_account, AccountValidationError
...@@ -74,12 +72,7 @@ class Command(TrackedCommand): ...@@ -74,12 +72,7 @@ class Command(TrackedCommand):
# parse out the course into a coursekey # parse out the course into a coursekey
if options['course']: if options['course']:
try: course = CourseKey.from_string(options['course'])
course = CourseKey.from_string(options['course'])
# if it's not a new-style course key, parse it from an old-style
# course key
except InvalidKeyError:
course = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
form = AccountCreationForm( form = AccountCreationForm(
data={ data={
......
...@@ -40,7 +40,6 @@ from edx_rest_api_client.exceptions import SlumberBaseException ...@@ -40,7 +40,6 @@ from edx_rest_api_client.exceptions import SlumberBaseException
from eventtracking import tracker from eventtracking import tracker
from model_utils.models import TimeStampedModel from model_utils.models import TimeStampedModel
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from pytz import UTC from pytz import UTC
from simple_history.models import HistoricalRecords from simple_history.models import HistoricalRecords
from slumber.exceptions import HttpClientError, HttpServerError from slumber.exceptions import HttpClientError, HttpServerError
...@@ -1429,8 +1428,8 @@ class CourseEnrollment(models.Model): ...@@ -1429,8 +1428,8 @@ class CourseEnrollment(models.Model):
""" """
assert isinstance(course_id_partial, CourseKey) assert isinstance(course_id_partial, CourseKey)
assert not course_id_partial.run # None or empty string assert not course_id_partial.run # None or empty string
course_key = SlashSeparatedCourseKey(course_id_partial.org, course_id_partial.course, '') course_key = CourseKey.from_string('/'.join([course_id_partial.org, course_id_partial.course, '']))
querystring = unicode(course_key.to_deprecated_string()) querystring = unicode(course_key)
try: try:
return cls.objects.filter( return cls.objects.filter(
user=user, user=user,
......
...@@ -6,7 +6,6 @@ from django.contrib.auth.models import User ...@@ -6,7 +6,6 @@ from django.contrib.auth.models import User
from django.test import TestCase from django.test import TestCase
from django.test.client import Client from django.test.client import Client
from mock import patch, Mock from mock import patch, Mock
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from opaque_keys.edx.locator import CourseLocator from opaque_keys.edx.locator import CourseLocator
from django_comment_common.models import ( from django_comment_common.models import (
...@@ -32,8 +31,6 @@ class AutoAuthEnabledTestCase(AutoAuthTestCase): ...@@ -32,8 +31,6 @@ class AutoAuthEnabledTestCase(AutoAuthTestCase):
COURSE_ID_MONGO = 'edX/Test101/2014_Spring' COURSE_ID_MONGO = 'edX/Test101/2014_Spring'
COURSE_ID_SPLIT = 'course-v1:edX+Test101+2014_Spring' COURSE_ID_SPLIT = 'course-v1:edX+Test101+2014_Spring'
COURSE_IDS_DDT = ( COURSE_IDS_DDT = (
(COURSE_ID_MONGO, SlashSeparatedCourseKey.from_deprecated_string(COURSE_ID_MONGO)),
(COURSE_ID_SPLIT, SlashSeparatedCourseKey.from_deprecated_string(COURSE_ID_SPLIT)),
(COURSE_ID_MONGO, CourseLocator.from_string(COURSE_ID_MONGO)), (COURSE_ID_MONGO, CourseLocator.from_string(COURSE_ID_MONGO)),
(COURSE_ID_SPLIT, CourseLocator.from_string(COURSE_ID_SPLIT)), (COURSE_ID_SPLIT, CourseLocator.from_string(COURSE_ID_SPLIT)),
) )
......
...@@ -18,7 +18,8 @@ from django.test.client import Client ...@@ -18,7 +18,8 @@ from django.test.client import Client
from markupsafe import escape from markupsafe import escape
from mock import Mock, patch from mock import Mock, patch
from nose.plugins.attrib import attr from nose.plugins.attrib import attr
from opaque_keys.edx.locations import CourseLocator, SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import CourseLocator
from pyquery import PyQuery as pq from pyquery import PyQuery as pq
import shoppingcart # pylint: disable=import-error import shoppingcart # pylint: disable=import-error
...@@ -749,10 +750,8 @@ class EnrollInCourseTest(EnrollmentEventTestMixin, CacheIsolationTestCase): ...@@ -749,10 +750,8 @@ class EnrollInCourseTest(EnrollmentEventTestMixin, CacheIsolationTestCase):
@unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms') @unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms')
def test_enrollment(self): def test_enrollment(self):
user = User.objects.create_user("joe", "joe@joe.com", "password") user = User.objects.create_user("joe", "joe@joe.com", "password")
course_id = SlashSeparatedCourseKey("edX", "Test101", "2013") course_id = CourseKey.from_string("edX/Test101/2013")
# Cannot be converted to CourseLocator or CourseKey.from_string because both do not support course_id_partial = CourseKey.from_string("edX/Test101/")
# course keys without a run. The test specifically tests functionality when run is not specified.
course_id_partial = SlashSeparatedCourseKey("edX", "Test101", None)
# Test basic enrollment # Test basic enrollment
self.assertFalse(CourseEnrollment.is_enrolled(user, course_id)) self.assertFalse(CourseEnrollment.is_enrolled(user, course_id))
......
...@@ -40,7 +40,6 @@ from django.views.generic import TemplateView ...@@ -40,7 +40,6 @@ from django.views.generic import TemplateView
from ipware.ip import get_ip from ipware.ip import get_ip
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from opaque_keys.edx.locator import CourseLocator from opaque_keys.edx.locator import CourseLocator
from provider.oauth2.models import Client from provider.oauth2.models import Client
from pytz import UTC from pytz import UTC
...@@ -1205,7 +1204,7 @@ def change_enrollment(request, check_access=True): ...@@ -1205,7 +1204,7 @@ def change_enrollment(request, check_access=True):
return HttpResponseBadRequest(_("Course id not specified")) return HttpResponseBadRequest(_("Course id not specified"))
try: try:
course_id = SlashSeparatedCourseKey.from_deprecated_string(request.POST.get("course_id")) course_id = CourseKey.from_string(request.POST.get("course_id"))
except InvalidKeyError: except InvalidKeyError:
log.warning( log.warning(
u"User %s tried to %s with invalid course id: %s", u"User %s tried to %s with invalid course id: %s",
...@@ -2831,7 +2830,7 @@ def change_email_settings(request): ...@@ -2831,7 +2830,7 @@ def change_email_settings(request):
user = request.user user = request.user
course_id = request.POST.get("course_id") course_id = request.POST.get("course_id")
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
receive_emails = request.POST.get("receive_emails") receive_emails = request.POST.get("receive_emails")
if receive_emails: if receive_emails:
optout_object = Optout.objects.filter(user=user, course_id=course_key) optout_object = Optout.objects.filter(user=user, course_id=course_key)
......
...@@ -19,7 +19,7 @@ from logging import getLogger ...@@ -19,7 +19,7 @@ from logging import getLogger
import lettuce.django import lettuce.django
from lettuce import step, world from lettuce import step, world
from nose.tools import assert_equals # pylint: disable=no-name-in-module from nose.tools import assert_equals # pylint: disable=no-name-in-module
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from .course_helpers import * from .course_helpers import *
from .ui_helpers import * from .ui_helpers import *
...@@ -116,7 +116,7 @@ def i_am_not_logged_in(step): ...@@ -116,7 +116,7 @@ def i_am_not_logged_in(step):
@step('I am staff for course "([^"]*)"$') @step('I am staff for course "([^"]*)"$')
def i_am_staff_for_course_by_id(step, course_id): def i_am_staff_for_course_by_id(step, course_id):
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
world.register_by_course_key(course_key, True) world.register_by_course_key(course_key, True)
......
...@@ -3,7 +3,6 @@ import logging ...@@ -3,7 +3,6 @@ import logging
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from util.request import COURSE_REGEX from util.request import COURSE_REGEX
...@@ -22,7 +21,7 @@ def course_context_from_url(url): ...@@ -22,7 +21,7 @@ def course_context_from_url(url):
if match: if match:
course_id_string = match.group('course_id') course_id_string = match.group('course_id')
try: try:
course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id_string) course_id = CourseKey.from_string(course_id_string)
except InvalidKeyError: except InvalidKeyError:
log.warning( log.warning(
'unable to parse course_id "{course_id}"'.format( 'unable to parse course_id "{course_id}"'.format(
......
...@@ -3,7 +3,7 @@ import re ...@@ -3,7 +3,7 @@ import re
from django.conf import settings from django.conf import settings
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
...@@ -44,6 +44,6 @@ def course_id_from_url(url): ...@@ -44,6 +44,6 @@ def course_id_from_url(url):
return None return None
try: try:
return SlashSeparatedCourseKey.from_deprecated_string(course_id) return CourseKey.from_string(course_id)
except InvalidKeyError: except InvalidKeyError:
return None return None
...@@ -13,7 +13,8 @@ from django.http import HttpRequest ...@@ -13,7 +13,8 @@ from django.http import HttpRequest
from django.test import TestCase from django.test import TestCase
from django.utils.timezone import UTC from django.utils.timezone import UTC
from mock import Mock, patch from mock import Mock, patch
from opaque_keys.edx.locations import CourseLocator, SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import CourseLocator
import util.file import util.file
from util.file import ( from util.file import (
...@@ -30,19 +31,13 @@ class FilenamePrefixGeneratorTestCase(TestCase): ...@@ -30,19 +31,13 @@ class FilenamePrefixGeneratorTestCase(TestCase):
""" """
Tests for course_filename_prefix_generator Tests for course_filename_prefix_generator
""" """
@ddt.data(CourseLocator, SlashSeparatedCourseKey) @ddt.data(CourseLocator(org='foo', course='bar', run='baz'), CourseKey.from_string('foo/bar/baz'))
def test_locators(self, course_key_class): def test_locators(self, course_key):
self.assertEqual( self.assertEqual(course_filename_prefix_generator(course_key), u'foo_bar_baz')
course_filename_prefix_generator(course_key_class(org='foo', course='bar', run='baz')),
u'foo_bar_baz'
)
@ddt.data(CourseLocator, SlashSeparatedCourseKey) @ddt.data(CourseLocator(org='foo', course='bar', run='baz'), CourseKey.from_string('foo/bar/baz'))
def test_custom_separator(self, course_key_class): def test_custom_separator(self, course_key):
self.assertEqual( self.assertEqual(course_filename_prefix_generator(course_key, separator='-'), u'foo-bar-baz')
course_filename_prefix_generator(course_key_class(org='foo', course='bar', run='baz'), separator='-'),
u'foo-bar-baz'
)
@ddt.ddt @ddt.ddt
...@@ -62,21 +57,19 @@ class FilenameGeneratorTestCase(TestCase): ...@@ -62,21 +57,19 @@ class FilenameGeneratorTestCase(TestCase):
mocked_datetime.now.return_value = self.NOW mocked_datetime.now.return_value = self.NOW
self.addCleanup(datetime_patcher.stop) self.addCleanup(datetime_patcher.stop)
@ddt.data(CourseLocator, SlashSeparatedCourseKey) @ddt.data(CourseLocator(org='foo', course='bar', run='baz'), CourseKey.from_string('foo/bar/baz'))
def test_filename_generator(self, course_key_class): def test_filename_generator(self, course_key):
""" """
Tests that the generator creates names based on course_id, base name, and date. Tests that the generator creates names based on course_id, base name, and date.
""" """
self.assertEqual( self.assertEqual(
u'foo_bar_baz_file_1974-06-22-010203', u'foo_bar_baz_file_1974-06-22-010203',
course_and_time_based_filename_generator(course_key_class(org='foo', course='bar', run='baz'), 'file') course_and_time_based_filename_generator(course_key, 'file')
) )
self.assertEqual( self.assertEqual(
u'foo_bar_baz_base_name_ø_1974-06-22-010203', u'foo_bar_baz_base_name_ø_1974-06-22-010203',
course_and_time_based_filename_generator( course_and_time_based_filename_generator(course_key, ' base` name ø ')
course_key_class(org='foo', course='bar', run='baz'), ' base` name ø '
)
) )
......
...@@ -14,7 +14,6 @@ from contracts import contract, new_contract ...@@ -14,7 +14,6 @@ from contracts import contract, new_contract
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey, AssetKey from opaque_keys.edx.keys import CourseKey, AssetKey
from opaque_keys.edx.locator import LibraryLocator from opaque_keys.edx.locator import LibraryLocator
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xmodule.assetstore import AssetMetadata from xmodule.assetstore import AssetMetadata
from . import ModuleStoreWriteBase, ModuleStoreEnum, XMODULE_FIELDS_WITH_USAGE_KEYS from . import ModuleStoreWriteBase, ModuleStoreEnum, XMODULE_FIELDS_WITH_USAGE_KEYS
...@@ -161,11 +160,8 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase): ...@@ -161,11 +160,8 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase):
try: try:
self.mappings[CourseKey.from_string(course_id)] = store_name self.mappings[CourseKey.from_string(course_id)] = store_name
except InvalidKeyError: except InvalidKeyError:
try: log.exception("Invalid MixedModuleStore configuration. Unable to parse course_id %r", course_id)
self.mappings[SlashSeparatedCourseKey.from_deprecated_string(course_id)] = store_name continue
except InvalidKeyError:
log.exception("Invalid MixedModuleStore configuration. Unable to parse course_id %r", course_id)
continue
for store_settings in stores: for store_settings in stores:
key = store_settings['NAME'] key = store_settings['NAME']
......
...@@ -26,7 +26,7 @@ from contracts import contract, new_contract ...@@ -26,7 +26,7 @@ from contracts import contract, new_contract
from fs.osfs import OSFS from fs.osfs import OSFS
from mongodb_proxy import autoretry_read from mongodb_proxy import autoretry_read
from opaque_keys.edx.keys import UsageKey, CourseKey, AssetKey from opaque_keys.edx.keys import UsageKey, CourseKey, AssetKey
from opaque_keys.edx.locations import Location, BlockUsageLocator, SlashSeparatedCourseKey from opaque_keys.edx.locations import Location, BlockUsageLocator
from opaque_keys.edx.locator import CourseLocator, LibraryLocator from opaque_keys.edx.locator import CourseLocator, LibraryLocator
from path import Path as path from path import Path as path
from pytz import UTC from pytz import UTC
...@@ -1021,7 +1021,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo ...@@ -1021,7 +1021,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo
courses_summaries = [] courses_summaries = []
for course in course_records: for course in course_records:
if not (course['_id']['org'] == 'edx' and course['_id']['course'] == 'templates'): if not (course['_id']['org'] == 'edx' and course['_id']['course'] == 'templates'):
locator = SlashSeparatedCourseKey(course['_id']['org'], course['_id']['course'], course['_id']['name']) locator = CourseKey.from_string('/'.join(
[course['_id']['org'], course['_id']['course'], course['_id']['name']]
))
course_summary = extract_course_summary(course) course_summary = extract_course_summary(course)
courses_summaries.append( courses_summaries.append(
CourseSummary(locator, **course_summary) CourseSummary(locator, **course_summary)
...@@ -1045,7 +1047,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo ...@@ -1045,7 +1047,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo
base_list = sum( base_list = sum(
[ [
self._load_items( self._load_items(
SlashSeparatedCourseKey(course['_id']['org'], course['_id']['course'], course['_id']['name']), CourseKey.from_string('/'.join(
[course['_id']['org'], course['_id']['course'], course['_id']['name']]
)),
[course] [course]
) )
for course for course
...@@ -1136,7 +1140,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo ...@@ -1136,7 +1140,9 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo
course_query = {'_id': location.to_deprecated_son()} course_query = {'_id': location.to_deprecated_son()}
course = self.collection.find_one(course_query, projection={'_id': True}) course = self.collection.find_one(course_query, projection={'_id': True})
if course: if course:
return SlashSeparatedCourseKey(course['_id']['org'], course['_id']['course'], course['_id']['name']) return CourseKey.from_string('/'.join([
course['_id']['org'], course['_id']['course'], course['_id']['name']]
))
else: else:
return None return None
...@@ -1289,7 +1295,7 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo ...@@ -1289,7 +1295,7 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo
Raises: Raises:
InvalidLocationError: If a course with the same org, course, and run already exists InvalidLocationError: If a course with the same org, course, and run already exists
""" """
course_id = SlashSeparatedCourseKey(org, course, run) course_id = CourseKey.from_string('/'.join([org, course, run]))
# Check if a course with this org/course has been defined before (case-insensitive) # Check if a course with this org/course has been defined before (case-insensitive)
course_search_location = SON([ course_search_location = SON([
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Custom field types for mongoengine Custom field types for mongoengine
""" """
import mongoengine import mongoengine
from opaque_keys.edx.locations import SlashSeparatedCourseKey, Location from opaque_keys.edx.locations import Location
from types import NoneType from types import NoneType
from opaque_keys.edx.keys import CourseKey, UsageKey from opaque_keys.edx.keys import CourseKey, UsageKey
...@@ -36,7 +36,7 @@ class CourseKeyField(mongoengine.StringField): ...@@ -36,7 +36,7 @@ class CourseKeyField(mongoengine.StringField):
if course_key == '': if course_key == '':
return None return None
if isinstance(course_key, basestring): if isinstance(course_key, basestring):
return SlashSeparatedCourseKey.from_deprecated_string(course_key) return CourseKey.from_string(course_key)
else: else:
return course_key return course_key
......
...@@ -26,7 +26,8 @@ from xmodule.x_module import ( ...@@ -26,7 +26,8 @@ from xmodule.x_module import (
from xmodule.modulestore.xml_exporter import DEFAULT_CONTENT_FIELDS from xmodule.modulestore.xml_exporter import DEFAULT_CONTENT_FIELDS
from xmodule.modulestore import ModuleStoreEnum, ModuleStoreReadBase, LIBRARY_ROOT, COURSE_ROOT from xmodule.modulestore import ModuleStoreEnum, ModuleStoreReadBase, LIBRARY_ROOT, COURSE_ROOT
from xmodule.tabs import CourseTabList from xmodule.tabs import CourseTabList
from opaque_keys.edx.locations import SlashSeparatedCourseKey, Location from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import Location
from opaque_keys.edx.locator import CourseLocator, LibraryLocator, BlockUsageLocator from opaque_keys.edx.locator import CourseLocator, LibraryLocator, BlockUsageLocator
from xblock.field_data import DictFieldData from xblock.field_data import DictFieldData
...@@ -357,7 +358,7 @@ class XMLModuleStore(ModuleStoreReadBase): ...@@ -357,7 +358,7 @@ class XMLModuleStore(ModuleStoreReadBase):
self.errored_courses = {} # course_dir -> errorlog, for dirs that failed to load self.errored_courses = {} # course_dir -> errorlog, for dirs that failed to load
if course_ids is not None: if course_ids is not None:
course_ids = [SlashSeparatedCourseKey.from_deprecated_string(course_id) for course_id in course_ids] course_ids = [CourseKey.from_string(course_id) for course_id in course_ids]
self.load_error_modules = load_error_modules self.load_error_modules = load_error_modules
...@@ -629,9 +630,9 @@ class XMLModuleStore(ModuleStoreReadBase): ...@@ -629,9 +630,9 @@ class XMLModuleStore(ModuleStoreReadBase):
if not url_name: if not url_name:
raise ValueError("Can't load a course without a 'url_name' " raise ValueError("Can't load a course without a 'url_name' "
"(or 'name') set. Set url_name.") "(or 'name') set. Set url_name.")
# Have to use SlashSeparatedCourseKey here because it makes sure the same format is # Have to use older key format here because it makes sure the same format is
# always used, preventing duplicate keys. # always used, preventing duplicate keys.
return SlashSeparatedCourseKey(org, course, url_name) return CourseKey.from_string('/'.join([org, course, url_name]))
def load_extra_content(self, system, course_descriptor, category, base_dir, course_dir, url_name): def load_extra_content(self, system, course_descriptor, category, base_dir, course_dir, url_name):
self._load_extra_content(system, course_descriptor, category, base_dir, course_dir) self._load_extra_content(system, course_descriptor, category, base_dir, course_dir)
......
...@@ -17,21 +17,18 @@ import unittest ...@@ -17,21 +17,18 @@ import unittest
from contextlib import contextmanager, nested from contextlib import contextmanager, nested
from functools import wraps from functools import wraps
from lazy import lazy from mock import Mock
from mock import Mock, patch
from operator import attrgetter
from path import Path as path from path import Path as path
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from xblock.field_data import DictFieldData from xblock.field_data import DictFieldData
from xblock.fields import ScopeIds, Scope, Reference, ReferenceList, ReferenceValueDict from xblock.fields import ScopeIds, Reference, ReferenceList, ReferenceValueDict
from xmodule.assetstore import AssetMetadata from xmodule.assetstore import AssetMetadata
from xmodule.error_module import ErrorDescriptor from xmodule.error_module import ErrorDescriptor
from xmodule.mako_module import MakoDescriptorSystem from xmodule.mako_module import MakoDescriptorSystem
from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore import ModuleStoreEnum
from xmodule.modulestore.draft_and_published import DIRECT_ONLY_CATEGORIES, ModuleStoreDraftAndPublished from xmodule.modulestore.draft_and_published import ModuleStoreDraftAndPublished
from xmodule.modulestore.inheritance import InheritanceMixin, own_metadata from xmodule.modulestore.inheritance import InheritanceMixin
from xmodule.modulestore.mongo.draft import DraftModuleStore
from xmodule.modulestore.xml import CourseLocationManager from xmodule.modulestore.xml import CourseLocationManager
from xmodule.x_module import ModuleSystem, XModuleDescriptor, XModuleMixin from xmodule.x_module import ModuleSystem, XModuleDescriptor, XModuleMixin
...@@ -86,7 +83,7 @@ class TestModuleSystem(ModuleSystem): # pylint: disable=abstract-method ...@@ -86,7 +83,7 @@ class TestModuleSystem(ModuleSystem): # pylint: disable=abstract-method
return rt_repr return rt_repr
def get_test_system(course_id=SlashSeparatedCourseKey('org', 'course', 'run')): def get_test_system(course_id=CourseKey.from_string('/'.join(['org', 'course', 'run']))):
""" """
Construct a test ModuleSystem instance. Construct a test ModuleSystem instance.
......
...@@ -8,7 +8,8 @@ from mock import Mock, patch ...@@ -8,7 +8,8 @@ from mock import Mock, patch
from xblock.field_data import DictFieldData from xblock.field_data import DictFieldData
from xblock.fields import ScopeIds from xblock.fields import ScopeIds
from xmodule.error_module import NonStaffErrorDescriptor from xmodule.error_module import NonStaffErrorDescriptor
from opaque_keys.edx.locations import SlashSeparatedCourseKey, Location from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import Location
from xmodule.modulestore.xml import ImportSystem, XMLModuleStore, CourseLocationManager from xmodule.modulestore.xml import ImportSystem, XMLModuleStore, CourseLocationManager
from xmodule.conditional_module import ConditionalDescriptor from xmodule.conditional_module import ConditionalDescriptor
from xmodule.tests import DATA_DIR, get_test_system, get_test_descriptor_system from xmodule.tests import DATA_DIR, get_test_system, get_test_descriptor_system
...@@ -29,7 +30,7 @@ class DummySystem(ImportSystem): ...@@ -29,7 +30,7 @@ class DummySystem(ImportSystem):
super(DummySystem, self).__init__( super(DummySystem, self).__init__(
xmlstore=xmlstore, xmlstore=xmlstore,
course_id=SlashSeparatedCourseKey(ORG, COURSE, 'test_run'), course_id=CourseKey.from_string('/'.join([ORG, COURSE, 'test_run'])),
course_dir='test_dir', course_dir='test_dir',
error_tracker=Mock(), error_tracker=Mock(),
load_error_modules=load_error_modules, load_error_modules=load_error_modules,
......
...@@ -8,7 +8,8 @@ from path import Path as path ...@@ -8,7 +8,8 @@ from path import Path as path
from xmodule.contentstore.content import StaticContent, StaticContentStream from xmodule.contentstore.content import StaticContent, StaticContentStream
from xmodule.contentstore.content import ContentStore from xmodule.contentstore.content import ContentStore
from opaque_keys.edx.locations import SlashSeparatedCourseKey, AssetLocation from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import AssetLocation
from xmodule.static_content import _write_js, _list_descriptors from xmodule.static_content import _write_js, _list_descriptors
SAMPLE_STRING = """ SAMPLE_STRING = """
...@@ -158,7 +159,7 @@ class ContentTest(unittest.TestCase): ...@@ -158,7 +159,7 @@ class ContentTest(unittest.TestCase):
# We had a bug that __ got converted into a single _. Make sure that substitution of INVALID_CHARS (like space) # We had a bug that __ got converted into a single _. Make sure that substitution of INVALID_CHARS (like space)
# still happen. # still happen.
asset_location = StaticContent.compute_location( asset_location = StaticContent.compute_location(
SlashSeparatedCourseKey('mitX', '400', 'ignore'), 'subs__1eo_jXvZnE .srt.sjson' CourseKey.from_string('mitX/400/ignore'), 'subs__1eo_jXvZnE .srt.sjson'
) )
self.assertEqual( self.assertEqual(
AssetLocation(u'mitX', u'400', u'ignore', u'asset', u'subs__1eo_jXvZnE_.srt.sjson', None), AssetLocation(u'mitX', u'400', u'ignore', u'asset', u'subs__1eo_jXvZnE_.srt.sjson', None),
......
...@@ -12,7 +12,7 @@ from xblock.runtime import KvsFieldData, DictKeyValueStore ...@@ -12,7 +12,7 @@ from xblock.runtime import KvsFieldData, DictKeyValueStore
import xmodule.course_module import xmodule.course_module
from xmodule.modulestore.xml import ImportSystem, XMLModuleStore from xmodule.modulestore.xml import ImportSystem, XMLModuleStore
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
ORG = 'test_org' ORG = 'test_org'
...@@ -39,7 +39,7 @@ class DummySystem(ImportSystem): ...@@ -39,7 +39,7 @@ class DummySystem(ImportSystem):
xmlstore = XMLModuleStore("data_dir", source_dirs=[], xmlstore = XMLModuleStore("data_dir", source_dirs=[],
load_error_modules=load_error_modules) load_error_modules=load_error_modules)
course_id = SlashSeparatedCourseKey(ORG, COURSE, 'test_run') course_id = CourseKey.from_string('/'.join([ORG, COURSE, 'test_run']))
course_dir = "test_dir" course_dir = "test_dir"
error_tracker = Mock() error_tracker = Mock()
......
...@@ -20,7 +20,6 @@ from xmodule.fields import Date ...@@ -20,7 +20,6 @@ from xmodule.fields import Date
from xmodule.tests import DATA_DIR from xmodule.tests import DATA_DIR
from xmodule.modulestore.inheritance import InheritanceMixin from xmodule.modulestore.inheritance import InheritanceMixin
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xblock.core import XBlock from xblock.core import XBlock
from xblock.fields import Scope, String, Integer from xblock.fields import Scope, String, Integer
...@@ -40,7 +39,7 @@ class DummySystem(ImportSystem): ...@@ -40,7 +39,7 @@ class DummySystem(ImportSystem):
xmlstore = LibraryXMLModuleStore("data_dir", source_dirs=[], load_error_modules=load_error_modules) xmlstore = LibraryXMLModuleStore("data_dir", source_dirs=[], load_error_modules=load_error_modules)
else: else:
xmlstore = XMLModuleStore("data_dir", source_dirs=[], load_error_modules=load_error_modules) xmlstore = XMLModuleStore("data_dir", source_dirs=[], load_error_modules=load_error_modules)
course_id = SlashSeparatedCourseKey(ORG, COURSE, 'test_run') course_id = CourseKey.from_string('/'.join([ORG, COURSE, 'test_run']))
course_dir = "test_dir" course_dir = "test_dir"
error_tracker = Mock() error_tracker = Mock()
......
...@@ -7,11 +7,9 @@ This module provides functions to retrieve basic branded parts ...@@ -7,11 +7,9 @@ This module provides functions to retrieve basic branded parts
such as the site visible courses, university name and logo. such as the site visible courses, university name and logo.
""" """
from xmodule.modulestore.django import modulestore
from xmodule.course_module import CourseDescriptor
from django.conf import settings from django.conf import settings
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from openedx.core.djangoapps.content.course_overviews.models import CourseOverview from openedx.core.djangoapps.content.course_overviews.models import CourseOverview
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
...@@ -53,7 +51,7 @@ def get_visible_courses(org=None, filter_=None): ...@@ -53,7 +51,7 @@ def get_visible_courses(org=None, filter_=None):
subdomain = configuration_helpers.get_value('subdomain', 'default') subdomain = configuration_helpers.get_value('subdomain', 'default')
if hasattr(settings, 'COURSE_LISTINGS') and subdomain in settings.COURSE_LISTINGS and not settings.DEBUG: if hasattr(settings, 'COURSE_LISTINGS') and subdomain in settings.COURSE_LISTINGS and not settings.DEBUG:
filtered_visible_ids = frozenset( filtered_visible_ids = frozenset(
[SlashSeparatedCourseKey.from_deprecated_string(c) for c in settings.COURSE_LISTINGS[subdomain]] [CourseKey.from_string(c) for c in settings.COURSE_LISTINGS[subdomain]]
) )
if filtered_visible_ids: if filtered_visible_ids:
......
...@@ -7,7 +7,6 @@ from django import forms ...@@ -7,7 +7,6 @@ from django import forms
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from bulk_email.models import COURSE_EMAIL_MESSAGE_BODY_TAG, CourseAuthorization, CourseEmailTemplate from bulk_email.models import COURSE_EMAIL_MESSAGE_BODY_TAG, CourseAuthorization, CourseEmailTemplate
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
...@@ -84,13 +83,10 @@ class CourseAuthorizationAdminForm(forms.ModelForm): ...@@ -84,13 +83,10 @@ class CourseAuthorizationAdminForm(forms.ModelForm):
try: try:
course_key = CourseKey.from_string(cleaned_id) course_key = CourseKey.from_string(cleaned_id)
except InvalidKeyError: except InvalidKeyError:
try: msg = u'Course id invalid.'
course_key = SlashSeparatedCourseKey.from_deprecated_string(cleaned_id) msg += u' --- Entered course id was: "{0}". '.format(cleaned_id)
except InvalidKeyError: msg += 'Please recheck that you have supplied a valid course id.'
msg = u'Course id invalid.' raise forms.ValidationError(msg)
msg += u' --- Entered course id was: "{0}". '.format(cleaned_id)
msg += 'Please recheck that you have supplied a valid course id.'
raise forms.ValidationError(msg)
if not modulestore().has_course(course_key): if not modulestore().has_course(course_key):
msg = u'COURSE NOT FOUND' msg = u'COURSE NOT FOUND'
......
...@@ -8,9 +8,7 @@ from optparse import make_option ...@@ -8,9 +8,7 @@ from optparse import make_option
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from certificates.models import CertificateWhitelist from certificates.models import CertificateWhitelist
...@@ -92,12 +90,7 @@ class Command(BaseCommand): ...@@ -92,12 +90,7 @@ class Command(BaseCommand):
cert_whitelist.save() cert_whitelist.save()
# try to parse the serialized course key into a CourseKey # try to parse the serialized course key into a CourseKey
try: course = CourseKey.from_string(course_id)
course = CourseKey.from_string(course_id)
except InvalidKeyError:
print(("Course id {} could not be parsed as a CourseKey; "
"falling back to SSCK.from_dep_str").format(course_id))
course = SlashSeparatedCourseKey.from_deprecated_string(course_id)
if options['add'] and options['del']: if options['add'] and options['del']:
raise CommandError("Either remove or add a user, not both") raise CommandError("Either remove or add a user, not both")
......
...@@ -7,9 +7,7 @@ from optparse import make_option ...@@ -7,9 +7,7 @@ from optparse import make_option
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from django.db.models import Count from django.db.models import Count
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from certificates.models import GeneratedCertificate from certificates.models import GeneratedCertificate
...@@ -51,12 +49,7 @@ class Command(BaseCommand): ...@@ -51,12 +49,7 @@ class Command(BaseCommand):
# Find all courses that have ended # Find all courses that have ended
if options['course']: if options['course']:
try: course_id = CourseKey.from_string(options['course'])
course_id = CourseKey.from_string(options['course'])
except InvalidKeyError:
print ("Course id {} could not be parsed as a CourseKey; "
"falling back to SSCK.from_dep_str").format(options['course'])
course_id = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
else: else:
raise CommandError("You must specify a course") raise CommandError("You must specify a course")
......
...@@ -6,9 +6,7 @@ from optparse import make_option ...@@ -6,9 +6,7 @@ from optparse import make_option
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from badges.events.course_complete import get_completion_badge from badges.events.course_complete import get_completion_badge
from certificates.api import regenerate_user_certificates from certificates.api import regenerate_user_certificates
...@@ -76,17 +74,7 @@ class Command(BaseCommand): ...@@ -76,17 +74,7 @@ class Command(BaseCommand):
if options['course']: if options['course']:
# try to parse out the course from the serialized form # try to parse out the course from the serialized form
try: course_id = CourseKey.from_string(options['course'])
course_id = CourseKey.from_string(options['course'])
except InvalidKeyError:
LOGGER.warning(
(
u"Course id %s could not be parsed as a CourseKey; "
u"falling back to SlashSeparatedCourseKey.from_deprecated_string()"
),
options['course']
)
course_id = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
else: else:
raise CommandError("You must specify a course") raise CommandError("You must specify a course")
......
...@@ -8,9 +8,7 @@ from optparse import make_option ...@@ -8,9 +8,7 @@ from optparse import make_option
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from pytz import UTC from pytz import UTC
from certificates.api import generate_user_certificates from certificates.api import generate_user_certificates
...@@ -88,18 +86,7 @@ class Command(BaseCommand): ...@@ -88,18 +86,7 @@ class Command(BaseCommand):
STATUS_INTERVAL = 500 STATUS_INTERVAL = 500
if options['course']: if options['course']:
# try to parse out the course from the serialized form course = CourseKey.from_string(options['course'])
try:
course = CourseKey.from_string(options['course'])
except InvalidKeyError:
LOGGER.warning(
(
u"Course id %s could not be parsed as a CourseKey; "
u"falling back to SlashSeparatedCourseKey.from_deprecated_string()"
),
options['course']
)
course = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
ended_courses = [course] ended_courses = [course]
else: else:
raise CommandError("You must specify a course") raise CommandError("You must specify a course")
......
...@@ -9,7 +9,7 @@ from django.db import transaction ...@@ -9,7 +9,7 @@ from django.db import transaction
from django.http import Http404, HttpResponse, HttpResponseForbidden from django.http import Http404, HttpResponse, HttpResponseForbidden
from django.views.decorators.csrf import csrf_exempt from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import require_POST from django.views.decorators.http import require_POST
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
import dogstats_wrapper as dog_stats_api import dogstats_wrapper as dog_stats_api
from capa.xqueue_interface import XQUEUE_METRIC_NAME from capa.xqueue_interface import XQUEUE_METRIC_NAME
...@@ -42,7 +42,7 @@ def request_certificate(request): ...@@ -42,7 +42,7 @@ def request_certificate(request):
if request.user.is_authenticated(): if request.user.is_authenticated():
username = request.user.username username = request.user.username
student = User.objects.get(username=username) student = User.objects.get(username=username)
course_key = SlashSeparatedCourseKey.from_deprecated_string(request.POST.get('course_id')) course_key = CourseKey.from_string(request.POST.get('course_id'))
course = modulestore().get_course(course_key, depth=2) course = modulestore().get_course(course_key, depth=2)
status = certificate_status_for_student(student, course_key)['status'] status = certificate_status_for_student(student, course_key)['status']
...@@ -72,7 +72,7 @@ def update_certificate(request): ...@@ -72,7 +72,7 @@ def update_certificate(request):
xqueue_header = json.loads(request.POST.get('xqueue_header')) xqueue_header = json.loads(request.POST.get('xqueue_header'))
try: try:
course_key = SlashSeparatedCourseKey.from_deprecated_string(xqueue_body['course_id']) course_key = CourseKey.from_string(xqueue_body['course_id'])
cert = GeneratedCertificate.eligible_certificates.get( cert = GeneratedCertificate.eligible_certificates.get(
user__username=xqueue_body['username'], user__username=xqueue_body['username'],
......
...@@ -6,7 +6,7 @@ import json ...@@ -6,7 +6,7 @@ import json
import logging import logging
from django.http import HttpResponse from django.http import HttpResponse
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from class_dashboard import dashboard_data from class_dashboard import dashboard_data
from courseware.access import has_access from courseware.access import has_access
...@@ -38,7 +38,7 @@ def all_sequential_open_distrib(request, course_id): ...@@ -38,7 +38,7 @@ def all_sequential_open_distrib(request, course_id):
data = {} data = {}
# Only instructor for this particular course can request this information # Only instructor for this particular course can request this information
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
if has_instructor_access_for_class(request.user, course_key): if has_instructor_access_for_class(request.user, course_key):
try: try:
data = dashboard_data.get_d3_sequential_open_distrib(course_key) data = dashboard_data.get_d3_sequential_open_distrib(course_key)
...@@ -64,7 +64,7 @@ def all_problem_grade_distribution(request, course_id): ...@@ -64,7 +64,7 @@ def all_problem_grade_distribution(request, course_id):
data = {} data = {}
# Only instructor for this particular course can request this information # Only instructor for this particular course can request this information
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
if has_instructor_access_for_class(request.user, course_key): if has_instructor_access_for_class(request.user, course_key):
try: try:
data = dashboard_data.get_d3_problem_grade_distrib(course_key) data = dashboard_data.get_d3_problem_grade_distrib(course_key)
...@@ -95,7 +95,7 @@ def section_problem_grade_distrib(request, course_id, section): ...@@ -95,7 +95,7 @@ def section_problem_grade_distrib(request, course_id, section):
data = {} data = {}
# Only instructor for this particular course can request this information # Only instructor for this particular course can request this information
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
if has_instructor_access_for_class(request.user, course_key): if has_instructor_access_for_class(request.user, course_key):
try: try:
data = dashboard_data.get_d3_section_grade_distrib(course_key, section) data = dashboard_data.get_d3_section_grade_distrib(course_key, section)
......
...@@ -100,7 +100,7 @@ class CourseViewTestsMixin(object): ...@@ -100,7 +100,7 @@ class CourseViewTestsMixin(object):
start=datetime(2014, 6, 16, 14, 30), start=datetime(2014, 6, 16, 14, 30),
end=datetime(2015, 1, 16), end=datetime(2015, 1, 16),
org="MTD", org="MTD",
# Use mongo so that we can get a test with a SlashSeparatedCourseKey # Use mongo so that we can get a test with the deprecated key format.
default_store=ModuleStoreEnum.Type.mongo default_store=ModuleStoreEnum.Type.mongo
) )
......
...@@ -8,7 +8,7 @@ import re ...@@ -8,7 +8,7 @@ import re
from django.conf import settings from django.conf import settings
from django.shortcuts import redirect from django.shortcuts import redirect
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from wiki.core.exceptions import NoRootURL from wiki.core.exceptions import NoRootURL
from wiki.models import Article, URLPath from wiki.models import Article, URLPath
...@@ -36,7 +36,7 @@ def course_wiki_redirect(request, course_id, wiki_path=""): # pylint: disable=u ...@@ -36,7 +36,7 @@ def course_wiki_redirect(request, course_id, wiki_path=""): # pylint: disable=u
as it's home page. A course's wiki must be an article on the root (for as it's home page. A course's wiki must be an article on the root (for
example, "/6.002x") to keep things simple. example, "/6.002x") to keep things simple.
""" """
course = get_course_by_id(SlashSeparatedCourseKey.from_deprecated_string(course_id)) course = get_course_by_id(CourseKey.from_string(course_id))
course_slug = course_wiki_slug(course) course_slug = course_wiki_slug(course)
valid_slug = True valid_slug = True
......
...@@ -19,7 +19,6 @@ from django.views.decorators.csrf import csrf_exempt ...@@ -19,7 +19,6 @@ from django.views.decorators.csrf import csrf_exempt
from edx_proctoring.services import ProctoringService from edx_proctoring.services import ProctoringService
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey, UsageKey from opaque_keys.edx.keys import CourseKey, UsageKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from requests.auth import HTTPBasicAuth from requests.auth import HTTPBasicAuth
from xblock.core import XBlock from xblock.core import XBlock
from xblock.django.request import django_to_webob_request, webob_to_django_response from xblock.django.request import django_to_webob_request, webob_to_django_response
...@@ -886,7 +885,7 @@ def get_module_by_usage_id(request, course_id, usage_id, disable_staff_debug_inf ...@@ -886,7 +885,7 @@ def get_module_by_usage_id(request, course_id, usage_id, disable_staff_debug_inf
user = request.user user = request.user
try: try:
course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_id = CourseKey.from_string(course_id)
usage_key = course_id.make_usage_key_from_deprecated_string(unquote_slashes(usage_id)) usage_key = course_id.make_usage_key_from_deprecated_string(unquote_slashes(usage_id))
except InvalidKeyError: except InvalidKeyError:
raise Http404("Invalid location") raise Http404("Invalid location")
...@@ -1038,7 +1037,7 @@ def xblock_view(request, course_id, usage_id, view_name): ...@@ -1038,7 +1037,7 @@ def xblock_view(request, course_id, usage_id, view_name):
raise PermissionDenied raise PermissionDenied
try: try:
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
except InvalidKeyError: except InvalidKeyError:
raise Http404("Invalid location") raise Http404("Invalid location")
......
...@@ -15,9 +15,7 @@ from django.core import management ...@@ -15,9 +15,7 @@ from django.core import management
from django.core.management.base import CommandError from django.core.management.base import CommandError
from django.utils import timezone from django.utils import timezone
from django.utils.translation import ugettext_lazy as _ from django.utils.translation import ugettext_lazy as _
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from dashboard.models import CourseImportLog from dashboard.models import CourseImportLog
...@@ -295,10 +293,7 @@ def add_repo(repo, rdir_in, branch=None): ...@@ -295,10 +293,7 @@ def add_repo(repo, rdir_in, branch=None):
match = re.search(r'(?ms)===> IMPORTING courselike (\S+)', ret_import) match = re.search(r'(?ms)===> IMPORTING courselike (\S+)', ret_import)
if match: if match:
course_id = match.group(1) course_id = match.group(1)
try: course_key = CourseKey.from_string(course_id)
course_key = CourseKey.from_string(course_id)
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
cdir = '{0}/{1}'.format(git_repo_dir, course_key.course) cdir = '{0}/{1}'.format(git_repo_dir, course_key.course)
log.debug('Studio course dir = %s', cdir) log.debug('Studio course dir = %s', cdir)
......
...@@ -26,7 +26,7 @@ from django.views.decorators.cache import cache_control ...@@ -26,7 +26,7 @@ from django.views.decorators.cache import cache_control
from django.views.decorators.csrf import ensure_csrf_cookie from django.views.decorators.csrf import ensure_csrf_cookie
from django.views.decorators.http import condition from django.views.decorators.http import condition
from django.views.generic.base import TemplateView from django.views.generic.base import TemplateView
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from path import Path as path from path import Path as path
import dashboard.git_import as git_import import dashboard.git_import as git_import
...@@ -472,7 +472,7 @@ class Courses(SysadminDashboardView): ...@@ -472,7 +472,7 @@ class Courses(SysadminDashboardView):
elif action == 'del_course': elif action == 'del_course':
course_id = request.POST.get('course_id', '').strip() course_id = request.POST.get('course_id', '').strip()
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course_found = False course_found = False
if course_key in courses: if course_key in courses:
course_found = True course_found = True
...@@ -584,7 +584,7 @@ class GitLogs(TemplateView): ...@@ -584,7 +584,7 @@ class GitLogs(TemplateView):
course_id = kwargs.get('course_id') course_id = kwargs.get('course_id')
if course_id: if course_id:
course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_id = CourseKey.from_string(course_id)
page_size = 10 page_size = 10
......
...@@ -11,9 +11,7 @@ from django.contrib.auth.models import User ...@@ -11,9 +11,7 @@ from django.contrib.auth.models import User
from django.core.handlers.base import BaseHandler from django.core.handlers.base import BaseHandler
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from django.test.client import RequestFactory from django.test.client import RequestFactory
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from lms.djangoapps.certificates.models import GeneratedCertificate from lms.djangoapps.certificates.models import GeneratedCertificate
from lms.djangoapps.courseware import courses from lms.djangoapps.courseware import courses
...@@ -81,12 +79,7 @@ class Command(BaseCommand): ...@@ -81,12 +79,7 @@ class Command(BaseCommand):
# parse out the course into a coursekey # parse out the course into a coursekey
if options['course']: if options['course']:
try: course_key = CourseKey.from_string(options['course'])
course_key = CourseKey.from_string(options['course'])
# if it's not a new-style course key, parse it from an old-style
# course key
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(options['course'])
print "Fetching enrolled students for {0}".format(course_key) print "Fetching enrolled students for {0}".format(course_key)
enrolled_students = User.objects.filter( enrolled_students = User.objects.filter(
......
...@@ -9,7 +9,7 @@ from django.contrib.auth.decorators import login_required ...@@ -9,7 +9,7 @@ from django.contrib.auth.decorators import login_required
from django.core.exceptions import ObjectDoesNotExist from django.core.exceptions import ObjectDoesNotExist
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.views.decorators.http import require_POST from django.views.decorators.http import require_POST
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.locator import CourseKey
from shoppingcart.models import Coupon, CourseRegistrationCode from shoppingcart.models import Coupon, CourseRegistrationCode
from util.json_request import JsonResponse from util.json_request import JsonResponse
...@@ -57,7 +57,7 @@ def add_coupon(request, course_id): ...@@ -57,7 +57,7 @@ def add_coupon(request, course_id):
# check if the code is already in the Coupons Table and active # check if the code is already in the Coupons Table and active
try: try:
course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_id = CourseKey.from_string(course_id)
coupon = Coupon.objects.get(is_active=True, code=code, course_id=course_id) coupon = Coupon.objects.get(is_active=True, code=code, course_id=course_id)
except Coupon.DoesNotExist: except Coupon.DoesNotExist:
# check if the coupon code is in the CourseRegistrationCode Table # check if the coupon code is in the CourseRegistrationCode Table
......
...@@ -20,7 +20,6 @@ from django.views.decorators.http import require_POST ...@@ -20,7 +20,6 @@ from django.views.decorators.http import require_POST
from mock import patch from mock import patch
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xblock.field_data import DictFieldData from xblock.field_data import DictFieldData
from xblock.fields import ScopeIds from xblock.fields import ScopeIds
...@@ -411,7 +410,7 @@ def set_course_mode_price(request, course_id): ...@@ -411,7 +410,7 @@ def set_course_mode_price(request, course_id):
status=400) # status code 400: Bad Request status=400) # status code 400: Bad Request
currency = request.POST['currency'] currency = request.POST['currency']
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course_honor_mode = CourseMode.objects.filter(mode_slug='honor', course_id=course_key) course_honor_mode = CourseMode.objects.filter(mode_slug='honor', course_id=course_key)
if not course_honor_mode: if not course_honor_mode:
......
...@@ -7,7 +7,7 @@ from django.core.urlresolvers import reverse ...@@ -7,7 +7,7 @@ from django.core.urlresolvers import reverse
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.views.decorators.cache import cache_control from django.views.decorators.cache import cache_control
from django.views.decorators.http import require_GET, require_POST from django.views.decorators.http import require_GET, require_POST
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.locator import CourseKey
from courseware.courses import get_course_by_id from courseware.courses import get_course_by_id
from lms.djangoapps.instructor.enrollment import get_email_params, send_mail_to_student from lms.djangoapps.instructor.enrollment import get_email_params, send_mail_to_student
...@@ -27,7 +27,7 @@ def look_up_registration_code(request, course_id): ...@@ -27,7 +27,7 @@ def look_up_registration_code(request, course_id):
Look for the registration_code in the database. Look for the registration_code in the database.
and check if it is still valid, allowed to redeem or not. and check if it is still valid, allowed to redeem or not.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
code = request.GET.get('registration_code') code = request.GET.get('registration_code')
course = get_course_by_id(course_key, depth=0) course = get_course_by_id(course_key, depth=0)
try: try:
...@@ -65,7 +65,7 @@ def registration_code_details(request, course_id): ...@@ -65,7 +65,7 @@ def registration_code_details(request, course_id):
3) Unredeem. 3) Unredeem.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
code = request.POST.get('registration_code') code = request.POST.get('registration_code')
action_type = request.POST.get('action_type') action_type = request.POST.get('action_type')
course = get_course_by_id(course_key, depth=0) course = get_course_by_id(course_key, depth=0)
......
...@@ -5,7 +5,7 @@ import logging ...@@ -5,7 +5,7 @@ import logging
from django.contrib.auth.decorators import login_required from django.contrib.auth.decorators import login_required
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from django.http import Http404, HttpResponse from django.http import Http404, HttpResponse
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from courseware.courses import get_course_with_access from courseware.courses import get_course_with_access
from notes.models import Note from notes.models import Note
...@@ -51,7 +51,7 @@ def api_request(request, course_id, **kwargs): ...@@ -51,7 +51,7 @@ def api_request(request, course_id, **kwargs):
disabled for the course. disabled for the course.
''' '''
assert isinstance(course_id, basestring) assert isinstance(course_id, basestring)
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
# Verify that the api should be accessible to this course # Verify that the api should be accessible to this course
if not api_enabled(request, course_key): if not api_enabled(request, course_key):
......
...@@ -10,7 +10,7 @@ from django.core.urlresolvers import reverse ...@@ -10,7 +10,7 @@ from django.core.urlresolvers import reverse
from django.test import RequestFactory, TestCase from django.test import RequestFactory, TestCase
from django.test.client import Client from django.test.client import Client
from mock import Mock, patch from mock import Mock, patch
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.locator import CourseLocator
from courseware.tabs import CourseTab, get_course_tab_list from courseware.tabs import CourseTab, get_course_tab_list
from notes import api, models, utils from notes import api, models, utils
...@@ -107,7 +107,7 @@ class ApiTest(TestCase): ...@@ -107,7 +107,7 @@ class ApiTest(TestCase):
self.student = User.objects.create_user('student', 'student@test.com', self.password) self.student = User.objects.create_user('student', 'student@test.com', self.password)
self.student2 = User.objects.create_user('student2', 'student2@test.com', self.password) self.student2 = User.objects.create_user('student2', 'student2@test.com', self.password)
self.instructor = User.objects.create_user('instructor', 'instructor@test.com', self.password) self.instructor = User.objects.create_user('instructor', 'instructor@test.com', self.password)
self.course_key = SlashSeparatedCourseKey('HarvardX', 'CB22x', 'The_Ancient_Greek_Hero') self.course_key = CourseLocator('HarvardX', 'CB22x', 'The_Ancient_Greek_Hero')
self.note = { self.note = {
'user': self.student, 'user': self.student,
'course_id': self.course_key, 'course_id': self.course_key,
...@@ -394,7 +394,7 @@ class NoteTest(TestCase): ...@@ -394,7 +394,7 @@ class NoteTest(TestCase):
self.password = 'abc' self.password = 'abc'
self.student = User.objects.create_user('student', 'student@test.com', self.password) self.student = User.objects.create_user('student', 'student@test.com', self.password)
self.course_key = SlashSeparatedCourseKey('HarvardX', 'CB22x', 'The_Ancient_Greek_Hero') self.course_key = CourseLocator('HarvardX', 'CB22x', 'The_Ancient_Greek_Hero')
self.note = { self.note = {
'user': self.student, 'user': self.student,
'course_id': self.course_key, 'course_id': self.course_key,
......
...@@ -6,7 +6,7 @@ from django.conf import settings ...@@ -6,7 +6,7 @@ from django.conf import settings
from django.contrib.auth.decorators import login_required from django.contrib.auth.decorators import login_required
from django.http import Http404 from django.http import Http404
from django.utils.translation import ugettext_noop from django.utils.translation import ugettext_noop
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from courseware.courses import get_course_with_access from courseware.courses import get_course_with_access
from courseware.tabs import EnrolledTab from courseware.tabs import EnrolledTab
...@@ -19,7 +19,7 @@ from xmodule.annotator_token import retrieve_token ...@@ -19,7 +19,7 @@ from xmodule.annotator_token import retrieve_token
@login_required @login_required
def notes(request, course_id): def notes(request, course_id):
''' Displays the student's notes. ''' ''' Displays the student's notes. '''
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = get_course_with_access(request.user, 'load', course_key) course = get_course_with_access(request.user, 'load', course_key)
if not notes_enabled_for_course(course): if not notes_enabled_for_course(course):
raise Http404 raise Http404
......
...@@ -24,7 +24,7 @@ from django.views.decorators.csrf import csrf_exempt ...@@ -24,7 +24,7 @@ from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import require_http_methods, require_POST from django.views.decorators.http import require_http_methods, require_POST
from ipware.ip import get_ip from ipware.ip import get_ip
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locator import CourseLocator from opaque_keys.edx.locator import CourseLocator
from course_modes.models import CourseMode from course_modes.models import CourseMode
...@@ -110,7 +110,7 @@ def add_course_to_cart(request, course_id): ...@@ -110,7 +110,7 @@ def add_course_to_cart(request, course_id):
log.info(u"Anon user trying to add course %s to cart", course_id) log.info(u"Anon user trying to add course %s to cart", course_id)
return HttpResponseForbidden(_('You must be logged-in to add to a shopping cart')) return HttpResponseForbidden(_('You must be logged-in to add to a shopping cart'))
cart = Order.get_cart_for_user(request.user) cart = Order.get_cart_for_user(request.user)
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
# All logging from here handled by the model # All logging from here handled by the model
try: try:
paid_course_item = PaidCourseRegistration.add_to_order(cart, course_key) paid_course_item = PaidCourseRegistration.add_to_order(cart, course_key)
......
...@@ -4,7 +4,7 @@ Views for serving static textbooks. ...@@ -4,7 +4,7 @@ Views for serving static textbooks.
from django.contrib.auth.decorators import login_required from django.contrib.auth.decorators import login_required
from django.http import Http404 from django.http import Http404
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from courseware.access import has_access from courseware.access import has_access
from courseware.courses import get_course_with_access from courseware.courses import get_course_with_access
...@@ -19,7 +19,7 @@ def index(request, course_id, book_index, page=None): ...@@ -19,7 +19,7 @@ def index(request, course_id, book_index, page=None):
""" """
Serve static image-based textbooks. Serve static image-based textbooks.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = get_course_with_access(request.user, 'load', course_key) course = get_course_with_access(request.user, 'load', course_key)
staff_access = bool(has_access(request.user, 'staff', course)) staff_access = bool(has_access(request.user, 'staff', course))
...@@ -76,7 +76,7 @@ def pdf_index(request, course_id, book_index, chapter=None, page=None): ...@@ -76,7 +76,7 @@ def pdf_index(request, course_id, book_index, chapter=None, page=None):
page: (optional) one-based page number to display within the PDF. Defaults to first page. page: (optional) one-based page number to display within the PDF. Defaults to first page.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = get_course_with_access(request.user, 'load', course_key) course = get_course_with_access(request.user, 'load', course_key)
staff_access = bool(has_access(request.user, 'staff', course)) staff_access = bool(has_access(request.user, 'staff', course))
...@@ -144,7 +144,7 @@ def html_index(request, course_id, book_index, chapter=None): ...@@ -144,7 +144,7 @@ def html_index(request, course_id, book_index, chapter=None):
Defaults to first chapter. Specifying this assumes that there are separate HTML files for Defaults to first chapter. Specifying this assumes that there are separate HTML files for
each chapter in a textbook. each chapter in a textbook.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = get_course_with_access(request.user, 'load', course_key) course = get_course_with_access(request.user, 'load', course_key)
staff_access = bool(has_access(request.user, 'staff', course)) staff_access = bool(has_access(request.user, 'staff', course))
notes_enabled = notes_enabled_for_course(course) notes_enabled = notes_enabled_for_course(course)
......
...@@ -21,7 +21,6 @@ from django.utils.translation import ugettext as _ ...@@ -21,7 +21,6 @@ from django.utils.translation import ugettext as _
from django.views.generic.edit import FormView from django.views.generic.edit import FormView
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from student.models import CourseEnrollment from student.models import CourseEnrollment
from support.decorators import require_support_permission from support.decorators import require_support_permission
...@@ -57,7 +56,7 @@ class RefundForm(forms.Form): ...@@ -57,7 +56,7 @@ class RefundForm(forms.Form):
course_key = CourseKey.from_string(course_id) course_key = CourseKey.from_string(course_id)
except InvalidKeyError: except InvalidKeyError:
try: try:
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
except InvalidKeyError: except InvalidKeyError:
raise forms.ValidationError(_("Invalid course id")) raise forms.ValidationError(_("Invalid course id"))
return course_key return course_key
......
...@@ -4,7 +4,7 @@ This file contains implementation override of SearchResultProcessor which will a ...@@ -4,7 +4,7 @@ This file contains implementation override of SearchResultProcessor which will a
* Confirms user access to object * Confirms user access to object
""" """
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from search.result_processor import SearchResultProcessor from search.result_processor import SearchResultProcessor
from lms.djangoapps.course_blocks.api import get_course_blocks from lms.djangoapps.course_blocks.api import get_course_blocks
...@@ -22,7 +22,7 @@ class LmsSearchResultProcessor(SearchResultProcessor): ...@@ -22,7 +22,7 @@ class LmsSearchResultProcessor(SearchResultProcessor):
def get_course_key(self): def get_course_key(self):
""" fetch course key object from string representation - retain result for subsequent uses """ """ fetch course key object from string representation - retain result for subsequent uses """
if self._course_key is None: if self._course_key is None:
self._course_key = SlashSeparatedCourseKey.from_deprecated_string(self._results_fields["course"]) self._course_key = CourseKey.from_string(self._results_fields["course"])
return self._course_key return self._course_key
def get_usage_key(self): def get_usage_key(self):
......
...@@ -3,9 +3,7 @@ This file contains implementation override of SearchInitializer which will allow ...@@ -3,9 +3,7 @@ This file contains implementation override of SearchInitializer which will allow
* To set initial set of masquerades and other parameters * To set initial set of masquerades and other parameters
""" """
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from search.initializer import SearchInitializer from search.initializer import SearchInitializer
from courseware.access import has_access from courseware.access import has_access
...@@ -17,9 +15,6 @@ class LmsSearchInitializer(SearchInitializer): ...@@ -17,9 +15,6 @@ class LmsSearchInitializer(SearchInitializer):
def initialize(self, **kwargs): def initialize(self, **kwargs):
if 'request' in kwargs and kwargs['request'] and kwargs['course_id']: if 'request' in kwargs and kwargs['request'] and kwargs['course_id']:
request = kwargs['request'] request = kwargs['request']
try: course_key = CourseKey.from_string(kwargs['course_id'])
course_key = CourseKey.from_string(kwargs['course_id'])
except InvalidKeyError:
course_key = SlashSeparatedCourseKey.from_deprecated_string(kwargs['course_id'])
staff_access = bool(has_access(request.user, 'staff', course_key)) staff_access = bool(has_access(request.user, 'staff', course_key))
setup_masquerade(request, course_key, staff_access) setup_masquerade(request, course_key, staff_access)
...@@ -16,12 +16,9 @@ from django.utils.translation import ugettext ...@@ -16,12 +16,9 @@ from django.utils.translation import ugettext
from django.views.decorators.csrf import ensure_csrf_cookie from django.views.decorators.csrf import ensure_csrf_cookie
from django.views.decorators.http import require_http_methods, require_POST from django.views.decorators.http import require_http_methods, require_POST
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from courseware.courses import get_course_with_access from courseware.courses import get_course_with_access
from edxmako.shortcuts import render_to_response from edxmako.shortcuts import render_to_response
from lms.djangoapps.django_comment_client.constants import TYPE_ENTRY
from lms.djangoapps.django_comment_client.utils import get_discussion_categories_ids, get_discussion_category_map
from util.json_request import JsonResponse, expect_json from util.json_request import JsonResponse, expect_json
from . import cohorts from . import cohorts
...@@ -145,7 +142,7 @@ def cohort_handler(request, course_key_string, cohort_id=None): ...@@ -145,7 +142,7 @@ def cohort_handler(request, course_key_string, cohort_id=None):
If no cohort ID is specified, creates a new cohort and returns the JSON representation of the updated If no cohort ID is specified, creates a new cohort and returns the JSON representation of the updated
cohort. cohort.
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_key_string) course_key = CourseKey.from_string(course_key_string)
course = get_course_with_access(request.user, 'staff', course_key) course = get_course_with_access(request.user, 'staff', course_key)
if request.method == 'GET': if request.method == 'GET':
if not cohort_id: if not cohort_id:
...@@ -221,7 +218,7 @@ def users_in_cohort(request, course_key_string, cohort_id): ...@@ -221,7 +218,7 @@ def users_in_cohort(request, course_key_string, cohort_id):
} }
""" """
# this is a string when we get it here # this is a string when we get it here
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_key_string) course_key = CourseKey.from_string(course_key_string)
get_course_with_access(request.user, 'staff', course_key) get_course_with_access(request.user, 'staff', course_key)
...@@ -278,7 +275,7 @@ def add_users_to_cohort(request, course_key_string, cohort_id): ...@@ -278,7 +275,7 @@ def add_users_to_cohort(request, course_key_string, cohort_id):
Raises Http404 if the cohort cannot be found for the given course. Raises Http404 if the cohort cannot be found for the given course.
""" """
# this is a string when we get it here # this is a string when we get it here
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_key_string) course_key = CourseKey.from_string(course_key_string)
get_course_with_access(request.user, 'staff', course_key) get_course_with_access(request.user, 'staff', course_key)
try: try:
...@@ -344,7 +341,7 @@ def remove_user_from_cohort(request, course_key_string, cohort_id): ...@@ -344,7 +341,7 @@ def remove_user_from_cohort(request, course_key_string, cohort_id):
'msg': error_msg} 'msg': error_msg}
""" """
# this is a string when we get it here # this is a string when we get it here
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_key_string) course_key = CourseKey.from_string(course_key_string)
get_course_with_access(request.user, 'staff', course_key) get_course_with_access(request.user, 'staff', course_key)
username = request.POST.get('username') username = request.POST.get('username')
...@@ -374,7 +371,7 @@ def debug_cohort_mgmt(request, course_key_string): ...@@ -374,7 +371,7 @@ def debug_cohort_mgmt(request, course_key_string):
Debugging view for dev. Debugging view for dev.
""" """
# this is a string when we get it here # this is a string when we get it here
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_key_string) course_key = CourseKey.from_string(course_key_string)
# add staff check to make sure it's safe if it's accidentally deployed. # add staff check to make sure it's safe if it's accidentally deployed.
get_course_with_access(request.user, 'staff', course_key) get_course_with_access(request.user, 'staff', course_key)
......
...@@ -25,7 +25,7 @@ from django.utils.http import is_safe_url, urlquote ...@@ -25,7 +25,7 @@ from django.utils.http import is_safe_url, urlquote
from django.utils.translation import ugettext as _ from django.utils.translation import ugettext as _
from django.views.decorators.csrf import csrf_exempt, ensure_csrf_cookie from django.views.decorators.csrf import csrf_exempt, ensure_csrf_cookie
from django_openid_auth import auth as openid_auth from django_openid_auth import auth as openid_auth
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from openid.consumer.consumer import SUCCESS from openid.consumer.consumer import SUCCESS
from openid.extensions import ax, sreg from openid.extensions import ax, sreg
from openid.server.server import ProtocolError, Server, UntrustedReturnURL from openid.server.server import ProtocolError, Server, UntrustedReturnURL
...@@ -553,7 +553,7 @@ def course_specific_login(request, course_id): ...@@ -553,7 +553,7 @@ def course_specific_login(request, course_id):
Dispatcher function for selecting the specific login method Dispatcher function for selecting the specific login method
required by the course required by the course
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = modulestore().get_course(course_key) course = modulestore().get_course(course_key)
if not course: if not course:
# couldn't find the course, will just return vanilla signin page # couldn't find the course, will just return vanilla signin page
...@@ -576,7 +576,7 @@ def course_specific_register(request, course_id): ...@@ -576,7 +576,7 @@ def course_specific_register(request, course_id):
Dispatcher function for selecting the specific registration method Dispatcher function for selecting the specific registration method
required by the course required by the course
""" """
course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id) course_key = CourseKey.from_string(course_id)
course = modulestore().get_course(course_key) course = modulestore().get_course(course_key)
if not course: if not course:
......
...@@ -10,7 +10,7 @@ from django.views.decorators.debug import sensitive_post_parameters ...@@ -10,7 +10,7 @@ from django.views.decorators.debug import sensitive_post_parameters
from django_filters.rest_framework import DjangoFilterBackend from django_filters.rest_framework import DjangoFilterBackend
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx import locator from opaque_keys.edx import locator
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.keys import CourseKey
from rest_framework import authentication, generics, status, viewsets from rest_framework import authentication, generics, status, viewsets
from rest_framework.exceptions import ParseError from rest_framework.exceptions import ParseError
from rest_framework.views import APIView from rest_framework.views import APIView
...@@ -216,7 +216,7 @@ class ForumRoleUsersListView(generics.ListAPIView): ...@@ -216,7 +216,7 @@ class ForumRoleUsersListView(generics.ListAPIView):
course_id_string = self.request.query_params.get('course_id') course_id_string = self.request.query_params.get('course_id')
if not course_id_string: if not course_id_string:
raise ParseError('course_id must be specified') raise ParseError('course_id must be specified')
course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id_string) course_id = CourseKey.from_string(course_id_string)
role = Role.objects.get_or_create(course_id=course_id, name=name)[0] role = Role.objects.get_or_create(course_id=course_id, name=name)[0]
users = role.users.prefetch_related("preferences").select_related("profile").all() users = role.users.prefetch_related("preferences").select_related("profile").all()
return users return users
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment