utils.py 18.2 KB
Newer Older
1 2 3
"""
Common utility functions useful throughout the contentstore
"""
David Baumgold committed
4

cahrens committed
5
import logging
6
from datetime import datetime
7 8

from django.conf import settings
9
from django.core.urlresolvers import reverse
10
from django.utils.translation import ugettext as _
11 12 13
from opaque_keys.edx.keys import CourseKey, UsageKey
from pytz import UTC

14 15
from django_comment_common.models import assign_default_role
from django_comment_common.utils import seed_permissions_roles
16
from openedx.core.djangoapps.self_paced.models import SelfPacedConfiguration
17
from openedx.core.djangoapps.site_configuration.models import SiteConfiguration
18 19 20
from student import auth
from student.models import CourseEnrollment
from student.roles import CourseInstructorRole, CourseStaffRole
21
from xmodule.modulestore import ModuleStoreEnum
22
from xmodule.modulestore.django import modulestore
23
from xmodule.modulestore.exceptions import ItemNotFoundError
24
from xmodule.partitions.partitions_service import get_all_partitions_for_course
cahrens committed
25 26

log = logging.getLogger(__name__)
27

28

29
def add_instructor(course_key, requesting_user, new_instructor):
30
    """
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    Adds given user as instructor and staff to the given course,
    after verifying that the requesting_user has permission to do so.
    """
    # can't use auth.add_users here b/c it requires user to already have Instructor perms in this course
    CourseInstructorRole(course_key).add_users(new_instructor)
    auth.add_users(requesting_user, CourseStaffRole(course_key), new_instructor)


def initialize_permissions(course_key, user_who_created_course):
    """
    Initializes a new course by enrolling the course creator as a student,
    and initializing Forum by seeding its permissions and assigning default roles.
    """
    # seed the forums
    seed_permissions_roles(course_key)

    # auto-enroll the course creator in the course so that "View Live" will work.
    CourseEnrollment.enroll(user_who_created_course, course_key)

    # set default forum roles (assign 'Student' role)
    assign_default_role(course_key, user_who_created_course)


def remove_all_instructors(course_key):
    """
56
    Removes all instructor and staff users from the given course.
57 58 59 60 61 62 63
    """
    staff_role = CourseStaffRole(course_key)
    staff_role.remove_users(*staff_role.users_with_role())
    instructor_role = CourseInstructorRole(course_key)
    instructor_role.remove_users(*instructor_role.users_with_role())


64
def delete_course(course_key, user_id, keep_instructors=False):
65
    """
66 67 68 69 70 71 72 73 74 75 76 77 78
    Delete course from module store and if specified remove user and
    groups permissions from course.
    """
    _delete_course_from_modulestore(course_key, user_id)

    if not keep_instructors:
        _remove_instructors(course_key)


def _delete_course_from_modulestore(course_key, user_id):
    """
    Delete course from MongoDB. Deleting course will fire a signal which will result into
    deletion of the courseware associated with a course_key.
79
    """
80
    module_store = modulestore()
81

82
    with module_store.bulk_operations(course_key):
83
        module_store.delete_course(course_key, user_id)
84

85 86 87 88 89 90 91 92 93 94 95

def _remove_instructors(course_key):
    """
    In the django layer, remove all the user/groups permissions associated with this course
    """
    print 'removing User permissions from course....'

    try:
        remove_all_instructors(course_key)
    except Exception as err:
        log.error("Error in deleting course groups for {0}: {1}".format(course_key, err))
96

Calen Pennington committed
97

98
def get_lms_link_for_item(location, preview=False):
99 100 101 102 103 104
    """
    Returns an LMS link to the course with a jump_to to the provided location.

    :param location: the location to jump to
    :param preview: True if the preview version of LMS should be returned. Default value is false.
    """
105
    assert isinstance(location, UsageKey)
106

107 108 109 110 111 112 113 114 115
    # checks LMS_BASE value in site configuration for the given course_org_filter(org)
    # if not found returns settings.LMS_BASE
    lms_base = SiteConfiguration.get_value_for_org(
        location.org,
        "LMS_BASE",
        settings.LMS_BASE
    )

    if lms_base is None:
116 117 118
        return None

    if preview:
119 120 121 122 123 124 125
        # checks PREVIEW_LMS_BASE value in site configuration for the given course_org_filter(org)
        # if not found returns settings.FEATURES.get('PREVIEW_LMS_BASE')
        lms_base = SiteConfiguration.get_value_for_org(
            location.org,
            "PREVIEW_LMS_BASE",
            settings.FEATURES.get('PREVIEW_LMS_BASE')
        )
126

127
    return u"//{lms_base}/courses/{course_key}/jump_to/{location}".format(
128
        lms_base=lms_base,
129
        course_key=location.course_key.to_deprecated_string(),
130 131
        location=location.to_deprecated_string(),
    )
132

Calen Pennington committed
133

134 135 136 137 138 139 140
# pylint: disable=invalid-name
def get_lms_link_for_certificate_web_view(user_id, course_key, mode):
    """
    Returns the url to the certificate web view.
    """
    assert isinstance(course_key, CourseKey)

141 142 143 144
    # checks LMS_BASE value in SiteConfiguration against course_org_filter if not found returns settings.LMS_BASE
    lms_base = SiteConfiguration.get_value_for_org(course_key.org, "LMS_BASE", settings.LMS_BASE)

    if lms_base is None:
145 146 147
        return None

    return u"//{certificate_web_base}/certificates/user/{user_id}/course/{course_id}?preview={mode}".format(
148
        certificate_web_base=lms_base,
149 150 151 152 153 154
        user_id=user_id,
        course_id=unicode(course_key),
        mode=mode
    )


155
# pylint: disable=invalid-name
156
def is_currently_visible_to_students(xblock):
157
    """
158 159
    Returns true if there is a published version of the xblock that is currently visible to students.
    This means that it has a release date in the past, and the xblock has not been set to staff only.
160 161 162
    """

    try:
163
        published = modulestore().get_item(xblock.location, revision=ModuleStoreEnum.RevisionOption.published_only)
164 165 166 167
    # If there's no published version then the xblock is clearly not visible
    except ItemNotFoundError:
        return False

168 169 170 171
    # If visible_to_staff_only is True, this xblock is not visible to students regardless of start date.
    if published.visible_to_staff_only:
        return False

172 173 174 175 176 177 178 179
    # Check start date
    if 'detached' not in published._class_tags and published.start is not None:
        return datetime.now(UTC) > published.start

    # No start date, so it's always visible
    return True


180
def has_children_visible_to_specific_partition_groups(xblock):
181
    """
182
    Returns True if this xblock has children that are limited to specific user partition groups.
183 184 185 186 187 188
    Note that this method is not recursive (it does not check grandchildren).
    """
    if not xblock.has_children:
        return False

    for child in xblock.get_children():
189
        if is_visible_to_specific_partition_groups(child):
190 191 192 193 194
            return True

    return False


195
def is_visible_to_specific_partition_groups(xblock):
196
    """
197
    Returns True if this xblock has visibility limited to specific user partition groups.
198 199 200
    """
    if not xblock.group_access:
        return False
201 202 203

    for partition in get_user_partition_info(xblock):
        if any(g["selected"] for g in partition["groups"]):
204
            return True
205

206 207 208
    return False


209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
def find_release_date_source(xblock):
    """
    Finds the ancestor of xblock that set its release date.
    """

    # Stop searching at the section level
    if xblock.category == 'chapter':
        return xblock

    parent_location = modulestore().get_parent_location(xblock.location,
                                                        revision=ModuleStoreEnum.RevisionOption.draft_preferred)
    # Orphaned xblocks set their own release date
    if not parent_location:
        return xblock

    parent = modulestore().get_item(parent_location)
    if parent.start != xblock.start:
        return xblock
    else:
        return find_release_date_source(parent)


231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
def find_staff_lock_source(xblock):
    """
    Returns the xblock responsible for setting this xblock's staff lock, or None if the xblock is not staff locked.
    If this xblock is explicitly locked, return it, otherwise find the ancestor which sets this xblock's staff lock.
    """

    # Stop searching if this xblock has explicitly set its own staff lock
    if xblock.fields['visible_to_staff_only'].is_set_on(xblock):
        return xblock

    # Stop searching at the section level
    if xblock.category == 'chapter':
        return None

    parent_location = modulestore().get_parent_location(xblock.location,
                                                        revision=ModuleStoreEnum.RevisionOption.draft_preferred)
    # Orphaned xblocks set their own staff lock
    if not parent_location:
        return None

    parent = modulestore().get_item(parent_location)
    return find_staff_lock_source(parent)


