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
b2de8199
Commit
b2de8199
authored
12 years ago
by
Carlos Andrés Rocha
Browse files
Options
Downloads
Patches
Plain Diff
Added licenses view helper functions.
parent
ed88708d
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
lms/djangoapps/licenses/views.py
+60
-0
60 additions, 0 deletions
lms/djangoapps/licenses/views.py
with
60 additions
and
0 deletions
lms/djangoapps/licenses/views.py
+
60
−
0
View file @
b2de8199
import
logging
from
itertools
import
groupby
from
collections
import
Iterable
from
django.db.models
import
Q
from
models
import
CourseSoftware
,
UserLicense
log
=
logging
.
getLogger
(
"
mitx.licenses
"
)
def
get_or_create_courses_licenses
(
user
,
courses
):
user_licenses
=
get_courses_licenses
(
user
,
courses
)
for
software
,
license
in
user_licenses
.
iteritems
():
if
license
is
None
:
user_licenses
[
software
]
=
get_or_create_user_license
(
user
,
software
)
log
.
info
(
user_licenses
)
return
user_licenses
def
get_courses_licenses
(
user
,
courses
):
course_ids
=
set
(
course
.
id
for
course
in
courses
)
all_software
=
CourseSoftware
.
objects
.
filter
(
course_id__in
=
course_ids
)
user_licenses
=
dict
.
fromkeys
(
all_software
,
None
)
assigned_licenses
=
UserLicense
.
objects
.
filter
(
software__in
=
all_software
,
user
=
user
)
assigned_by_software
=
{
lic
.
software
:
lic
for
lic
in
assigned_licenses
}
for
software
,
license
in
assigned_by_software
.
iteritems
():
user_licenses
[
software
]
=
license
return
user_licenses
def
get_or_create_user_license
(
user
,
software
):
license
=
None
try
:
# Find a licenses associated with the user or with no user
# associated.
query
=
(
Q
(
user__isnull
=
True
)
|
Q
(
user
=
user
))
&
Q
(
software
=
software
)
# TODO fix a race condition in this code when more than one
# user is getting a license assigned
license
=
UserLicense
.
objects
.
filter
(
query
)[
0
]
if
license
.
user
is
not
user
:
license
.
user
=
user
license
.
save
()
except
IndexError
:
# TODO look if someone has unenrolled from the class and already has a serial number
log
.
error
(
'
No serial numbers available for {0}
'
,
software
)
return
license
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