instructor_dashboard.py 30.5 KB
Newer Older
1 2 3 4
"""
Instructor Dashboard Views
"""

5
import logging
6
import datetime
stephensanchez committed
7 8
from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey
9
import uuid
10
import pytz
11 12 13

from django.contrib.auth.decorators import login_required
from django.views.decorators.http import require_POST
14
from django.utils.translation import ugettext as _, ugettext_noop
15
from django.views.decorators.csrf import ensure_csrf_cookie
16
from django.views.decorators.cache import cache_control
David Baumgold committed
17
from edxmako.shortcuts import render_to_response
18 19
from django.core.urlresolvers import reverse
from django.utils.html import escape
stephensanchez committed
20
from django.http import Http404, HttpResponseServerError
21
from django.conf import settings
22
from util.json_request import JsonResponse
23
from mock import patch
24

25
from lms.djangoapps.lms_xblock.runtime import quote_slashes
26
from openedx.core.lib.xblock_utils import wrap_xblock
27
from xmodule.html_module import HtmlDescriptor
28
from xmodule.modulestore.django import modulestore
29
from xmodule.tabs import CourseTab
30 31
from xblock.field_data import DictFieldData
from xblock.fields import ScopeIds
32
from courseware.access import has_access
33
from courseware.courses import get_course_by_id, get_studio_url
34
from django_comment_client.utils import has_forum_access
Miles Steele committed
35
from django_comment_common.models import FORUM_ROLE_ADMINISTRATOR
36
from student.models import CourseEnrollment
37
from shoppingcart.models import Coupon, PaidCourseRegistration, CourseRegCodeItem
38
from course_modes.models import CourseMode, CourseModesArchive
stephensanchez committed
39
from student.roles import CourseFinanceAdminRole, CourseSalesAdminRole
40 41 42 43 44 45
from certificates.models import (
    CertificateGenerationConfiguration,
    CertificateWhitelist,
    GeneratedCertificate,
    CertificateStatuses,
    CertificateGenerationHistory,
46
    CertificateInvalidation,
47
)
48
from certificates import api as certs_api
49
from util.date_utils import get_default_time_display
50

51
from class_dashboard.dashboard_data import get_section_display_name, get_array_section_has_problem
52
from .tools import get_units_with_due_date, title_or_url, bulk_email_is_enabled_for_course
53
from opaque_keys.edx.locations import SlashSeparatedCourseKey
54

55 56
log = logging.getLogger(__name__)

57

58
class InstructorDashboardTab(CourseTab):
59 60 61 62
    """
    Defines the Instructor Dashboard view type that is shown as a course tab.
    """

63
    type = "instructor"
64
    title = ugettext_noop('Instructor')
65
    view_name = "instructor_dashboard"
66
    is_dynamic = True    # The "Instructor" tab is instead dynamically added when it is enabled
67 68

    @classmethod
69
    def is_enabled(cls, course, user=None):
70 71 72
        """
        Returns true if the specified user has staff access.
        """
73
        return bool(user and has_access(user, 'staff', course, course.id))
74 75


76 77 78
@ensure_csrf_cookie
@cache_control(no_cache=True, no_store=True, must_revalidate=True)
def instructor_dashboard_2(request, course_id):
79
    """ Display the instructor dashboard for a course. """
stephensanchez committed
80 81 82 83 84 85 86
    try:
        course_key = CourseKey.from_string(course_id)
    except InvalidKeyError:
        log.error(u"Unable to find course with course key %s while loading the Instructor Dashboard.", course_id)
        return HttpResponseServerError()

    course = get_course_by_id(course_key, depth=0)
87

Miles Steele committed
88
    access = {
89
        'admin': request.user.is_staff,
90
        'instructor': bool(has_access(request.user, 'instructor', course)),
91
        'finance_admin': CourseFinanceAdminRole(course_key).has_user(request.user),
stephensanchez committed
92
        'sales_admin': CourseSalesAdminRole(course_key).has_user(request.user),
93
        'staff': bool(has_access(request.user, 'staff', course)),
94
        'forum_admin': has_forum_access(request.user, course_key, FORUM_ROLE_ADMINISTRATOR),
Miles Steele committed
95 96
    }

97 98
    if not access['staff']:
        raise Http404()
99

100
    is_white_label = CourseMode.is_white_label(course_key)
101

102
    sections = [
103
        _section_course_info(course, access),
104
        _section_membership(course, access, is_white_label),
105
        _section_cohort_management(course, access),
106
        _section_student_admin(course, access),
107
        _section_data_download(course, access),
108
    ]
109

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
    analytics_dashboard_message = None
    if settings.ANALYTICS_DASHBOARD_URL:
        # Construct a URL to the external analytics dashboard
        analytics_dashboard_url = '{0}/courses/{1}'.format(settings.ANALYTICS_DASHBOARD_URL, unicode(course_key))
        link_start = "<a href=\"{}\" target=\"_blank\">".format(analytics_dashboard_url)
        analytics_dashboard_message = _(
            "To gain insights into student enrollment and participation {link_start}"
            "visit {analytics_dashboard_name}, our new course analytics product{link_end}."
        )
        analytics_dashboard_message = analytics_dashboard_message.format(
            link_start=link_start, link_end="</a>", analytics_dashboard_name=settings.ANALYTICS_DASHBOARD_NAME)

        # Temporarily show the "Analytics" section until we have a better way of linking to Insights
        sections.append(_section_analytics(course, access))

    # Check if there is corresponding entry in the CourseMode Table related to the Instructor Dashboard course
126
    course_mode_has_price = False
stephensanchez committed
127 128
    paid_modes = CourseMode.paid_modes_for_course(course_key)
    if len(paid_modes) == 1:
129
        course_mode_has_price = True
stephensanchez committed
130 131 132 133 134 135 136
    elif len(paid_modes) > 1:
        log.error(
            u"Course %s has %s course modes with payment options. Course must only have "
            u"one paid course mode to enable eCommerce options.",
            unicode(course_key), len(paid_modes)
        )

137
    if settings.FEATURES.get('INDIVIDUAL_DUE_DATES') and access['instructor']:
138 139
        sections.insert(3, _section_extensions(course))

140
    # Gate access to course email by feature flag & by course-specific authorization
141
    if bulk_email_is_enabled_for_course(course_key):
142
        sections.append(_section_send_email(course, access))
143

144 145
    # Gate access to Metrics tab by featue flag and staff authorization
    if settings.FEATURES['CLASS_DASHBOARD'] and access['staff']:
146
        sections.append(_section_metrics(course, access))
147

David Baumgold committed
148
    # Gate access to Ecommerce tab
stephensanchez committed
149
    if course_mode_has_price and (access['finance_admin'] or access['sales_admin']):
150
        sections.append(_section_e_commerce(course, access, paid_modes[0], is_white_label, is_white_label))
151

152 153 154 155 156 157 158 159 160
    # Gate access to Special Exam tab depending if either timed exams or proctored exams
    # are enabled in the course

    # NOTE: For now, if we only have procotred exams enabled, then only platform Staff
    # (user.is_staff) will be able to view the special exams tab. This may
    # change in the future
    can_see_special_exams = (
        ((course.enable_proctored_exams and request.user.is_staff) or course.enable_timed_exams) and
        settings.FEATURES.get('ENABLE_SPECIAL_EXAMS', False)
161
    )
162 163
    if can_see_special_exams:
        sections.append(_section_special_exams(course, access))
164

165 166 167 168 169 170 171
    # Certificates panel
    # This is used to generate example certificates
    # and enable self-generated certificates for a course.
    certs_enabled = CertificateGenerationConfiguration.current().enabled
    if certs_enabled and access['admin']:
        sections.append(_section_certificates(course))

172
    disable_buttons = not _is_small_course(course_key)
173

174
    certificate_white_list = CertificateWhitelist.get_certificate_white_list(course_key)
175 176 177 178
    generate_certificate_exceptions_url = reverse(  # pylint: disable=invalid-name
        'generate_certificate_exceptions',
        kwargs={'course_id': unicode(course_key), 'generate_for': ''}
    )
asadiqbal committed
179 180 181 182
    generate_bulk_certificate_exceptions_url = reverse(  # pylint: disable=invalid-name
        'generate_bulk_certificate_exceptions',
        kwargs={'course_id': unicode(course_key)}
    )
183 184 185
    certificate_exception_view_url = reverse(
        'certificate_exception_view',
        kwargs={'course_id': unicode(course_key)}
186 187
    )

188 189 190 191 192 193 194
    certificate_invalidation_view_url = reverse(  # pylint: disable=invalid-name
        'certificate_invalidation_view',
        kwargs={'course_id': unicode(course_key)}
    )

    certificate_invalidations = CertificateInvalidation.get_certificate_invalidations(course_key)

195 196
    context = {
        'course': course,
197
        'studio_url': get_studio_url(course, 'course'),
198
        'sections': sections,
199
        'disable_buttons': disable_buttons,
200 201
        'analytics_dashboard_message': analytics_dashboard_message,
        'certificate_white_list': certificate_white_list,
202
        'certificate_invalidations': certificate_invalidations,
203
        'generate_certificate_exceptions_url': generate_certificate_exceptions_url,
asadiqbal committed
204
        'generate_bulk_certificate_exceptions_url': generate_bulk_certificate_exceptions_url,
205 206
        'certificate_exception_view_url': certificate_exception_view_url,
        'certificate_invalidation_view_url': certificate_invalidation_view_url,
207
    }
208

209
    return render_to_response('instructor/instructor_dashboard_2/instructor_dashboard_2.html', context)
210 211


212
## Section functions starting with _section return a dictionary of section data.
213

214 215 216 217
## The dictionary must include at least {
##     'section_key': 'circus_expo'
##     'section_display_name': 'Circus Expo'
## }
218

219 220
## section_key will be used as a css attribute, javascript tie-in, and template import filename.
## section_display_name will be used to generate link titles in the nav bar.
221 222


223
def _section_e_commerce(course, access, paid_mode, coupons_enabled, reports_enabled):
224
    """ Provide data for the corresponding dashboard section """
225
    course_key = course.id
226
    coupons = Coupon.objects.filter(course_id=course_key).order_by('-is_active')
stephensanchez committed
227 228
    course_price = paid_mode.min_price

229
    total_amount = None
230
    if access['finance_admin']:
231 232 233
        single_purchase_total = PaidCourseRegistration.get_total_amount_of_purchased_item(course_key)
        bulk_purchase_total = CourseRegCodeItem.get_total_amount_of_purchased_item(course_key)
        total_amount = single_purchase_total + bulk_purchase_total
234 235 236 237 238

    section_data = {
        'section_key': 'e-commerce',
        'section_display_name': _('E-Commerce'),
        'access': access,
239
        'course_id': unicode(course_key),
240
        'currency_symbol': settings.PAID_COURSE_REGISTRATION_CURRENCY[1],
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
        'ajax_remove_coupon_url': reverse('remove_coupon', kwargs={'course_id': unicode(course_key)}),
        'ajax_get_coupon_info': reverse('get_coupon_info', kwargs={'course_id': unicode(course_key)}),
        'get_user_invoice_preference_url': reverse('get_user_invoice_preference', kwargs={'course_id': unicode(course_key)}),
        'sale_validation_url': reverse('sale_validation', kwargs={'course_id': unicode(course_key)}),
        'ajax_update_coupon': reverse('update_coupon', kwargs={'course_id': unicode(course_key)}),
        'ajax_add_coupon': reverse('add_coupon', kwargs={'course_id': unicode(course_key)}),
        'get_sale_records_url': reverse('get_sale_records', kwargs={'course_id': unicode(course_key)}),
        'get_sale_order_records_url': reverse('get_sale_order_records', kwargs={'course_id': unicode(course_key)}),
        'instructor_url': reverse('instructor_dashboard', kwargs={'course_id': unicode(course_key)}),
        'get_registration_code_csv_url': reverse('get_registration_codes', kwargs={'course_id': unicode(course_key)}),
        'generate_registration_code_csv_url': reverse('generate_registration_codes', kwargs={'course_id': unicode(course_key)}),
        'active_registration_code_csv_url': reverse('active_registration_codes', kwargs={'course_id': unicode(course_key)}),
        'spent_registration_code_csv_url': reverse('spent_registration_codes', kwargs={'course_id': unicode(course_key)}),
        'set_course_mode_url': reverse('set_course_mode_price', kwargs={'course_id': unicode(course_key)}),
        'download_coupon_codes_url': reverse('get_coupon_codes', kwargs={'course_id': unicode(course_key)}),
256
        'enrollment_report_url': reverse('get_enrollment_report', kwargs={'course_id': unicode(course_key)}),
Afzal Wali committed
257
        'exec_summary_report_url': reverse('get_exec_summary_report', kwargs={'course_id': unicode(course_key)}),
258 259 260
        'list_financial_report_downloads_url': reverse('list_financial_report_downloads',
                                                       kwargs={'course_id': unicode(course_key)}),
        'list_instructor_tasks_url': reverse('list_instructor_tasks', kwargs={'course_id': unicode(course_key)}),
261
        'look_up_registration_code': reverse('look_up_registration_code', kwargs={'course_id': unicode(course_key)}),
262
        'coupons': coupons,
stephensanchez committed
263 264
        'sales_admin': access['sales_admin'],
        'coupons_enabled': coupons_enabled,
265
        'reports_enabled': reports_enabled,
266 267
        'course_price': course_price,
        'total_amount': total_amount
268 269 270 271
    }
    return section_data


272
def _section_special_exams(course, access):
273 274 275 276
    """ Provide data for the corresponding dashboard section """
    course_key = course.id

    section_data = {
277 278
        'section_key': 'special_exams',
        'section_display_name': _('Special Exams'),
279 280 281 282 283 284
        'access': access,
        'course_id': unicode(course_key)
    }
    return section_data


285 286 287 288 289 290 291 292 293 294 295 296 297 298
def _section_certificates(course):
    """Section information for the certificates panel.

    The certificates panel allows global staff to generate
    example certificates and enable self-generated certificates
    for a course.

    Arguments:
        course (Course)

    Returns:
        dict

    """
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
    example_cert_status = None
    html_cert_enabled = certs_api.has_html_certificates_enabled(course.id, course)
    if html_cert_enabled:
        can_enable_for_course = True
    else:
        example_cert_status = certs_api.example_certificates_status(course.id)

        # Allow the user to enable self-generated certificates for students
        # *only* once a set of example certificates has been successfully generated.
        # If certificates have been misconfigured for the course (for example, if
        # the PDF template hasn't been uploaded yet), then we don't want
        # to turn on self-generated certificates for students!
        can_enable_for_course = (
            example_cert_status is not None and
            all(
                cert_status['status'] == 'success'
                for cert_status in example_cert_status
            )
317
        )
318
    instructor_generation_enabled = settings.FEATURES.get('CERTIFICATES_INSTRUCTOR_GENERATION', False)
319 320 321 322
    certificate_statuses_with_count = {
        certificate['status']: certificate['count']
        for certificate in GeneratedCertificate.get_unique_statuses(course_key=course.id)
    }
323

324 325 326 327 328 329
    return {
        'section_key': 'certificates',
        'section_display_name': _('Certificates'),
        'example_certificate_status': example_cert_status,
        'can_enable_for_course': can_enable_for_course,
        'enabled_for_course': certs_api.cert_generation_enabled(course.id),
330
        'instructor_generation_enabled': instructor_generation_enabled,
331
        'html_cert_enabled': html_cert_enabled,
asadiqbal committed
332
        'active_certificate': certs_api.get_active_web_certificate(course),
333 334
        'certificate_statuses_with_count': certificate_statuses_with_count,
        'status': CertificateStatuses,
335 336
        'certificate_generation_history':
            CertificateGenerationHistory.objects.filter(course_id=course.id).order_by("-created"),
337 338 339 340 341 342 343 344
        'urls': {
            'generate_example_certificates': reverse(
                'generate_example_certificates',
                kwargs={'course_id': course.id}
            ),
            'enable_certificate_generation': reverse(
                'enable_certificate_generation',
                kwargs={'course_id': course.id}
345 346 347 348 349
            ),
            'start_certificate_generation': reverse(
                'start_certificate_generation',
                kwargs={'course_id': course.id}
            ),
350 351 352 353
            'start_certificate_regeneration': reverse(
                'start_certificate_regeneration',
                kwargs={'course_id': course.id}
            ),
354 355 356 357
            'list_instructor_tasks_url': reverse(
                'list_instructor_tasks',
                kwargs={'course_id': course.id}
            ),
358 359 360 361
        }
    }


362 363 364 365 366 367 368 369 370 371 372
@ensure_csrf_cookie
@cache_control(no_cache=True, no_store=True, must_revalidate=True)
@require_POST
@login_required
def set_course_mode_price(request, course_id):
    """
    set the new course price and add new entry in the CourseModesArchive Table
    """
    try:
        course_price = int(request.POST['course_price'])
    except ValueError:
373 374 375 376
        return JsonResponse(
            {'message': _("Please Enter the numeric value for the course price")},
            status=400)  # status code 400: Bad Request

377 378 379 380 381
    currency = request.POST['currency']
    course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)

    course_honor_mode = CourseMode.objects.filter(mode_slug='honor', course_id=course_key)
    if not course_honor_mode:
382 383 384 385
        return JsonResponse(
            {'message': _("CourseMode with the mode slug({mode_slug}) DoesNotExist").format(mode_slug='honor')},
            status=400)  # status code 400: Bad Request

386 387
    CourseModesArchive.objects.create(
        course_id=course_id, mode_slug='honor', mode_display_name='Honor Code Certificate',
388
        min_price=course_honor_mode[0].min_price, currency=course_honor_mode[0].currency,
389 390 391 392 393 394
        expiration_datetime=datetime.datetime.now(pytz.utc), expiration_date=datetime.date.today()
    )
    course_honor_mode.update(
        min_price=course_price,
        currency=currency
    )
395
    return JsonResponse({'message': _("CourseMode price updated successfully")})
396 397


398
def _section_course_info(course, access):
399
    """ Provide data for the corresponding dashboard section """
400
    course_key = course.id
401

402 403 404
    section_data = {
        'section_key': 'course_info',
        'section_display_name': _('Course Info'),
405
        'access': access,
406
        'course_id': course_key,
407 408 409
        'course_display_name': course.display_name,
        'has_started': course.has_started(),
        'has_ended': course.has_ended(),
410
        'start_date': get_default_time_display(course.start),
411
        'end_date': get_default_time_display(course.end) or _('No end date set'),
412
        'num_sections': len(course.children),
413
        'list_instructor_tasks_url': reverse('list_instructor_tasks', kwargs={'course_id': unicode(course_key)}),
414
    }
Miles Steele committed
415

416
    if settings.FEATURES.get('DISPLAY_ANALYTICS_ENROLLMENTS'):
417
        section_data['enrollment_count'] = CourseEnrollment.objects.enrollment_counts(course_key)
418 419 420 421 422 423

    if settings.ANALYTICS_DASHBOARD_URL:
        dashboard_link = _get_dashboard_link(course_key)
        message = _("Enrollment data is now available in {dashboard_link}.").format(dashboard_link=dashboard_link)
        section_data['enrollment_message'] = message

424 425 426
    if settings.FEATURES.get('ENABLE_SYSADMIN_DASHBOARD'):
        section_data['detailed_gitlogs_url'] = reverse('gitlogs_detail', kwargs={'course_id': unicode(course_key)})

Miles Steele committed
427
    try:
cahrens committed
428
        sorted_cutoffs = sorted(course.grade_cutoffs.items(), key=lambda i: i[1], reverse=True)
Miles Steele committed
429
        advance = lambda memo, (letter, score): "{}: {}, ".format(letter, score) + memo
cahrens committed
430
        section_data['grade_cutoffs'] = reduce(advance, sorted_cutoffs, "")[:-2]
431
    except Exception:  # pylint: disable=broad-except
Miles Steele committed
432
        section_data['grade_cutoffs'] = "Not Available"
433
    # section_data['offline_grades'] = offline_grades_available(course_key)
434 435

    try:
436
        section_data['course_errors'] = [(escape(a), '') for (a, _unused) in modulestore().get_course_errors(course.id)]
437
    except Exception:  # pylint: disable=broad-except
438 439 440 441 442
        section_data['course_errors'] = [('Error fetching errors', '')]

    return section_data


443
def _section_membership(course, access, is_white_label):
444
    """ Provide data for the corresponding dashboard section """
445
    course_key = course.id
446
    ccx_enabled = settings.FEATURES.get('CUSTOM_COURSES_EDX', False) and course.enable_ccx
447
    section_data = {
448
        'section_key': 'membership',
Miles Steele committed
449
        'section_display_name': _('Membership'),
Miles Steele committed
450
        'access': access,
451
        'ccx_is_enabled': ccx_enabled,
452
        'is_white_label': is_white_label,
453 454 455 456 457 458 459 460
        'enroll_button_url': reverse('students_update_enrollment', kwargs={'course_id': unicode(course_key)}),
        'unenroll_button_url': reverse('students_update_enrollment', kwargs={'course_id': unicode(course_key)}),
        'upload_student_csv_button_url': reverse('register_and_enroll_students', kwargs={'course_id': unicode(course_key)}),
        'modify_beta_testers_button_url': reverse('bulk_beta_modify_access', kwargs={'course_id': unicode(course_key)}),
        'list_course_role_members_url': reverse('list_course_role_members', kwargs={'course_id': unicode(course_key)}),
        'modify_access_url': reverse('modify_access', kwargs={'course_id': unicode(course_key)}),
        'list_forum_members_url': reverse('list_forum_members', kwargs={'course_id': unicode(course_key)}),
        'update_forum_role_membership_url': reverse('update_forum_role_membership', kwargs={'course_id': unicode(course_key)}),
461 462 463 464 465 466 467 468 469
    }
    return section_data


def _section_cohort_management(course, access):
    """ Provide data for the corresponding cohort management section """
    course_key = course.id
    section_data = {
        'section_key': 'cohort_management',
470
        'section_display_name': _('Cohorts'),
471 472 473 474 475 476
        'access': access,
        'course_cohort_settings_url': reverse(
            'course_cohort_settings',
            kwargs={'course_key_string': unicode(course_key)}
        ),
        'cohorts_url': reverse('cohorts', kwargs={'course_key_string': unicode(course_key)}),
477
        'upload_cohorts_csv_url': reverse('add_users_to_cohorts', kwargs={'course_id': unicode(course_key)}),
478
        'discussion_topics_url': reverse('cohort_discussion_topics', kwargs={'course_key_string': unicode(course_key)}),
479
    }
480 481 482
    return section_data


483
def _is_small_course(course_key):
484
    """ Compares against MAX_ENROLLMENT_INSTR_BUTTONS to determine if course enrollment is considered small. """
485
    is_small_course = False
486
    enrollment_count = CourseEnrollment.objects.num_enrolled_in(course_key)
487 488 489
    max_enrollment_for_buttons = settings.FEATURES.get("MAX_ENROLLMENT_INSTR_BUTTONS")
    if max_enrollment_for_buttons is not None:
        is_small_course = enrollment_count <= max_enrollment_for_buttons
490 491 492
    return is_small_course


493
def _section_student_admin(course, access):
494 495
    """ Provide data for the corresponding dashboard section """
    course_key = course.id
496
    is_small_course = _is_small_course(course_key)
497

498 499
    section_data = {
        'section_key': 'student_admin',
Miles Steele committed
500
        'section_display_name': _('Student Admin'),
501
        'access': access,
502
        'is_small_course': is_small_course,
503 504 505
        'get_student_progress_url_url': reverse('get_student_progress_url', kwargs={'course_id': unicode(course_key)}),
        'enrollment_url': reverse('students_update_enrollment', kwargs={'course_id': unicode(course_key)}),
        'reset_student_attempts_url': reverse('reset_student_attempts', kwargs={'course_id': unicode(course_key)}),
506 507 508 509
        'reset_student_attempts_for_entrance_exam_url': reverse(
            'reset_student_attempts_for_entrance_exam',
            kwargs={'course_id': unicode(course_key)},
        ),
510
        'rescore_problem_url': reverse('rescore_problem', kwargs={'course_id': unicode(course_key)}),
511
        'rescore_entrance_exam_url': reverse('rescore_entrance_exam', kwargs={'course_id': unicode(course_key)}),
512 513 514 515
        'student_can_skip_entrance_exam_url': reverse(
            'mark_student_can_skip_entrance_exam',
            kwargs={'course_id': unicode(course_key)},
        ),
516
        'list_instructor_tasks_url': reverse('list_instructor_tasks', kwargs={'course_id': unicode(course_key)}),
517 518
        'list_entrace_exam_instructor_tasks_url': reverse('list_entrance_exam_instructor_tasks',
                                                          kwargs={'course_id': unicode(course_key)}),
519
        'spoc_gradebook_url': reverse('spoc_gradebook', kwargs={'course_id': unicode(course_key)}),
520
    }
521 522 523
    return section_data


524 525 526 527 528
def _section_extensions(course):
    """ Provide data for the corresponding dashboard section """
    section_data = {
        'section_key': 'extensions',
        'section_display_name': _('Extensions'),
529
        'units_with_due_dates': [(title_or_url(unit), unicode(unit.location))
530
                                 for unit in get_units_with_due_date(course)],
531 532 533 534
        'change_due_date_url': reverse('change_due_date', kwargs={'course_id': unicode(course.id)}),
        'reset_due_date_url': reverse('reset_due_date', kwargs={'course_id': unicode(course.id)}),
        'show_unit_extensions_url': reverse('show_unit_extensions', kwargs={'course_id': unicode(course.id)}),
        'show_student_extensions_url': reverse('show_student_extensions', kwargs={'course_id': unicode(course.id)}),
535 536 537 538
    }
    return section_data


539
def _section_data_download(course, access):
540
    """ Provide data for the corresponding dashboard section """
541
    course_key = course.id
542 543

    show_proctored_report_button = (
544
        settings.FEATURES.get('ENABLE_SPECIAL_EXAMS', False) and
545 546 547
        course.enable_proctored_exams
    )

548
    section_data = {
549
        'section_key': 'data_download',
Miles Steele committed
550
        'section_display_name': _('Data Download'),
551
        'access': access,
552
        'show_generate_proctored_exam_report_button': show_proctored_report_button,
553
        'get_problem_responses_url': reverse('get_problem_responses', kwargs={'course_id': unicode(course_key)}),
554 555
        'get_grading_config_url': reverse('get_grading_config', kwargs={'course_id': unicode(course_key)}),
        'get_students_features_url': reverse('get_students_features', kwargs={'course_id': unicode(course_key)}),
asadiqbal committed
556 557 558
        'get_issued_certificates_url': reverse(
            'get_issued_certificates', kwargs={'course_id': unicode(course_key)}
        ),
559 560 561
        'get_students_who_may_enroll_url': reverse(
            'get_students_who_may_enroll', kwargs={'course_id': unicode(course_key)}
        ),
562
        'get_anon_ids_url': reverse('get_anon_ids', kwargs={'course_id': unicode(course_key)}),
563
        'list_proctored_results_url': reverse('get_proctored_exam_results', kwargs={'course_id': unicode(course_key)}),
564 565 566
        'list_instructor_tasks_url': reverse('list_instructor_tasks', kwargs={'course_id': unicode(course_key)}),
        'list_report_downloads_url': reverse('list_report_downloads', kwargs={'course_id': unicode(course_key)}),
        'calculate_grades_csv_url': reverse('calculate_grades_csv', kwargs={'course_id': unicode(course_key)}),
567
        'problem_grade_report_url': reverse('problem_grade_report', kwargs={'course_id': unicode(course_key)}),
568 569
        'course_has_survey': True if course.course_survey_name else False,
        'course_survey_results_url': reverse('get_course_survey_results', kwargs={'course_id': unicode(course_key)}),
570
        'export_ora2_data_url': reverse('export_ora2_data', kwargs={'course_id': unicode(course_key)}),
571 572 573
    }
    return section_data

574

575
def null_applicable_aside_types(block):  # pylint: disable=unused-argument
576
    """
577
    get_aside method for monkey-patching into applicable_aside_types
578 579 580 581 582 583
    while rendering an HtmlDescriptor for email text editing. This returns
    an empty list.
    """
    return []


584
def _section_send_email(course, access):
585
    """ Provide data for the corresponding bulk email section """
586 587
    course_key = course.id

588 589
    # Monkey-patch applicable_aside_types to return no asides for the duration of this render
    with patch.object(course.runtime, 'applicable_aside_types', null_applicable_aside_types):
590 591 592 593 594 595 596
        # This HtmlDescriptor is only being used to generate a nice text editor.
        html_module = HtmlDescriptor(
            course.system,
            DictFieldData({'data': ''}),
            ScopeIds(None, None, None, course_key.make_usage_key('html', 'fake'))
        )
        fragment = course.system.render(html_module, 'studio_view')
597 598
    fragment = wrap_xblock(
        'LmsRuntime', html_module, 'studio_view', fragment, None,
599 600
        extra_data={"course-id": unicode(course_key)},
        usage_id_serializer=lambda usage_id: quote_slashes(unicode(usage_id)),
601 602 603
        # Generate a new request_token here at random, because this module isn't connected to any other
        # xblock rendering.
        request_token=uuid.uuid1().get_hex()
604
    )
605
    email_editor = fragment.content
606 607 608
    section_data = {
        'section_key': 'send_email',
        'section_display_name': _('Email'),
609
        'access': access,
610
        'send_email': reverse('send_email', kwargs={'course_id': unicode(course_key)}),
611
        'editor': email_editor,
612
        'list_instructor_tasks_url': reverse(
613
            'list_instructor_tasks', kwargs={'course_id': unicode(course_key)}
614 615
        ),
        'email_background_tasks_url': reverse(
616
            'list_background_email_tasks', kwargs={'course_id': unicode(course_key)}
617
        ),
618
        'email_content_history_url': reverse(
619
            'list_email_content', kwargs={'course_id': unicode(course_key)}
620
        ),
621 622 623
    }
    return section_data

624

625
def _get_dashboard_link(course_key):
626
    """ Construct a URL to the external analytics dashboard """
627
    analytics_dashboard_url = '{0}/courses/{1}'.format(settings.ANALYTICS_DASHBOARD_URL, unicode(course_key))
628 629
    link = u"<a href=\"{0}\" target=\"_blank\">{1}</a>".format(analytics_dashboard_url,
                                                               settings.ANALYTICS_DASHBOARD_NAME)
630 631 632
    return link


633
def _section_analytics(course, access):
634
    """ Provide data for the corresponding dashboard section """
635
    course_key = course.id
636 637 638 639 640
    analytics_dashboard_url = '{0}/courses/{1}'.format(settings.ANALYTICS_DASHBOARD_URL, unicode(course_key))
    link_start = "<a href=\"{}\" target=\"_blank\">".format(analytics_dashboard_url)
    insights_message = _("For analytics about your course, go to {analytics_dashboard_name}.")

    insights_message = insights_message.format(
louyihua committed
641
        analytics_dashboard_name=u'{0}{1}</a>'.format(link_start, settings.ANALYTICS_DASHBOARD_NAME)
642
    )
643
    section_data = {
644
        'section_key': 'instructor_analytics',
Miles Steele committed
645
        'section_display_name': _('Analytics'),
646
        'access': access,
647
        'insights_message': insights_message,
648
    }
649

650
    return section_data
651 652


653
def _section_metrics(course, access):
654
    """Provide data for the corresponding dashboard section """
655
    course_key = course.id
656 657
    section_data = {
        'section_key': 'metrics',
658
        'section_display_name': _('Metrics'),
659
        'access': access,
660
        'course_id': unicode(course_key),
661 662
        'sub_section_display_name': get_section_display_name(course_key),
        'section_has_problem': get_array_section_has_problem(course_key),
663 664
        'get_students_opened_subsection_url': reverse('get_students_opened_subsection'),
        'get_students_problem_grades_url': reverse('get_students_problem_grades'),
665
        'post_metrics_data_csv_url': reverse('post_metrics_data_csv'),
666 667
    }
    return section_data