def ancestor_has_staff_lock(xblock, parent_xblock=None):
    """
    Returns True iff one of xblock's ancestors has staff lock.
    Can avoid mongo query by passing in parent_xblock.
    """
    if parent_xblock is None:
        parent_location = modulestore().get_parent_location(xblock.location,
                                                            revision=ModuleStoreEnum.RevisionOption.draft_preferred)
        if not parent_location:
            return False
        parent_xblock = modulestore().get_item(parent_location)
    return parent_xblock.visible_to_staff_only


269 270 271 272 273 274 275 276
def reverse_url(handler_name, key_name=None, key_value=None, kwargs=None):
    """
    Creates the URL for the given handler.
    The optional key_name and key_value are passed in as kwargs to the handler.
    """
    kwargs_for_reverse = {key_name: unicode(key_value)} if key_name else None
    if kwargs:
        kwargs_for_reverse.update(kwargs)
277
    return reverse(handler_name, kwargs=kwargs_for_reverse)
278 279 280 281 282 283 284 285 286


def reverse_course_url(handler_name, course_key, kwargs=None):
    """
    Creates the URL for handlers that use course_keys as URL parameters.
    """
    return reverse_url(handler_name, 'course_key_string', course_key, kwargs)


287 288 289 290 291 292 293
def reverse_library_url(handler_name, library_key, kwargs=None):
    """
    Creates the URL for handlers that use library_keys as URL parameters.
    """
    return reverse_url(handler_name, 'library_key_string', library_key, kwargs)


294 295 296 297 298
def reverse_usage_url(handler_name, usage_key, kwargs=None):
    """
    Creates the URL for handlers that use usage_keys as URL parameters.
    """
    return reverse_url(handler_name, 'usage_key_string', usage_key, kwargs)
299 300


301
def get_split_group_display_name(xblock, course):
Mushtaq Ali committed
302
    """
303
    Returns group name if an xblock is found in user partition groups that are suitable for the split_test module.
Mushtaq Ali committed
304 305

    Arguments:
306 307
        xblock (XBlock): The courseware component.
        course (XBlock): The course descriptor.
Mushtaq Ali committed
308 309

    Returns:
310
        group name (String): Group name of the matching group xblock.
Mushtaq Ali committed
311
    """
312
    for user_partition in get_user_partition_info(xblock, schemes=['random'], course=course):
Mushtaq Ali committed
313
        for group in user_partition['groups']:
314
            if 'Group ID {group_id}'.format(group_id=group['id']) == xblock.display_name_with_default:
Mushtaq Ali committed
315 316 317
                return group['name']


318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
def get_user_partition_info(xblock, schemes=None, course=None):
    """
    Retrieve user partition information for an XBlock for display in editors.

    * If a partition has been disabled, it will be excluded from the results.

    * If a group within a partition is referenced by the XBlock, but the group has been deleted,
      the group will be marked as deleted in the results.

    Arguments:
        xblock (XBlock): The courseware component being edited.

    Keyword Arguments:
        schemes (iterable of str): If provided, filter partitions to include only
            schemes with the provided names.

        course (XBlock): The course descriptor.  If provided, uses this to look up the user partitions
            instead of loading the course.  This is useful if we're calling this function multiple
            times for the same course want to minimize queries to the modulestore.

    Returns: list

    Example Usage:
    >>> get_user_partition_info(block, schemes=["cohort", "verification"])
    [
        {
            "id": 12345,
            "name": "Cohorts"
            "scheme": "cohort",
            "groups": [
                {
                    "id": 7890,
                    "name": "Foo",
                    "selected": True,
                    "deleted": False,
                }
            ]
        },
        {
            "id": 7292,
            "name": "Midterm A",
            "scheme": "verification",
            "groups": [
                {
                    "id": 1,
                    "name": "Completed verification at Midterm A",
                    "selected": False,
                    "deleted": False
                },
                {
                    "id": 0,
                    "name": "Did not complete verification at Midterm A",
                    "selected": False,
                    "deleted": False,
                }
            ]
        }
    ]

    """
    course = course or modulestore().get_course(xblock.location.course_key)

    if course is None:
        log.warning(
            "Could not find course %s to retrieve user partition information",
            xblock.location.course_key
        )
        return []

    if schemes is not None:
        schemes = set(schemes)

    partitions = []
391
    for p in sorted(get_all_partitions_for_course(course, active_only=True), key=lambda p: p.name):
392 393

        # Exclude disabled partitions, partitions with no groups defined
bbaker6225 committed
394 395
        # The exception to this case is when there is a selected group within that partition, which means there is
        # a deleted group
396
        # Also filter by scheme name if there's a filter defined.
bbaker6225 committed
397 398
        selected_groups = set(xblock.group_access.get(p.id, []) or [])
        if (p.groups or selected_groups) and (schemes is None or p.scheme.name in schemes):
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418

            # First, add groups defined by the partition
            groups = []
            for g in p.groups:
                # Falsey group access for a partition mean that all groups
                # are selected.  In the UI, though, we don't show the particular
                # groups selected, since there's a separate option for "all users".
                groups.append({
                    "id": g.id,
                    "name": g.name,
                    "selected": g.id in selected_groups,
                    "deleted": False,
                })

            # Next, add any groups set on the XBlock that have been deleted
            all_groups = set(g.id for g in p.groups)
            missing_group_ids = selected_groups - all_groups
            for gid in missing_group_ids:
                groups.append({
                    "id": gid,
419
                    "name": _("Deleted Group"),
420 421 422 423 424 425 426
                    "selected": True,
                    "deleted": True,
                })

            # Put together the entire partition dictionary
            partitions.append({
                "id": p.id,
427
                "name": unicode(p.name),  # Convert into a string in case ugettext_lazy was used
428 429 430 431 432 433 434
                "scheme": p.scheme.name,
                "groups": groups,
            })

    return partitions


435
def get_visibility_partition_info(xblock, course=None):
436 437 438 439 440 441 442 443
    """
    Retrieve user partition information for the component visibility editor.

    This pre-processes partition information to simplify the template.

    Arguments:
        xblock (XBlock): The component being edited.

444 445 446 447
        course (XBlock): The course descriptor.  If provided, uses this to look up the user partitions
            instead of loading the course.  This is useful if we're calling this function multiple
            times for the same course want to minimize queries to the modulestore.

448 449 450
    Returns: dict

    """
451 452
    selectable_partitions = []
    # We wish to display enrollment partitions before cohort partitions.
453
    enrollment_user_partitions = get_user_partition_info(xblock, schemes=["enrollment_track"], course=course)
454 455 456 457 458 459 460 461

    # For enrollment partitions, we only show them if there is a selected group or
    # or if the number of groups > 1.
    for partition in enrollment_user_partitions:
        if len(partition["groups"]) > 1 or any(group["selected"] for group in partition["groups"]):
            selectable_partitions.append(partition)

    # Now add the cohort user partitions.
462
    selectable_partitions = selectable_partitions + get_user_partition_info(xblock, schemes=["cohort"], course=course)
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484

    # Find the first partition with a selected group. That will be the one initially enabled in the dialog
    # (if the course has only been added in Studio, only one partition should have a selected group).
    selected_partition_index = -1

    # At the same time, build up all the selected groups as they are displayed in the dialog title.
    selected_groups_label = ''

    for index, partition in enumerate(selectable_partitions):
        for group in partition["groups"]:
            if group["selected"]:
                if len(selected_groups_label) == 0:
                    selected_groups_label = group['name']
                else:
                    # Translators: This is building up a list of groups. It is marked for translation because of the
                    # comma, which is used as a separator between each group.
                    selected_groups_label = _('{previous_groups}, {current_group}').format(
                        previous_groups=selected_groups_label,
                        current_group=group['name']
                    )
                if selected_partition_index == -1:
                    selected_partition_index = index
485 486

    return {
487 488 489
        "selectable_partitions": selectable_partitions,
        "selected_partition_index": selected_partition_index,
        "selected_groups_label": selected_groups_label,
490
    }
491 492


493 494 495 496 497 498 499 500 501 502 503 504 505 506
def get_xblock_aside_instance(usage_key):
    """
    Returns: aside instance of a aside xblock
    :param usage_key: Usage key of aside xblock
    """
    try:
        descriptor = modulestore().get_item(usage_key.usage_key)
        for aside in descriptor.runtime.get_asides(descriptor):
            if aside.scope_ids.block_type == usage_key.aside_type:
                return aside
    except ItemNotFoundError:
        log.warning(u'Unable to load item %s', usage_key.usage_key)


507 508 509 510
def is_self_paced(course):
    """
    Returns True if course is self-paced, False otherwise.
    """
511
    return course and course.self_paced and SelfPacedConfiguration.current().enabled