Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
d9ce3162
Commit
d9ce3162
authored
Jun 10, 2013
by
Chris Dodge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
partial fix for STUD-145, catch invalid location errors and return a HTTP 400 error to client
parent
3fe830a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
5 deletions
+30
-5
cms/djangoapps/contentstore/tests/test_contentstore.py
+11
-0
cms/djangoapps/contentstore/views/component.py
+19
-5
No files found.
cms/djangoapps/contentstore/tests/test_contentstore.py
View file @
d9ce3162
...
@@ -108,6 +108,17 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase):
...
@@ -108,6 +108,17 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase):
for
expected
in
expected_types
:
for
expected
in
expected_types
:
self
.
assertIn
(
expected
,
resp
.
content
)
self
.
assertIn
(
expected
,
resp
.
content
)
def
test_malformed_edit_unit_request
(
self
):
store
=
modulestore
(
'direct'
)
import_from_xml
(
store
,
'common/test/data/'
,
[
'simple'
])
# just pick one vertical
descriptor
=
store
.
get_items
(
Location
(
'i4x'
,
'edX'
,
'simple'
,
'vertical'
,
None
,
None
))[
0
]
location
=
descriptor
.
location
.
_replace
(
name
=
'.'
+
descriptor
.
location
.
name
)
resp
=
self
.
client
.
get
(
reverse
(
'edit_unit'
,
kwargs
=
{
'location'
:
location
.
url
()}))
self
.
assertEqual
(
resp
.
status_code
,
400
)
def
test_advanced_components_in_edit_unit
(
self
):
def
test_advanced_components_in_edit_unit
(
self
):
# This could be made better, but for now let's just assert that we see the advanced modules mentioned in the page
# This could be made better, but for now let's just assert that we see the advanced modules mentioned in the page
# response HTML
# response HTML
...
...
cms/djangoapps/contentstore/views/component.py
View file @
d9ce3162
...
@@ -7,7 +7,7 @@ from django.contrib.auth.decorators import login_required
...
@@ -7,7 +7,7 @@ from django.contrib.auth.decorators import login_required
from
django.core.exceptions
import
PermissionDenied
from
django.core.exceptions
import
PermissionDenied
from
django_future.csrf
import
ensure_csrf_cookie
from
django_future.csrf
import
ensure_csrf_cookie
from
django.conf
import
settings
from
django.conf
import
settings
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
,
InvalidLocationError
from
mitxmako.shortcuts
import
render_to_response
from
mitxmako.shortcuts
import
render_to_response
from
xmodule.modulestore
import
Location
from
xmodule.modulestore
import
Location
...
@@ -50,11 +50,18 @@ ADVANCED_COMPONENT_POLICY_KEY = 'advanced_modules'
...
@@ -50,11 +50,18 @@ ADVANCED_COMPONENT_POLICY_KEY = 'advanced_modules'
@login_required
@login_required
def
edit_subsection
(
request
,
location
):
def
edit_subsection
(
request
,
location
):
# check that we have permissions to edit this item
# check that we have permissions to edit this item
course
=
get_course_for_item
(
location
)
try
:
course
=
get_course_for_item
(
location
)
except
InvalidLocationError
:
return
HttpResponseBadRequest
()
if
not
has_access
(
request
.
user
,
course
.
location
):
if
not
has_access
(
request
.
user
,
course
.
location
):
raise
PermissionDenied
()
raise
PermissionDenied
()
item
=
modulestore
()
.
get_item
(
location
,
depth
=
1
)
try
:
item
=
modulestore
()
.
get_item
(
location
,
depth
=
1
)
except
ItemNotFoundError
:
return
HttpResponseBadRequest
()
lms_link
=
get_lms_link_for_item
(
location
,
course_id
=
course
.
location
.
course_id
)
lms_link
=
get_lms_link_for_item
(
location
,
course_id
=
course
.
location
.
course_id
)
preview_link
=
get_lms_link_for_item
(
location
,
course_id
=
course
.
location
.
course_id
,
preview
=
True
)
preview_link
=
get_lms_link_for_item
(
location
,
course_id
=
course
.
location
.
course_id
,
preview
=
True
)
...
@@ -113,11 +120,18 @@ def edit_unit(request, location):
...
@@ -113,11 +120,18 @@ def edit_unit(request, location):
id: A Location URL
id: A Location URL
"""
"""
course
=
get_course_for_item
(
location
)
try
:
course
=
get_course_for_item
(
location
)
except
InvalidLocationError
:
return
HttpResponseBadRequest
()
if
not
has_access
(
request
.
user
,
course
.
location
):
if
not
has_access
(
request
.
user
,
course
.
location
):
raise
PermissionDenied
()
raise
PermissionDenied
()
item
=
modulestore
()
.
get_item
(
location
,
depth
=
1
)
try
:
item
=
modulestore
()
.
get_item
(
location
,
depth
=
1
)
except
ItemNotFoundError
:
return
HttpResponseBadRequest
()
lms_link
=
get_lms_link_for_item
(
item
.
location
,
course_id
=
course
.
location
.
course_id
)
lms_link
=
get_lms_link_for_item
(
item
.
location
,
course_id
=
course
.
location
.
course_id
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment