Newer
Older
# -*- coding: utf-8 -*-
from __future__ import division
__copyright__ = "Copyright (C) 2014 Andreas Kloeckner"
__license__ = """
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from django.utils.translation import gettext_lazy as _
render, get_object_or_404, redirect, resolve_url)
from django.contrib import messages
import django.forms as forms
from django.core.exceptions import (PermissionDenied, SuspiciousOperation,
ObjectDoesNotExist, MultipleObjectsReturned)
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Submit, Layout, Div, Button
from django.contrib.auth import (get_user_model, REDIRECT_FIELD_NAME,
from django.contrib.auth.forms import \
AuthenticationForm as AuthenticationFormBase
from django.contrib.auth.decorators import user_passes_test, login_required
from django.urls import reverse
from django.contrib.auth.validators import ASCIIUsernameValidator
from django.utils.http import url_has_allowed_host_and_scheme
from django.template.response import TemplateResponse
from django.views.decorators.debug import sensitive_post_parameters
from django.views.decorators.cache import never_cache
from django.views.decorators.csrf import csrf_protect
Andreas Klöckner
committed
from django import http # noqa
from django.dispatch import receiver
from djangosaml2.signals import pre_user_save as saml2_pre_user_save
from bootstrap3_datetime.widgets import DateTimePicker
Andreas Klöckner
committed
from course.constants import (
Andreas Klöckner
committed
participation_status,
participation_permission as pperm,
from course.models import Participation, ParticipationRole, AuthenticationToken # noqa
from accounts.models import User
from course.utils import render_course_page, course_view
from relate.utils import StyledForm, StyledModelForm, string_concat, get_site_name
from django_select2.forms import ModelSelect2Widget
from typing import Any, Text, Optional, Dict, Union, Tuple, TYPE_CHECKING # noqa
if TYPE_CHECKING:
from django.db.models import query # noqa
def get_pre_impersonation_user(request):
is_impersonating = hasattr(
request, "relate_impersonate_original_user")
if is_impersonating:
return request.relate_impersonate_original_user
return None
def get_impersonable_user_qset(impersonator):
# type: (User) -> query.QuerySet
return User.objects.exclude(pk=impersonator.pk)
Andreas Klöckner
committed
my_participations = Participation.objects.filter(
Dong Zhuang
committed
user=impersonator,
status=participation_status.active)
impersonable_user_qset = User.objects.none()
Andreas Klöckner
committed
for part in my_participations:
# Notice: if a TA is not allowed to view participants'
# profile in one course, then he/she is not able to impersonate
# any user, even in courses he/she is allow to view profiles
# of all users.
if part.has_permission(pperm.view_participant_masked_profile):
Dong Zhuang
committed
argument
for perm, argument in part.permissions()
if perm == pperm.impersonate_role]
Dong Zhuang
committed
q = (Participation.objects
.filter(course=part.course,
status=participation_status.active,
roles__identifier__in=impersonable_roles)
.select_related("user"))
# There can be duplicate records. Removing duplicate records is needed
# only when rendering ImpersonateForm
impersonable_user_qset = (
impersonable_user_qset
| User.objects.filter(pk__in=q.values_list("user__pk", flat=True))
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
if "impersonate_id" in request.session:
imp_id = request.session["impersonate_id"]
impersonee = None
try:
if imp_id is not None:
impersonee = cast(User, get_user_model().objects.get(id=imp_id))
except ObjectDoesNotExist:
pass
if impersonee is not None:
if request.user.is_superuser:
may_impersonate = True
qset = get_impersonable_user_qset(cast(User, request.user))
if qset.filter(pk=cast(User, impersonee).pk).count():
if may_impersonate:
request.relate_impersonate_original_user = request.user
request.user = impersonee
else:
messages.add_message(request, messages.ERROR,
_("Error while impersonating."))
return self.get_response(request)
class UserSearchWidget(ModelSelect2Widget):
model = User
search_fields = [
"username__icontains",
"email__icontains",
"first_name__icontains",
"last_name__icontains",
]
def label_from_instance(self, u):
if u.first_name and u.last_name:
return (
(
"%(full_name)s (%(username)s - %(email)s)"
% {
"full_name": u.get_full_name(),
"email": u.email,
"username": u.username
}))
else:
# for users with "None" fullname
return (
(
"%(username)s (%(email)s)"
% {
"email": u.email,
"username": u.username
}))
class ImpersonateForm(StyledForm):
def __init__(self, *args, **kwargs):
# type:(*Any, **Any) -> None
Dong Zhuang
committed
qset = kwargs.pop("impersonable_qset")
super(ImpersonateForm, self).__init__(*args, **kwargs)
self.fields["user"] = forms.ModelChoiceField(
Dong Zhuang
committed
queryset=qset,
widget=UserSearchWidget(queryset=qset),
Loading
Loading full blame...