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
f7a0c1d9
Commit
f7a0c1d9
authored
Dec 21, 2016
by
Calen Pennington
Committed by
GitHub
Dec 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14187 from edx/jia/MA-3052
MA-3052: avoid catalog integration for individual course when cached
parents
dec4034b
b5edd018
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
10 deletions
+33
-10
common/djangoapps/util/course.py
+25
-5
common/djangoapps/util/tests/test_course.py
+5
-2
lms/djangoapps/mobile_api/users/serializers.py
+3
-3
No files found.
common/djangoapps/util/course.py
View file @
f7a0c1d9
...
@@ -11,20 +11,40 @@ from openedx.core.djangoapps.catalog.utils import get_run_marketing_url
...
@@ -11,20 +11,40 @@ from openedx.core.djangoapps.catalog.utils import get_run_marketing_url
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
def
get_link_for_about_page
(
course_key
,
user
,
catalog_course_run
=
None
):
def
get_link_for_about_page
(
course_key
,
user
):
"""
"""
Returns the url to the course about page.
Returns the url to the course about page.
"""
"""
assert
isinstance
(
course_key
,
CourseKey
)
assert
isinstance
(
course_key
,
CourseKey
)
if
settings
.
FEATURES
.
get
(
'ENABLE_MKTG_SITE'
):
if
settings
.
FEATURES
.
get
(
'ENABLE_MKTG_SITE'
):
if
catalog_course_run
:
marketing_url
=
get_run_marketing_url
(
course_key
,
user
)
marketing_url
=
catalog_course_run
.
get
(
'marketing_url'
)
else
:
marketing_url
=
get_run_marketing_url
(
course_key
,
user
)
if
marketing_url
:
if
marketing_url
:
return
marketing_url
return
marketing_url
return
get_lms_course_about_page_url
(
course_key
)
def
get_link_for_about_page_from_cache
(
course_key
,
catalog_course_run
=
None
):
"""
Returns the url to the course about page from already cached dict if marketing
site is enabled else returns lms course about url.
"""
assert
isinstance
(
course_key
,
CourseKey
)
if
settings
.
FEATURES
.
get
(
'ENABLE_MKTG_SITE'
):
if
catalog_course_run
:
marketing_url
=
catalog_course_run
.
get
(
'marketing_url'
)
if
marketing_url
:
return
marketing_url
return
get_lms_course_about_page_url
(
course_key
)
def
get_lms_course_about_page_url
(
course_key
):
"""
Returns lms about page url for course.
"""
return
u"{about_base_url}/courses/{course_key}/about"
.
format
(
return
u"{about_base_url}/courses/{course_key}/about"
.
format
(
about_base_url
=
settings
.
LMS_ROOT_URL
,
about_base_url
=
settings
.
LMS_ROOT_URL
,
course_key
=
unicode
(
course_key
)
course_key
=
unicode
(
course_key
)
...
...
common/djangoapps/util/tests/test_course.py
View file @
f7a0c1d9
...
@@ -11,7 +11,7 @@ from openedx.core.djangoapps.catalog.utils import CatalogCacheUtility
...
@@ -11,7 +11,7 @@ from openedx.core.djangoapps.catalog.utils import CatalogCacheUtility
from
openedx.core.djangoapps.catalog.tests.mixins
import
CatalogIntegrationMixin
from
openedx.core.djangoapps.catalog.tests.mixins
import
CatalogIntegrationMixin
from
openedx.core.djangolib.testing.utils
import
CacheIsolationTestCase
from
openedx.core.djangolib.testing.utils
import
CacheIsolationTestCase
from
student.tests.factories
import
UserFactory
from
student.tests.factories
import
UserFactory
from
util.course
import
get_link_for_about_page
from
util.course
import
get_link_for_about_page
_from_cache
,
get_link_for_about_page
@httpretty.activate
@httpretty.activate
...
@@ -45,6 +45,9 @@ class CourseAboutLinkTestCase(CatalogIntegrationMixin, CacheIsolationTestCase):
...
@@ -45,6 +45,9 @@ class CourseAboutLinkTestCase(CatalogIntegrationMixin, CacheIsolationTestCase):
self
.
assertEquals
(
self
.
assertEquals
(
get_link_for_about_page
(
self
.
course_key
,
self
.
user
),
self
.
lms_course_about_url
get_link_for_about_page
(
self
.
course_key
,
self
.
user
),
self
.
lms_course_about_url
)
)
self
.
assertEquals
(
get_link_for_about_page_from_cache
(
self
.
course_key
,
self
.
course_run
),
self
.
lms_course_about_url
)
with
mock
.
patch
.
dict
(
'django.conf.settings.FEATURES'
,
{
'ENABLE_MKTG_SITE'
:
True
}):
with
mock
.
patch
.
dict
(
'django.conf.settings.FEATURES'
,
{
'ENABLE_MKTG_SITE'
:
True
}):
self
.
register_catalog_course_run_response
(
self
.
register_catalog_course_run_response
(
[
self
.
course_key_string
],
[{
"key"
:
self
.
course_key_string
,
"marketing_url"
:
None
}]
[
self
.
course_key_string
],
[{
"key"
:
self
.
course_key_string
,
"marketing_url"
:
None
}]
...
@@ -68,6 +71,6 @@ class CourseAboutLinkTestCase(CatalogIntegrationMixin, CacheIsolationTestCase):
...
@@ -68,6 +71,6 @@ class CourseAboutLinkTestCase(CatalogIntegrationMixin, CacheIsolationTestCase):
@mock.patch.dict
(
'django.conf.settings.FEATURES'
,
{
'ENABLE_MKTG_SITE'
:
True
})
@mock.patch.dict
(
'django.conf.settings.FEATURES'
,
{
'ENABLE_MKTG_SITE'
:
True
})
def
test_about_page_marketing_url_cached
(
self
):
def
test_about_page_marketing_url_cached
(
self
):
self
.
assertEquals
(
self
.
assertEquals
(
get_link_for_about_page
(
self
.
course_key
,
self
.
user
,
self
.
course_run
),
get_link_for_about_page
_from_cache
(
self
.
course_key
,
self
.
course_run
),
self
.
course_run
[
"marketing_url"
]
self
.
course_run
[
"marketing_url"
]
)
)
lms/djangoapps/mobile_api/users/serializers.py
View file @
f7a0c1d9
...
@@ -6,7 +6,7 @@ from rest_framework.reverse import reverse
...
@@ -6,7 +6,7 @@ from rest_framework.reverse import reverse
from
courseware.access
import
has_access
from
courseware.access
import
has_access
from
certificates.api
import
certificate_downloadable_status
from
certificates.api
import
certificate_downloadable_status
from
student.models
import
CourseEnrollment
,
User
from
student.models
import
CourseEnrollment
,
User
from
util.course
import
get_link_for_about_page
from
util.course
import
get_link_for_about_page
_from_cache
class
CourseOverviewField
(
serializers
.
RelatedField
):
class
CourseOverviewField
(
serializers
.
RelatedField
):
...
@@ -50,8 +50,8 @@ class CourseOverviewField(serializers.RelatedField):
...
@@ -50,8 +50,8 @@ class CourseOverviewField(serializers.RelatedField):
}
}
},
},
'course_image'
:
course_overview
.
course_image_url
,
'course_image'
:
course_overview
.
course_image_url
,
'course_about'
:
get_link_for_about_page
(
'course_about'
:
get_link_for_about_page
_from_cache
(
course_overview
.
id
,
request
.
user
,
self
.
context
.
get
(
'catalog_course_run'
)
course_overview
.
id
,
self
.
context
.
get
(
'catalog_course_run'
)
),
),
'course_updates'
:
reverse
(
'course_updates'
:
reverse
(
'course-updates-list'
,
'course-updates-list'
,
...
...
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