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
c51ee5ec
Commit
c51ee5ec
authored
6 years ago
by
Matthew Piatetsky
Browse files
Options
Downloads
Patches
Plain Diff
move user course expiration date into separate function
parent
3e87cb7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openedx/features/course_duration_limits/access.py
+25
-13
25 additions, 13 deletions
openedx/features/course_duration_limits/access.py
with
25 additions
and
13 deletions
openedx/features/course_duration_limits/access.py
+
25
−
13
View file @
c51ee5ec
...
...
@@ -18,33 +18,45 @@ class AuditExpiredError(AccessError):
"""
Access denied because the user
'
s audit timespan has expired
"""
def
__init__
(
self
,
user
,
course
,
en
d
_date
):
def
__init__
(
self
,
user
,
course
,
e
xpiratio
n_date
):
error_code
=
"
audit_expired
"
developer_message
=
"
User {} had access to {} until {}
"
.
format
(
user
,
course
,
en
d
_date
)
# TODO: Translate the en
d
_date
user_message
=
_
(
"
Course access expired on
"
)
+
en
d
_date
.
strftime
(
"
%B %d, %Y
"
)
developer_message
=
"
User {} had access to {} until {}
"
.
format
(
user
,
course
,
e
xpiratio
n_date
)
# TODO: Translate the e
xpiratio
n_date
user_message
=
_
(
"
Course access expired on
"
)
+
e
xpiratio
n_date
.
strftime
(
"
%B %d, %Y
"
)
super
(
AuditExpiredError
,
self
).
__init__
(
error_code
,
developer_message
,
user_message
)
def
check
_course_expire
d
(
user
,
course
):
def
get_user
_course_expir
ation_dat
e
(
user
,
course
):
"""
Check if the course expired for the user.
Return course expiration date for given user course pair.
Return None if the course does not expire.
"""
# TODO: Only limit audit users
# TODO: Limit access to instructor paced courses based on end-date, rather than content availability date
# TODO: Update business logic based on REV-531
CourseEnrollment
=
apps
.
get_model
(
'
student.CourseEnrollment
'
)
enrollment
=
CourseEnrollment
.
get_enrollment
(
user
,
course
.
id
)
if
enrollment
is
None
:
return
ACCESS_GRANTED
if
enrollment
is
None
or
enrollment
.
mode
==
'
verified
'
:
return
None
try
:
start_date
=
enrollment
.
schedule
.
start
except
CourseEnrollment
.
schedule
.
RelatedObjectDoesNotExist
:
start_date
=
max
(
enrollment
.
created
,
course
.
start
)
end_date
=
start_date
+
timedelta
(
days
=
28
)
access_duration
=
timedelta
(
weeks
=
8
)
if
hasattr
(
course
,
'
pacing
'
)
and
course
.
pacing
==
'
instructor
'
:
if
course
.
end
and
course
.
start
:
access_duration
=
course
.
end
-
course
.
start
expiration_date
=
start_date
+
access_duration
return
expiration_date
if
timezone
.
now
()
>
end_date
:
return
AuditExpiredError
(
user
,
course
,
end_date
)
def
check_course_expired
(
user
,
course
):
"""
Check if the course expired for the user.
"""
expiration_date
=
get_user_course_expiration_date
(
user
,
course
)
if
expiration_date
and
timezone
.
now
()
>
expiration_date
:
return
AuditExpiredError
(
user
,
course
,
expiration_date
)
return
ACCESS_GRANTED
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