Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
39b4a3f4
Commit
39b4a3f4
authored
4 years ago
by
uzairr
Browse files
Options
Downloads
Patches
Plain Diff
Restrict api to staff users
parent
5e5cbd87
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/certificates/apis/v0/tests/test_views.py
+17
-19
17 additions, 19 deletions
lms/djangoapps/certificates/apis/v0/tests/test_views.py
lms/djangoapps/certificates/apis/v0/views.py
+2
-1
2 additions, 1 deletion
lms/djangoapps/certificates/apis/v0/views.py
with
19 additions
and
20 deletions
lms/djangoapps/certificates/apis/v0/tests/test_views.py
+
17
−
19
View file @
39b4a3f4
...
...
@@ -169,7 +169,8 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
download_url
=
'
www.google.com
'
,
grade
=
"
0.88
"
,
)
self
.
student
.
is_staff
=
True
self
.
student
.
save
()
self
.
namespaced_url
=
'
certificates_api:v0:certificates:list
'
def
get_url
(
self
,
username
):
...
...
@@ -204,13 +205,10 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
@ddt.data
(
*
list
(
AuthType
))
def
test_another_user
(
self
,
auth_type
,
mock_log
):
"""
Returns 200 with empty list for OAuth, Session, and JWT auth.
Returns 200 for jwt_restricted and user:me filter unset.
Returns 403 response for non-staff user on all auth types.
"""
resp
=
self
.
get_response
(
auth_type
,
requesting_user
=
self
.
other_student
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
self
.
assertEqual
(
len
(
resp
.
data
),
0
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_403_FORBIDDEN
)
@ddt.data
(
*
list
(
AuthType
))
def
test_another_user_with_certs_shared_public
(
self
,
auth_type
):
...
...
@@ -226,7 +224,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
value
=
'
all_users
'
,
).
save
()
resp
=
self
.
get_response
(
auth_type
,
requesting_user
=
self
.
other_student
)
resp
=
self
.
get_response
(
auth_type
,
requesting_user
=
self
.
global_staff
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
self
.
assertEqual
(
len
(
resp
.
data
),
1
)
...
...
@@ -250,7 +248,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
value
=
'
all_users
'
,
).
save
()
resp
=
self
.
get_response
(
auth_type
,
requesting_user
=
self
.
other_student
)
resp
=
self
.
get_response
(
auth_type
,
requesting_user
=
self
.
global_staff
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
self
.
assertEqual
(
len
(
resp
.
data
),
1
)
...
...
@@ -259,7 +257,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
@ddt.data
(
*
JWT_AUTH_TYPES
)
def
test_jwt_on_behalf_of_other_user
(
self
,
auth_type
,
mock_log
):
"""
Returns 403 when scopes are enforced with JwtHasUserFilterForRequestedUser.
"""
jwt_token
=
self
.
_create_jwt_token
(
self
.
other_student
,
auth_type
,
include_me_filter
=
True
)
jwt_token
=
self
.
_create_jwt_token
(
self
.
global_staff
,
auth_type
,
include_me_filter
=
True
)
resp
=
self
.
get_response
(
AuthType
.
jwt
,
token
=
jwt_token
)
if
auth_type
==
AuthType
.
jwt_restricted
:
...
...
@@ -267,7 +265,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
self
.
_assert_in_log
(
"
JwtHasUserFilterForRequestedUser
"
,
mock_log
.
warning
)
else
:
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
self
.
assertEqual
(
len
(
resp
.
data
),
0
)
self
.
assertEqual
(
len
(
resp
.
data
),
1
)
@patch
(
'
edx_rest_framework_extensions.permissions.log
'
)
@ddt.data
(
*
JWT_AUTH_TYPES
)
...
...
@@ -278,7 +276,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
student_no_cert
=
UserFactory
.
create
(
password
=
self
.
user_password
)
resp
=
self
.
get_response
(
AuthType
.
session
,
requesting_user
=
s
tudent_no_cert
,
requesting_user
=
s
elf
.
global_staff
,
requested_user
=
student_no_cert
,
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
...
...
@@ -290,17 +288,17 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
with
self
.
assertNumQueries
(
20
):
resp
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
s
tudent_no_cert
,
requesting_user
=
s
elf
.
global_staff
,
requested_user
=
student_no_cert
,
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
self
.
assertEqual
(
len
(
resp
.
data
),
0
)
# Test student with 1 certificate
with
self
.
assertNumQueries
(
1
4
):
with
self
.
assertNumQueries
(
1
0
):
resp
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
self
.
student
,
requesting_user
=
self
.
global_staff
,
requested_user
=
self
.
student
,
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
...
...
@@ -337,10 +335,10 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
download_url
=
'
www.google.com
'
,
grade
=
"
0.88
"
,
)
with
self
.
assertNumQueries
(
1
4
):
with
self
.
assertNumQueries
(
1
0
):
resp
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
s
tudent_2_certs
,
requesting_user
=
s
elf
.
global_staff
,
requested_user
=
student_2_certs
,
)
self
.
assertEqual
(
resp
.
status_code
,
status
.
HTTP_200_OK
)
...
...
@@ -357,7 +355,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
response
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
self
.
student
,
requesting_user
=
self
.
global_staff
,
requested_user
=
self
.
student
,
)
self
.
assertEqual
(
response
.
status_code
,
status
.
HTTP_200_OK
)
...
...
@@ -368,7 +366,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
response
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
self
.
student
,
requesting_user
=
self
.
global_staff
,
requested_user
=
self
.
student
,
)
kwargs
=
{
"
certificate_uuid
"
:
self
.
cert
.
verify_uuid
}
...
...
@@ -394,7 +392,7 @@ class CertificatesListRestApiTest(AuthAndScopesTestMixin, SharedModuleStoreTestC
response
=
self
.
get_response
(
AuthType
.
jwt
,
requesting_user
=
self
.
student
,
requesting_user
=
self
.
global_staff
,
requested_user
=
self
.
student
,
)
self
.
assertEqual
(
response
.
status_code
,
status
.
HTTP_200_OK
)
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/certificates/apis/v0/views.py
+
2
−
1
View file @
39b4a3f4
...
...
@@ -12,7 +12,7 @@ from edx_rest_framework_extensions.auth.session.authentication import SessionAut
from
opaque_keys
import
InvalidKeyError
from
opaque_keys.edx.keys
import
CourseKey
from
rest_condition
import
C
from
rest_framework.permissions
import
IsAuthenticated
from
rest_framework.permissions
import
IsAuthenticated
,
IsAdminUser
from
rest_framework.response
import
Response
from
rest_framework.views
import
APIView
...
...
@@ -158,6 +158,7 @@ class CertificatesListView(APIView):
permissions
.
JwtHasUserFilterForRequestedUser
)
),
IsAdminUser
,
)
required_scopes
=
[
'
certificates:read
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment