sysadmin.py 28.9 KB
Newer Older
Carson Gee committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
"""
This module creates a sysadmin dashboard for managing and viewing
courses.
"""
import csv
import json
import logging
import os
import subprocess
import time
import StringIO

from django.conf import settings
from django.contrib.auth import authenticate
from django.contrib.auth.decorators import login_required
from django.contrib.auth.models import User
from django.core.exceptions import PermissionDenied
18
from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage
Carson Gee committed
19 20 21 22
from django.db import IntegrityError
from django.http import HttpResponse, Http404
from django.utils.decorators import method_decorator
from django.utils.html import escape
23
from django.utils import timezone
Carson Gee committed
24 25 26 27
from django.utils.translation import ugettext as _
from django.views.decorators.cache import cache_control
from django.views.generic.base import TemplateView
from django.views.decorators.http import condition
28
from django.views.decorators.csrf import ensure_csrf_cookie
Carson Gee committed
29 30
from edxmako.shortcuts import render_to_response
import mongoengine
31
from path import Path as path
Carson Gee committed
32 33

from courseware.courses import get_course_by_id
34 35
import dashboard.git_import as git_import
from dashboard.git_import import GitImportError
36
from student.roles import CourseStaffRole, CourseInstructorRole
Carson Gee committed
37 38 39 40 41
from dashboard.models import CourseImportLog
from external_auth.models import ExternalAuthMap
from external_auth.views import generate_password
from student.models import CourseEnrollment, UserProfile, Registration
import track.views
42
from xmodule.modulestore import ModuleStoreEnum
Carson Gee committed
43
from xmodule.modulestore.django import modulestore
44
from opaque_keys.edx.locations import SlashSeparatedCourseKey
Carson Gee committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60


log = logging.getLogger(__name__)


class SysadminDashboardView(TemplateView):
    """Base class for sysadmin dashboard views with common methods"""

    template_name = 'sysadmin_dashboard.html'

    def __init__(self, **kwargs):
        """
        Initialize base sysadmin dashboard class with modulestore,
        modulestore_type and return msg
        """

61
        self.def_ms = modulestore()
62

Carson Gee committed
63
        self.is_using_mongo = True
64
        if self.def_ms.get_modulestore_type(None) == 'xml':
Carson Gee committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
            self.is_using_mongo = False
        self.msg = u''
        self.datatable = []
        super(SysadminDashboardView, self).__init__(**kwargs)

    @method_decorator(ensure_csrf_cookie)
    @method_decorator(login_required)
    @method_decorator(cache_control(no_cache=True, no_store=True,
                                    must_revalidate=True))
    @method_decorator(condition(etag_func=None))
    def dispatch(self, *args, **kwargs):
        return super(SysadminDashboardView, self).dispatch(*args, **kwargs)

    def get_courses(self):
        """ Get an iterable list of courses."""

81
        return self.def_ms.get_courses()
Carson Gee committed
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136

    def return_csv(self, filename, header, data):
        """
        Convenient function for handling the http response of a csv.
        data should be iterable and is used to stream object over http
        """

        csv_file = StringIO.StringIO()
        writer = csv.writer(csv_file, dialect='excel', quotechar='"',
                            quoting=csv.QUOTE_ALL)

        writer.writerow(header)

        # Setup streaming of the data
        def read_and_flush():
            """Read and clear buffer for optimization"""
            csv_file.seek(0)
            csv_data = csv_file.read()
            csv_file.seek(0)
            csv_file.truncate()
            return csv_data

        def csv_data():
            """Generator for handling potentially large CSVs"""
            for row in data:
                writer.writerow(row)
            csv_data = read_and_flush()
            yield csv_data
        response = HttpResponse(csv_data(), mimetype='text/csv')
        response['Content-Disposition'] = 'attachment; filename={0}'.format(
            filename)
        return response


class Users(SysadminDashboardView):
    """
    The status view provides Web based user management, a listing of
    courses loaded, and user statistics
    """

    def fix_external_auth_map_passwords(self):
        """
        This corrects any passwords that have drifted from eamap to
        internal django auth.  Needs to be removed when fixed in external_auth
        """

        msg = ''
        for eamap in ExternalAuthMap.objects.all():
            euser = eamap.user
            epass = eamap.internal_password
            if euser is None:
                continue
            try:
                testuser = authenticate(username=euser.username, password=epass)
            except (TypeError, PermissionDenied, AttributeError), err:
137 138 139 140 141 142
                # Translators: This message means that the user could not be authenticated (that is, we could
                # not log them in for some reason - maybe they don't have permission, or their password was wrong)
                msg += _('Failed in authenticating {username}, error {error}\n').format(
                    username=euser,
                    error=err
                )
Carson Gee committed
143 144
                continue
            if testuser is None:
145 146 147 148 149
                # Translators: This message means that the user could not be authenticated (that is, we could
                # not log them in for some reason - maybe they don't have permission, or their password was wrong)
                msg += _('Failed in authenticating {username}\n').format(username=euser)
                # Translators: this means that the password has been corrected (sometimes the database needs to be resynchronized)
                # Translate this as meaning "the password was fixed" or "the password was corrected".
Carson Gee committed
150 151 152 153 154
                msg += _('fixed password')
                euser.set_password(epass)
                euser.save()
                continue
        if not msg:
155
            # Translators: this means everything happened successfully, yay!
Carson Gee committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169
            msg = _('All ok!')
        return msg

    def create_user(self, uname, name, password=None):
        """ Creates a user (both SSL and regular)"""

        if not uname:
            return _('Must provide username')
        if not name:
            return _('Must provide full name')

        email_domain = getattr(settings, 'SSL_AUTH_EMAIL_DOMAIN', 'MIT.EDU')

        msg = u''
170
        if settings.FEATURES['AUTH_USE_CERTIFICATES']:
David Baumgold committed
171
            if '@' not in uname:
Carson Gee committed
172 173 174 175
                email = '{0}@{1}'.format(uname, email_domain)
            else:
                email = uname
            if not email.endswith('@{0}'.format(email_domain)):
176 177
                # Translators: Domain is an email domain, such as "@gmail.com"
                msg += _('Email address must end in {domain}').format(domain="@{0}".format(email_domain))
Carson Gee committed
178 179 180 181
                return msg
            mit_domain = 'ssl:MIT'
            if ExternalAuthMap.objects.filter(external_id=email,
                                              external_domain=mit_domain):
182 183 184 185
                msg += _('Failed - email {email_addr} already exists as {external_id}').format(
                    email_addr=email,
                    external_id="external_id"
                )
Carson Gee committed
186 187 188 189 190 191 192 193
                return msg
            new_password = generate_password()
        else:
            if not password:
                return _('Password must be supplied if not using certificates')

            email = uname

David Baumgold committed
194
            if '@' not in email:
Carson Gee committed
195 196 197 198 199 200 201 202 203
                msg += _('email address required (not username)')
                return msg
            new_password = password

        user = User(username=uname, email=email, is_active=True)
        user.set_password(new_password)
        try:
            user.save()
        except IntegrityError:
204 205 206 207
            msg += _('Oops, failed to create user {user}, {error}').format(
                user=user,
                error="IntegrityError"
            )
Carson Gee committed
208 209 210 211 212 213 214 215 216
            return msg

        reg = Registration()
        reg.register(user)

        profile = UserProfile(user=user)
        profile.name = name
        profile.save()

217
        if settings.FEATURES['AUTH_USE_CERTIFICATES']:
Carson Gee committed
218 219 220 221 222 223 224 225 226 227 228 229
            credential_string = getattr(settings, 'SSL_AUTH_DN_FORMAT_STRING',
                                        '/C=US/ST=Massachusetts/O=Massachusetts Institute of Technology/OU=Client CA v1/CN={0}/emailAddress={1}')
            credentials = credential_string.format(name, email)
            eamap = ExternalAuthMap(
                external_id=email,
                external_email=email,
                external_domain=mit_domain,
                external_name=name,
                internal_password=new_password,
                external_credentials=json.dumps(credentials),
            )
            eamap.user = user
230
            eamap.dtsignup = timezone.now()
Carson Gee committed
231 232
            eamap.save()

233
        msg += _('User {user} created successfully!').format(user=user)
Carson Gee committed
234 235 236 237 238 239 240 241 242 243 244
        return msg

    def delete_user(self, uname):
        """Deletes a user from django auth"""

        if not uname:
            return _('Must provide username')
        if '@' in uname:
            try:
                user = User.objects.get(email=uname)
            except User.DoesNotExist, err:
245
                msg = _('Cannot find user with email address {email_addr}').format(email_addr=uname)
Carson Gee committed
246 247 248 249 250
                return msg
        else:
            try:
                user = User.objects.get(username=uname)
            except User.DoesNotExist, err:
251 252 253 254
                msg = _('Cannot find user with username {username} - {error}').format(
                    username=uname,
                    error=str(err)
                )
Carson Gee committed
255 256
                return msg
        user.delete()
257
        return _('Deleted user {username}').format(username=uname)
Carson Gee committed
258 259 260 261 262 263 264 265 266 267 268 269

    def make_common_context(self):
        """Returns the datatable used for this view"""

        self.datatable = {}

        self.datatable = dict(header=[_('Statistic'), _('Value')],
                              title=_('Site statistics'))
        self.datatable['data'] = [[_('Total number of users'),
                                   User.objects.all().count()]]

        self.msg += u'<h2>{0}</h2>'.format(
270 271
            _('Courses loaded in the modulestore')
        )
Carson Gee committed
272
        self.msg += u'<ol>'
273
        for course in self.get_courses():
Carson Gee committed
274
            self.msg += u'<li>{0} ({1})</li>'.format(
275
                escape(course.id.to_deprecated_string()), course.location.to_deprecated_string())
Carson Gee committed
276 277 278 279 280 281 282 283 284 285 286 287 288
        self.msg += u'</ol>'

    def get(self, request):

        if not request.user.is_staff:
            raise Http404
        self.make_common_context()

        context = {
            'datatable': self.datatable,
            'msg': self.msg,
            'djangopid': os.getpid(),
            'modeflag': {'users': 'active-section'},
289
            'edx_platform_version': getattr(settings, 'EDX_PLATFORM_VERSION_STRING', ''),
Carson Gee committed
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
        }
        return render_to_response(self.template_name, context)

    def post(self, request):
        """Handle various actions available on page"""

        if not request.user.is_staff:
            raise Http404

        self.make_common_context()

        action = request.POST.get('action', '')
        track.views.server_track(request, action, {}, page='user_sysdashboard')

        if action == 'download_users':
            header = [_('username'), _('email'), ]
            data = ([u.username, u.email] for u in
                    (User.objects.all().iterator()))
            return self.return_csv('users_{0}.csv'.format(
                request.META['SERVER_NAME']), header, data)
        elif action == 'repair_eamap':
            self.msg = u'<h4>{0}</h4><pre>{1}</pre>{2}'.format(
                _('Repair Results'),
                self.fix_external_auth_map_passwords(),
                self.msg)
            self.datatable = {}
        elif action == 'create_user':
            uname = request.POST.get('student_uname', '').strip()
            name = request.POST.get('student_fullname', '').strip()
            password = request.POST.get('student_password', '').strip()
            self.msg = u'<h4>{0}</h4><p>{1}</p><hr />{2}'.format(
                _('Create User Results'),
                self.create_user(uname, name, password), self.msg)
        elif action == 'del_user':
            uname = request.POST.get('student_uname', '').strip()
            self.msg = u'<h4>{0}</h4><p>{1}</p><hr />{2}'.format(
                _('Delete User Results'), self.delete_user(uname), self.msg)

        context = {
            'datatable': self.datatable,
            'msg': self.msg,
            'djangopid': os.getpid(),
            'modeflag': {'users': 'active-section'},
333
            'edx_platform_version': getattr(settings, 'EDX_PLATFORM_VERSION_STRING', ''),
Carson Gee committed
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
        }
        return render_to_response(self.template_name, context)


class Courses(SysadminDashboardView):
    """
    This manages adding/updating courses from git, deleting courses, and
    provides course listing information.
    """

    def git_info_for_course(self, cdir):
        """This pulls out some git info like the last commit"""

        cmd = ''
        gdir = settings.DATA_DIR / cdir
        info = ['', '', '']
350 351 352 353 354 355

        # Try the data dir, then try to find it in the git import dir
        if not gdir.exists():
            gdir = path(git_import.GIT_REPO_DIR) / cdir
            if not gdir.exists():
                return info
Carson Gee committed
356 357 358 359 360 361 362 363 364 365 366 367 368

        cmd = ['git', 'log', '-1',
               '--format=format:{ "commit": "%H", "author": "%an %ae", "date": "%ad"}', ]
        try:
            output_json = json.loads(subprocess.check_output(cmd, cwd=gdir))
            info = [output_json['commit'],
                    output_json['date'],
                    output_json['author'], ]
        except (ValueError, subprocess.CalledProcessError):
            pass

        return info

369
    def get_course_from_git(self, gitloc, branch):
Carson Gee committed
370 371 372 373 374 375 376 377
        """This downloads and runs the checks for importing a course in git"""

        if not (gitloc.endswith('.git') or gitloc.startswith('http:') or
                gitloc.startswith('https:') or gitloc.startswith('git:')):
            return _("The git repo location should end with '.git', "
                     "and be a valid url")

        if self.is_using_mongo:
378
            return self.import_mongo_course(gitloc, branch)
Carson Gee committed
379

380
        return self.import_xml_course(gitloc, branch)
Carson Gee committed
381

382
    def import_mongo_course(self, gitloc, branch):
Carson Gee committed
383 384 385 386 387 388 389
        """
        Imports course using management command and captures logging output
        at debug level for display in template
        """

        msg = u''

390
        log.debug('Adding course using git repo %s', gitloc)
Carson Gee committed
391 392 393 394 395 396 397

        # Grab logging output for debugging imports
        output = StringIO.StringIO()
        import_log_handler = logging.StreamHandler(output)
        import_log_handler.setLevel(logging.DEBUG)

        logger_names = ['xmodule.modulestore.xml_importer',
398 399 400
                        'dashboard.git_import',
                        'xmodule.modulestore.xml',
                        'xmodule.seq_module', ]
Carson Gee committed
401 402 403 404 405 406 407 408
        loggers = []

        for logger_name in logger_names:
            logger = logging.getLogger(logger_name)
            logger.setLevel(logging.DEBUG)
            logger.addHandler(import_log_handler)
            loggers.append(logger)

409 410
        error_msg = ''
        try:
411
            git_import.add_repo(gitloc, None, branch)
412 413
        except GitImportError as ex:
            error_msg = str(ex)
Carson Gee committed
414 415 416 417
        ret = output.getvalue()

        # Remove handler hijacks
        for logger in loggers:
418
            logger.setLevel(logging.NOTSET)
Carson Gee committed
419 420
            logger.removeHandler(import_log_handler)

421 422 423 424 425 426 427 428
        if error_msg:
            msg_header = error_msg
            color = 'red'
        else:
            msg_header = _('Added Course')
            color = 'blue'

        msg = u"<h4 style='color:{0}'>{1}</h4>".format(color, msg_header)
429
        msg += u"<pre>{0}</pre>".format(escape(ret))
Carson Gee committed
430 431
        return msg

432
    def import_xml_course(self, gitloc, branch):
Carson Gee committed
433 434 435 436
        """Imports a git course into the XMLModuleStore"""

        msg = u''
        if not getattr(settings, 'GIT_IMPORT_WITH_XMLMODULESTORE', False):
437 438 439
            # Translators: "GIT_IMPORT_WITH_XMLMODULESTORE" is a variable name.
            # "XMLModuleStore" and "MongoDB" are database systems. You should not
            # translate these names.
Carson Gee committed
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
            return _('Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is '
                     'not turned on, and it is generally not safe to import '
                     'into an XMLModuleStore with multithreaded. We '
                     'recommend you enable the MongoDB based module store '
                     'instead, unless this is a development environment.')
        cdir = (gitloc.rsplit('/', 1)[1])[:-4]
        gdir = settings.DATA_DIR / cdir
        if os.path.exists(gdir):
            msg += _("The course {0} already exists in the data directory! "
                     "(reloading anyway)").format(cdir)
            cmd = ['git', 'pull', ]
            cwd = gdir
        else:
            cmd = ['git', 'clone', gitloc, ]
            cwd = settings.DATA_DIR
        cwd = os.path.abspath(cwd)
        try:
457 458 459
            cmd_output = escape(
                subprocess.check_output(cmd, stderr=subprocess.STDOUT, cwd=cwd)
            )
460 461
        except subprocess.CalledProcessError as ex:
            log.exception('Git pull or clone output was: %r', ex.output)
462 463 464 465
            # Translators: unable to download the course content from
            # the source git repository. Clone occurs if this is brand
            # new, and pull is when it is being updated from the
            # source.
466
            return _('Unable to clone or pull repository. Please check '
467
                     'your url. Output was: {0!r}').format(ex.output)
Carson Gee committed
468 469 470

        msg += u'<pre>{0}</pre>'.format(cmd_output)
        if not os.path.exists(gdir):
471
            msg += _('Failed to clone repository to {directory_name}').format(directory_name=gdir)
Carson Gee committed
472
            return msg
473 474 475 476 477 478
        # Change branch if specified
        if branch:
            try:
                git_import.switch_branch(branch, gdir)
            except GitImportError as ex:
                return str(ex)
479 480 481 482
            # Translators: This is a git repository branch, which is a
            # specific version of a courses content
            msg += u'<p>{0}</p>'.format(
                _('Successfully switched to branch: '
483
                  '{branch_name}').format(branch_name=branch))
484

Carson Gee committed
485 486 487 488 489 490
        self.def_ms.try_load_course(os.path.abspath(gdir))
        errlog = self.def_ms.errored_courses.get(cdir, '')
        if errlog:
            msg += u'<hr width="50%"><pre>{0}</pre>'.format(escape(errlog))
        else:
            course = self.def_ms.courses[os.path.abspath(gdir)]
491 492 493
            msg += _('Loaded course {course_name}<br/>Errors:').format(
                course_name="{} {}".format(cdir, course.display_name)
            )
494
            errors = self.def_ms.get_course_errors(course.id)
Carson Gee committed
495 496 497 498 499 500 501 502
            if not errors:
                msg += u'None'
            else:
                msg += u'<ul>'
                for (summary, err) in errors:
                    msg += u'<li><pre>{0}: {1}</pre></li>'.format(escape(summary),
                                                                  escape(err))
                msg += u'</ul>'
503

Carson Gee committed
504 505 506 507 508 509 510
        return msg

    def make_datatable(self):
        """Creates course information datatable"""

        data = []

511
        for course in self.get_courses():
512
            gdir = course.id.course
513
            data.append([course.display_name, course.id.to_deprecated_string()]
Carson Gee committed
514 515
                        + self.git_info_for_course(gdir))

516 517 518 519 520
        return dict(header=[_('Course Name'),
                            _('Directory/ID'),
                            # Translators: "Git Commit" is a computer command; see http://gitref.org/basic/#commit
                            _('Git Commit'),
                            _('Last Change'),
Carson Gee committed
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
                            _('Last Editor')],
                    title=_('Information about all courses'),
                    data=data)

    def get(self, request):
        """Displays forms and course information"""

        if not request.user.is_staff:
            raise Http404

        context = {
            'datatable': self.make_datatable(),
            'msg': self.msg,
            'djangopid': os.getpid(),
            'modeflag': {'courses': 'active-section'},
536
            'edx_platform_version': getattr(settings, 'EDX_PLATFORM_VERSION_STRING', ''),
Carson Gee committed
537 538 539 540 541 542 543 544 545 546 547 548 549
        }
        return render_to_response(self.template_name, context)

    def post(self, request):
        """Handle all actions from courses view"""

        if not request.user.is_staff:
            raise Http404

        action = request.POST.get('action', '')
        track.views.server_track(request, action, {},
                                 page='courses_sysdashboard')

550
        courses = {course.id: course for course in self.get_courses()}
Carson Gee committed
551 552
        if action == 'add_course':
            gitloc = request.POST.get('repo_location', '').strip().replace(' ', '').replace(';', '')
553
            branch = request.POST.get('repo_branch', '').strip().replace(' ', '').replace(';', '')
554
            self.msg += self.get_course_from_git(gitloc, branch)
Carson Gee committed
555 556 557

        elif action == 'del_course':
            course_id = request.POST.get('course_id', '').strip()
558
            course_key = SlashSeparatedCourseKey.from_deprecated_string(course_id)
Carson Gee committed
559
            course_found = False
560
            if course_key in courses:
Carson Gee committed
561
                course_found = True
562
                course = courses[course_key]
Carson Gee committed
563 564
            else:
                try:
565
                    course = get_course_by_id(course_key)
Carson Gee committed
566 567
                    course_found = True
                except Exception, err:   # pylint: disable=broad-except
568 569 570 571 572 573
                    self.msg += _(
                        'Error - cannot get course with ID {0}<br/><pre>{1}</pre>'
                    ).format(
                        course_key,
                        escape(str(err))
                    )
Carson Gee committed
574

575
            is_xml_course = (modulestore().get_modulestore_type(course_key) == ModuleStoreEnum.Type.xml)
576
            if course_found and is_xml_course:
Carson Gee committed
577 578 579 580 581 582 583 584 585 586 587 588 589 590
                cdir = course.data_dir
                self.def_ms.courses.pop(cdir)

                # now move the directory (don't actually delete it)
                new_dir = "{course_dir}_deleted_{timestamp}".format(
                    course_dir=cdir,
                    timestamp=int(time.time())
                )
                os.rename(settings.DATA_DIR / cdir, settings.DATA_DIR / new_dir)

                self.msg += (u"<font color='red'>Deleted "
                             u"{0} = {1} ({2})</font>".format(
                                 cdir, course.id, course.display_name))

591
            elif course_found and not is_xml_course:
Carson Gee committed
592
                # delete course that is stored with mongodb backend
593
                self.def_ms.delete_course(course.id, request.user.id)
Carson Gee committed
594 595 596
                # don't delete user permission groups, though
                self.msg += \
                    u"<font color='red'>{0} {1} = {2} ({3})</font>".format(
Calen Pennington committed
597
                        _('Deleted'), course.location.to_deprecated_string(), course.id.to_deprecated_string(), course.display_name)
Carson Gee committed
598 599

        context = {
600
            'datatable': self.make_datatable(),
Carson Gee committed
601 602 603
            'msg': self.msg,
            'djangopid': os.getpid(),
            'modeflag': {'courses': 'active-section'},
604
            'edx_platform_version': getattr(settings, 'EDX_PLATFORM_VERSION_STRING', ''),
Carson Gee committed
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
        }
        return render_to_response(self.template_name, context)


class Staffing(SysadminDashboardView):
    """
    The status view provides a view of staffing and enrollment in
    courses that include an option to download the data as a csv.
    """

    def get(self, request):
        """Displays course Enrollment and staffing course statistics"""

        if not request.user.is_staff:
            raise Http404
        data = []

622
        for course in self.get_courses():  # pylint: disable=unused-variable
Carson Gee committed
623 624 625
            datum = [course.display_name, course.id]
            datum += [CourseEnrollment.objects.filter(
                course_id=course.id).count()]
626
            datum += [CourseStaffRole(course.id).users_with_role().count()]
Carson Gee committed
627
            datum += [','.join([x.username for x in CourseInstructorRole(
628
                course.id).users_with_role()])]
Carson Gee committed
629 630 631 632 633 634 635 636 637 638 639 640
            data.append(datum)

        datatable = dict(header=[_('Course Name'), _('course_id'),
                                 _('# enrolled'), _('# staff'),
                                 _('instructors')],
                         title=_('Enrollment information for all courses'),
                         data=data)
        context = {
            'datatable': datatable,
            'msg': self.msg,
            'djangopid': os.getpid(),
            'modeflag': {'staffing': 'active-section'},
641
            'edx_platform_version': getattr(settings, 'EDX_PLATFORM_VERSION_STRING', ''),
Carson Gee committed
642 643 644 645 646 647 648 649 650 651 652 653 654 655
        }
        return render_to_response(self.template_name, context)

    def post(self, request):
        """Handle all actions from staffing and enrollment view"""

        action = request.POST.get('action', '')
        track.views.server_track(request, action, {},
                                 page='staffing_sysdashboard')

        if action == 'get_staff_csv':
            data = []
            roles = [CourseInstructorRole, CourseStaffRole, ]

656
            for course in self.get_courses():  # pylint: disable=unused-variable
Carson Gee committed
657
                for role in roles:
658
                    for user in role(course.id).users_with_role():
Carson Gee committed
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
                        datum = [course.id, role, user.username, user.email,
                                 user.profile.name]
                        data.append(datum)
            header = [_('course_id'),
                      _('role'), _('username'),
                      _('email'), _('full_name'), ]
            return self.return_csv('staff_{0}.csv'.format(
                request.META['SERVER_NAME']), header, data)

        return self.get(request)


class GitLogs(TemplateView):
    """
    This provides a view into the import of courses from git repositories.
    It is convenient for allowing course teams to see what may be wrong with
    their xml
    """

    template_name = 'sysadmin_dashboard_gitlogs.html'

    @method_decorator(login_required)
    def get(self, request, *args, **kwargs):
        """Shows logs of imports that happened as a result of a git import"""

        course_id = kwargs.get('course_id')
685 686
        if course_id:
            course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id)
Carson Gee committed
687

688 689
        page_size = 10

Carson Gee committed
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
        # Set mongodb defaults even if it isn't defined in settings
        mongo_db = {
            'host': 'localhost',
            'user': '',
            'password': '',
            'db': 'xlog',
        }

        # Allow overrides
        if hasattr(settings, 'MONGODB_LOG'):
            for config_item in ['host', 'user', 'password', 'db', ]:
                mongo_db[config_item] = settings.MONGODB_LOG.get(
                    config_item, mongo_db[config_item])

        mongouri = 'mongodb://{user}:{password}@{host}/{db}'.format(**mongo_db)

        error_msg = ''

        try:
            if mongo_db['user'] and mongo_db['password']:
                mdb = mongoengine.connect(mongo_db['db'], host=mongouri)
            else:
                mdb = mongoengine.connect(mongo_db['db'], host=mongo_db['host'])
        except mongoengine.connection.ConnectionError:
714
            log.exception('Unable to connect to mongodb to save log, '
715
                          'please check MONGODB_LOG settings.')
Carson Gee committed
716 717 718 719 720

        if course_id is None:
            # Require staff if not going to specific course
            if not request.user.is_staff:
                raise Http404
721
            cilset = CourseImportLog.objects.order_by('-created')
Carson Gee committed
722 723 724 725
        else:
            try:
                course = get_course_by_id(course_id)
            except Exception:  # pylint: disable=broad-except
726
                log.info('Cannot find course %s', course_id)
727
                raise Http404
Carson Gee committed
728 729 730

            # Allow only course team, instructors, and staff
            if not (request.user.is_staff or
731 732
                    CourseInstructorRole(course.id).has_user(request.user) or
                    CourseStaffRole(course.id).has_user(request.user)):
Carson Gee committed
733
                raise Http404
734
            log.debug('course_id=%s', course_id)
735 736 737
            cilset = CourseImportLog.objects.filter(
                course_id=course_id
            ).order_by('-created')
738
            log.debug('cilset length=%s', len(cilset))
739 740 741 742 743 744 745 746

        # Paginate the query set
        paginator = Paginator(cilset, page_size)
        try:
            logs = paginator.page(request.GET.get('page'))
        except PageNotAnInteger:
            logs = paginator.page(1)
        except EmptyPage:
747 748 749 750
            # If the page is too high or low
            given_page = int(request.GET.get('page'))
            page = min(max(1, given_page), paginator.num_pages)
            logs = paginator.page(page)
751

Carson Gee committed
752
        mdb.disconnect()
753 754 755 756 757 758
        context = {
            'logs': logs,
            'course_id': course_id.to_deprecated_string() if course_id else None,
            'error_msg': error_msg,
            'page_size': page_size
        }
Carson Gee committed
759 760

        return render_to_response(self.template_name, context)