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 typing import cast, Any, Optional, Text # noqa
from django.utils.translation import ugettext_lazy as _, string_concat
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)
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Submit, Layout, Div
from django.contrib.auth import (get_user_model, REDIRECT_FIELD_NAME,
from django.contrib.auth.forms import \
AuthenticationForm as AuthenticationFormBase
from django.contrib.sites.shortcuts import get_current_site
Dong Zhuang
committed
from django.contrib.auth.decorators import user_passes_test
from django.urls import reverse
from django.utils.http import is_safe_url
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 djangosaml2.backends import Saml2Backend as Saml2BackendBase
Andreas Klöckner
committed
from course.constants import (
Andreas Klöckner
committed
participation_status,
participation_permission as pperm,
Andreas Klöckner
committed
from course.models import Participation, Course # noqa
from accounts.models import User
from django_select2.forms import ModelSelect2Widget
def may_impersonate(impersonator, impersonee):
# type: (User, User) -> bool
Andreas Klöckner
committed
my_participations = Participation.objects.filter(
Andreas Klöckner
committed
status=participation_status.active)
Andreas Klöckner
committed
for part in my_participations:
impersonable_roles = (
argument
for perm, argument in part.permissions()
if perm == pperm.impersonate_role)
course=part.course,
status=participation_status.active,
role__in=impersonable_roles,
user=impersonee).count():
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
if 'impersonate_id' in request.session:
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 may_impersonate(cast(User, request.user), impersonee):
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):
return (
(
# Translators: information displayed when selecting
# userfor impersonating. Customize how the name is
# shown, but leave email first to retain usability
# of form sorted by last name.
"%(full_name)s (%(username)s - %(email)s)"
% {
"full_name": u.get_full_name(),
"email": u.email,
"username": u.username
}))
class ImpersonateForm(StyledForm):
def __init__(self, *args, **kwargs):
# type:(*Any, **Any) -> None
super(ImpersonateForm, self).__init__(*args, **kwargs)
self.fields["user"] = forms.ModelChoiceField(
queryset=User.objects.order_by("last_name"),
widget=UserSearchWidget(),
self.fields["add_impersonation_header"] = forms.BooleanField(
required=False,
initial=True,
label=_("Add impersonation header"),
help_text=_("Add impersonation header to every page rendered "
"while impersonating, as a reminder that impersonation "
"is in progress."))
self.helper.add_input(Submit("submit", _("Impersonate")))
# type: (http.HttpRequest) -> http.HttpResponse
if hasattr(request, "relate_impersonate_original_user"):
messages.add_message(request, messages.ERROR,
return redirect("relate-stop_impersonating")
form = ImpersonateForm(request.POST)
impersonee = form.cleaned_data["user"]
if may_impersonate(cast(User, request.user), cast(User, impersonee)):
request.session['impersonate_id'] = impersonee.id
request.session['relate_impersonation_header'] = form.cleaned_data[
"add_impersonation_header"]
# Because we'll likely no longer have access to this page.
return redirect("relate-home")
else:
messages.add_message(request, messages.ERROR,
_("Impersonating that user is not allowed."))
form = ImpersonateForm()
Loading
Loading full blame...