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
2238ce2c
Commit
2238ce2c
authored
May 09, 2014
by
Don Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Let sql tell us if the data is unique
parent
7b70c4b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
common/djangoapps/student/migrations/0035_access_roles.py
+16
-16
No files found.
common/djangoapps/student/migrations/0035_access_roles.py
View file @
2238ce2c
...
@@ -9,6 +9,7 @@ from opaque_keys import InvalidKeyError
...
@@ -9,6 +9,7 @@ from opaque_keys import InvalidKeyError
import
bson.son
import
bson.son
import
logging
import
logging
from
django.db.models.query_utils
import
Q
from
django.db.models.query_utils
import
Q
from
django.db.utils
import
IntegrityError
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
...
@@ -30,7 +31,6 @@ class Migration(DataMigration):
...
@@ -30,7 +31,6 @@ class Migration(DataMigration):
# course only once. The below datastructures help ensure that.
# course only once. The below datastructures help ensure that.
hold
=
{}
# key of course_id_strings with array of group objects. Should only be org scoped entries
hold
=
{}
# key of course_id_strings with array of group objects. Should only be org scoped entries
# or deleted courses
# or deleted courses
done
=
{}
# key to set of done role names
orgs
=
{}
# downcased org to last recorded normal case of the org
orgs
=
{}
# downcased org to last recorded normal case of the org
query
=
Q
(
name
=
'course_creator_group'
)
query
=
Q
(
name
=
'course_creator_group'
)
for
role
in
[
'staff'
,
'instructor'
,
'beta_testers'
,
]:
for
role
in
[
'staff'
,
'instructor'
,
'beta_testers'
,
]:
...
@@ -40,15 +40,17 @@ class Migration(DataMigration):
...
@@ -40,15 +40,17 @@ class Migration(DataMigration):
"""
"""
Get all the users from the old group and migrate to this course key in the new table
Get all the users from the old group and migrate to this course key in the new table
"""
"""
if
role
not
in
done
.
get
(
correct_course_key
,
{}
):
for
user
in
orm
[
'auth.user'
]
.
objects
.
filter
(
groups
=
group
)
.
all
(
):
for
user
in
orm
[
'auth.user'
]
.
objects
.
filter
(
groups
=
group
)
.
all
():
entry
=
orm
[
'student.courseaccessrole'
](
entry
=
orm
[
'student.courseaccessrole'
](
role
=
role
,
user
=
user
,
role
=
role
,
user
=
user
,
org
=
correct_course_key
.
org
,
course_id
=
correct_course_key
org
=
correct_course_key
.
org
,
course_id
=
correct_course_key
)
)
try
:
entry
.
save
()
entry
.
save
()
orgs
[
lower_org
]
=
correct_course_key
.
org
except
IntegrityError
:
done
.
setdefault
(
correct_course_key
,
set
())
.
add
(
role
)
# already stored
pass
orgs
[
lower_org
]
=
correct_course_key
.
org
parsed_entry
=
self
.
GROUP_ENTRY_RE
.
match
(
group
.
name
)
parsed_entry
=
self
.
GROUP_ENTRY_RE
.
match
(
group
.
name
)
role
=
parsed_entry
.
group
(
'role_id'
)
role
=
parsed_entry
.
group
(
'role_id'
)
...
@@ -60,13 +62,11 @@ class Migration(DataMigration):
...
@@ -60,13 +62,11 @@ class Migration(DataMigration):
course_id_string
=
parsed_entry
.
group
(
'course_id_string'
)
course_id_string
=
parsed_entry
.
group
(
'course_id_string'
)
try
:
try
:
course_key
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id_string
)
course_key
=
SlashSeparatedCourseKey
.
from_deprecated_string
(
course_id_string
)
if
role
not
in
done
.
get
(
course_key
,
{}):
# course_key is the downcased version, get the normal cased one. loc_mapper() has no
# course_key is the downcased version, get the normal cased one. loc_mapper() has no
# methods taking downcased SSCK; so, need to do it manually here
# methods taking downcased SSCK; so, need to do it manually here
correct_course_key
=
self
.
_map_downcased_ssck
(
course_key
,
loc_map_collection
)
correct_course_key
=
self
.
_map_downcased_ssck
(
course_key
,
loc_map_collection
)
if
correct_course_key
is
not
None
:
if
correct_course_key
is
not
None
:
_migrate_users
(
correct_course_key
,
role
,
course_key
.
org
)
_migrate_users
(
correct_course_key
,
role
,
course_key
.
org
)
done
.
setdefault
(
course_key
,
set
())
.
add
(
role
)
except
InvalidKeyError
:
except
InvalidKeyError
:
entry
=
loc_map_collection
.
find_one
({
entry
=
loc_map_collection
.
find_one
({
'course_id'
:
re
.
compile
(
r'^{}$'
.
format
(
course_id_string
),
re
.
IGNORECASE
)
'course_id'
:
re
.
compile
(
r'^{}$'
.
format
(
course_id_string
),
re
.
IGNORECASE
)
...
...
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