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
8a143a42
Unverified
Commit
8a143a42
authored
5 years ago
by
Giovanni Cimolin da Silva
Browse files
Options
Downloads
Patches
Plain Diff
Add site configuration flag to allow changing redirection after login
parent
6759ccc8
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
common/djangoapps/student/helpers.py
+21
-5
21 additions, 5 deletions
common/djangoapps/student/helpers.py
common/djangoapps/student/tests/test_helpers.py
+21
-0
21 additions, 0 deletions
common/djangoapps/student/tests/test_helpers.py
with
42 additions
and
5 deletions
common/djangoapps/student/helpers.py
+
21
−
5
View file @
8a143a42
...
...
@@ -235,8 +235,8 @@ def get_next_url_for_login_page(request):
/account/finish_auth/ view following login, which will take care of auto-enrollment in
the specified course.
Otherwise, we go to the
`
next
`
param or t
o the dashboard if nothing else is
specified
.
Otherwise, we go to the
?
next
= query
param or t
he configured custom
redirection url (the default behaviour is to go to /dashboard)
.
If THIRD_PARTY_AUTH_HINT is set, then `tpa_hint=<hint>` is added as a query parameter.
...
...
@@ -250,9 +250,25 @@ def get_next_url_for_login_page(request):
request_is_https
=
request
.
is_secure
(),
)
if
not
redirect_to
:
try
:
redirect_to
=
reverse
(
'
dashboard
'
)
except
NoReverseMatch
:
if
settings
.
ROOT_URLCONF
==
'
lms.urls
'
:
login_redirect_url
=
configuration_helpers
.
get_value
(
'
DEFAULT_REDIRECT_AFTER_LOGIN
'
)
if
login_redirect_url
:
try
:
redirect_to
=
reverse
(
login_redirect_url
)
except
NoReverseMatch
:
log
.
warning
(
u
'
Default redirect after login doesn
\'
t exist: %(login_redirect_url)r.
'
u
'
Check the value set on DEFAULT_REDIRECT_AFTER_LOGIN configuration variable.
'
,
{
"
login_redirect_url
"
:
login_redirect_url
}
)
# If redirect url isn't set, reverse to dashboard
if
not
redirect_to
:
# Tries reversing the LMS dashboard if the url doesn't exist
redirect_to
=
reverse
(
'
dashboard
'
)
elif
settings
.
ROOT_URLCONF
==
'
cms.urls
'
:
redirect_to
=
reverse
(
'
home
'
)
if
any
(
param
in
request_params
for
param
in
POST_AUTH_PARAMS
):
...
...
This diff is collapsed.
Click to expand it.
common/djangoapps/student/tests/test_helpers.py
+
21
−
0
View file @
8a143a42
...
...
@@ -2,6 +2,7 @@
import
logging
import
unittest
import
ddt
from
django.conf
import
settings
...
...
@@ -133,3 +134,23 @@ class TestLoginHelper(TestCase):
with
with_site_configuration_context
(
configuration
=
dict
(
THIRD_PARTY_AUTH_HINT
=
tpa_hint
)):
validate_login
()
@unittest.skipUnless
(
settings
.
ROOT_URLCONF
==
'
lms.urls
'
,
'
Test only valid in lms
'
)
@ddt.data
(
(
None
,
'
/dashboard
'
),
(
'
invalid-url
'
,
'
/dashboard
'
),
(
'
courses
'
,
'
/courses
'
),
)
@ddt.unpack
def
test_custom_redirect_url
(
self
,
redirect
,
expected_url
):
"""
Test custom redirect after login
"""
configuration_values
=
{
"
DEFAULT_REDIRECT_AFTER_LOGIN
"
:
redirect
}
req
=
self
.
request
.
get
(
settings
.
LOGIN_URL
)
req
.
META
[
"
HTTP_ACCEPT
"
]
=
"
text/html
"
with
with_site_configuration_context
(
configuration
=
configuration_values
):
next_page
=
get_next_url_for_login_page
(
req
)
self
.
assertEqual
(
next_page
,
expected_url
)
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