2017-11-28 10:47:29 +01:00
|
|
|
import smtplib
|
2017-09-04 00:25:45 +02:00
|
|
|
from typing import List # noqa
|
|
|
|
|
2017-11-28 10:47:29 +01:00
|
|
|
from django.conf import settings
|
2015-02-12 22:42:54 +01:00
|
|
|
from django.contrib.auth import login as auth_login
|
|
|
|
from django.contrib.auth import logout as auth_logout
|
2017-02-10 14:51:44 +01:00
|
|
|
from django.contrib.auth import update_session_auth_hash
|
2015-06-16 10:37:23 +02:00
|
|
|
from django.contrib.auth.forms import AuthenticationForm
|
2017-04-13 16:19:20 +02:00
|
|
|
from django.contrib.auth.password_validation import validate_password
|
2017-11-28 10:47:29 +01:00
|
|
|
from django.core import mail
|
2017-04-13 16:19:20 +02:00
|
|
|
from django.core.exceptions import ValidationError as DjangoValidationError
|
2017-04-19 09:28:21 +02:00
|
|
|
from django.db import transaction
|
2016-08-29 17:05:06 +02:00
|
|
|
from django.utils.encoding import force_text
|
2015-06-18 22:39:58 +02:00
|
|
|
from django.utils.translation import ugettext as _
|
2014-10-11 14:34:49 +02:00
|
|
|
|
2015-09-16 00:55:27 +02:00
|
|
|
from ..core.config import config
|
2017-02-21 09:34:24 +01:00
|
|
|
from ..core.signals import permission_change
|
2017-01-26 15:34:24 +01:00
|
|
|
from ..utils.auth import anonymous_is_enabled, has_perm
|
2017-04-19 09:28:21 +02:00
|
|
|
from ..utils.autoupdate import (
|
|
|
|
inform_changed_data,
|
|
|
|
inform_data_collection_element_list,
|
|
|
|
)
|
2018-05-16 07:51:40 +02:00
|
|
|
from ..utils.cache import restricted_data_cache
|
2017-09-04 00:25:45 +02:00
|
|
|
from ..utils.collection import CollectionElement
|
2015-11-06 15:44:27 +01:00
|
|
|
from ..utils.rest_api import (
|
|
|
|
ModelViewSet,
|
|
|
|
Response,
|
2016-01-25 22:35:23 +01:00
|
|
|
SimpleMetadata,
|
2015-11-06 15:44:27 +01:00
|
|
|
ValidationError,
|
|
|
|
detail_route,
|
2017-04-19 09:28:21 +02:00
|
|
|
list_route,
|
2015-11-06 15:44:27 +01:00
|
|
|
status,
|
|
|
|
)
|
2016-10-01 14:26:28 +02:00
|
|
|
from ..utils.views import APIView
|
2017-05-23 14:07:06 +02:00
|
|
|
from .access_permissions import (
|
|
|
|
GroupAccessPermissions,
|
|
|
|
PersonalNoteAccessPermissions,
|
|
|
|
UserAccessPermissions,
|
|
|
|
)
|
|
|
|
from .models import Group, PersonalNote, User
|
2017-02-21 09:34:24 +01:00
|
|
|
from .serializers import GroupSerializer, PermissionRelatedField
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-07-07 15:26:00 +02:00
|
|
|
|
2015-07-01 23:18:48 +02:00
|
|
|
# Viewsets for the REST API
|
2012-08-10 19:49:46 +02:00
|
|
|
|
2015-02-12 18:48:14 +01:00
|
|
|
class UserViewSet(ModelViewSet):
|
2015-01-06 00:11:22 +01:00
|
|
|
"""
|
2015-07-01 23:18:48 +02:00
|
|
|
API endpoint for users.
|
|
|
|
|
2015-08-31 14:07:24 +02:00
|
|
|
There are the following views: metadata, list, retrieve, create,
|
|
|
|
partial_update, update, destroy and reset_password.
|
2015-01-06 00:11:22 +01:00
|
|
|
"""
|
2016-02-11 22:58:32 +01:00
|
|
|
access_permissions = UserAccessPermissions()
|
2015-01-06 00:11:22 +01:00
|
|
|
queryset = User.objects.all()
|
|
|
|
|
2015-07-01 23:18:48 +02:00
|
|
|
def check_view_permissions(self):
|
2015-01-06 00:11:22 +01:00
|
|
|
"""
|
2015-07-01 23:18:48 +02:00
|
|
|
Returns True if the user has required permissions.
|
2015-01-06 00:11:22 +01:00
|
|
|
"""
|
2016-09-17 22:26:23 +02:00
|
|
|
if self.action in ('list', 'retrieve'):
|
|
|
|
result = self.get_access_permissions().check_permissions(self.request.user)
|
2017-02-10 14:51:44 +01:00
|
|
|
elif self.action == 'metadata':
|
2017-01-26 15:34:24 +01:00
|
|
|
result = has_perm(self.request.user, 'users.can_see_name')
|
2017-02-10 14:51:44 +01:00
|
|
|
elif self.action in ('update', 'partial_update'):
|
2018-07-09 23:22:26 +02:00
|
|
|
result = self.request.user.is_authenticated
|
2017-11-28 10:47:29 +01:00
|
|
|
elif self.action in ('create', 'destroy', 'reset_password', 'mass_import', 'mass_invite_email'):
|
2017-01-26 15:34:24 +01:00
|
|
|
result = (has_perm(self.request.user, 'users.can_see_name') and
|
|
|
|
has_perm(self.request.user, 'users.can_see_extra_data') and
|
|
|
|
has_perm(self.request.user, 'users.can_manage'))
|
2015-07-01 23:18:48 +02:00
|
|
|
else:
|
|
|
|
result = False
|
|
|
|
return result
|
2015-01-06 00:11:22 +01:00
|
|
|
|
2015-09-06 10:29:23 +02:00
|
|
|
def update(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Customized view endpoint to update an user.
|
|
|
|
|
|
|
|
Checks also whether the requesting user can update the user. He
|
|
|
|
needs at least the permissions 'users.can_see_name' (see
|
|
|
|
self.check_view_permissions()). Also it is evaluated whether he
|
|
|
|
wants to update himself or is manager.
|
|
|
|
"""
|
2018-05-16 07:51:40 +02:00
|
|
|
user = self.get_object()
|
2017-02-24 15:04:12 +01:00
|
|
|
# Check permissions.
|
|
|
|
if (has_perm(self.request.user, 'users.can_see_name') and
|
|
|
|
has_perm(request.user, 'users.can_see_extra_data') and
|
2017-01-26 15:34:24 +01:00
|
|
|
has_perm(request.user, 'users.can_manage')):
|
2017-02-24 15:04:12 +01:00
|
|
|
# The user has all permissions so he may update every user.
|
2018-05-16 07:51:40 +02:00
|
|
|
if request.data.get('is_active') is False and user == request.user:
|
2017-02-24 15:04:12 +01:00
|
|
|
# But a user can not deactivate himself.
|
2016-01-09 11:59:34 +01:00
|
|
|
raise ValidationError({'detail': _('You can not deactivate yourself.')})
|
2015-09-06 10:29:23 +02:00
|
|
|
else:
|
2017-02-24 15:04:12 +01:00
|
|
|
# The user does not have all permissions so he may only update himself.
|
2016-08-31 16:53:02 +02:00
|
|
|
if str(request.user.pk) != self.kwargs['pk']:
|
2015-09-06 10:29:23 +02:00
|
|
|
self.permission_denied(request)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
# This is a hack to make request.data mutable. Otherwise fields can not be deleted.
|
|
|
|
request.data._mutable = True
|
2017-02-24 15:04:12 +01:00
|
|
|
# Remove fields that the user is not allowed to change.
|
|
|
|
# The list() is required because we want to use del inside the loop.
|
|
|
|
for key in list(request.data.keys()):
|
|
|
|
if key not in ('username', 'about_me'):
|
|
|
|
del request.data[key]
|
2016-08-31 16:53:02 +02:00
|
|
|
response = super().update(request, *args, **kwargs)
|
2018-05-16 07:51:40 +02:00
|
|
|
# Maybe some group assignments have changed. Better delete the restricted user cache
|
|
|
|
restricted_data_cache.del_user(user.id)
|
2015-09-06 10:29:23 +02:00
|
|
|
return response
|
|
|
|
|
2016-01-09 11:59:34 +01:00
|
|
|
def destroy(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Customized view endpoint to delete an user.
|
|
|
|
|
|
|
|
Ensures that no one can delete himself.
|
|
|
|
"""
|
|
|
|
instance = self.get_object()
|
|
|
|
if instance == self.request.user:
|
|
|
|
raise ValidationError({'detail': _('You can not delete yourself.')})
|
|
|
|
self.perform_destroy(instance)
|
|
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
2015-06-18 22:39:58 +02:00
|
|
|
@detail_route(methods=['post'])
|
|
|
|
def reset_password(self, request, pk=None):
|
|
|
|
"""
|
2016-01-10 13:47:59 +01:00
|
|
|
View to reset the password using the requested password.
|
2015-06-18 22:39:58 +02:00
|
|
|
"""
|
|
|
|
user = self.get_object()
|
2016-08-25 11:40:37 +02:00
|
|
|
if isinstance(request.data.get('password'), str):
|
2017-04-13 16:19:20 +02:00
|
|
|
try:
|
|
|
|
validate_password(request.data.get('password'), user=request.user)
|
|
|
|
except DjangoValidationError as errors:
|
|
|
|
raise ValidationError({'detail': ' '.join(errors)})
|
2016-08-25 11:40:37 +02:00
|
|
|
user.set_password(request.data.get('password'))
|
|
|
|
user.save()
|
|
|
|
return Response({'detail': _('Password successfully reset.')})
|
|
|
|
else:
|
|
|
|
raise ValidationError({'detail': 'Password has to be a string.'})
|
2015-06-18 22:39:58 +02:00
|
|
|
|
2017-04-19 09:28:21 +02:00
|
|
|
@list_route(methods=['post'])
|
|
|
|
@transaction.atomic
|
|
|
|
def mass_import(self, request):
|
|
|
|
"""
|
|
|
|
API endpoint to create multiple users at once.
|
|
|
|
|
|
|
|
Example: {"users": [{"first_name": "Max"}, {"first_name": "Maxi"}]}
|
|
|
|
"""
|
|
|
|
users = request.data.get('users')
|
|
|
|
if not isinstance(users, list):
|
|
|
|
raise ValidationError({'detail': 'Users has to be a list.'})
|
|
|
|
|
|
|
|
created_users = []
|
|
|
|
# List of all track ids of all imported users. The track ids are just used in the client.
|
|
|
|
imported_track_ids = []
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
serializer = self.get_serializer(data=user)
|
|
|
|
try:
|
|
|
|
serializer.is_valid(raise_exception=True)
|
|
|
|
except ValidationError:
|
|
|
|
# Skip invalid users.
|
|
|
|
continue
|
|
|
|
data = serializer.prepare_password(serializer.data)
|
|
|
|
groups = data['groups_id']
|
|
|
|
del data['groups_id']
|
|
|
|
|
|
|
|
db_user = User(**data)
|
|
|
|
db_user.save(skip_autoupdate=True)
|
|
|
|
db_user.groups.add(*groups)
|
|
|
|
created_users.append(db_user)
|
|
|
|
if 'importTrackId' in user:
|
|
|
|
imported_track_ids.append(user['importTrackId'])
|
|
|
|
|
|
|
|
# Now infom all clients and send a response
|
|
|
|
inform_changed_data(created_users)
|
|
|
|
return Response({
|
|
|
|
'detail': _('{number} users successfully imported.').format(number=len(created_users)),
|
|
|
|
'importedTrackIds': imported_track_ids})
|
|
|
|
|
2017-11-28 10:47:29 +01:00
|
|
|
@list_route(methods=['post'])
|
|
|
|
def mass_invite_email(self, request):
|
|
|
|
"""
|
|
|
|
Endpoint to send invitation emails to all given users (by id). Returns the
|
|
|
|
number of emails send.
|
|
|
|
"""
|
|
|
|
user_ids = request.data.get('user_ids')
|
|
|
|
if not isinstance(user_ids, list):
|
|
|
|
raise ValidationError({'detail': 'User_ids has to be a list.'})
|
|
|
|
for user_id in user_ids:
|
|
|
|
if not isinstance(user_id, int):
|
|
|
|
raise ValidationError({'detail': 'User_id has to be an int.'})
|
2018-02-02 12:29:18 +01:00
|
|
|
# Get subject and body from the response. Do not use the config values
|
|
|
|
# because they might not be translated.
|
|
|
|
subject = request.data.get('subject')
|
|
|
|
message = request.data.get('message')
|
|
|
|
if not isinstance(subject, str):
|
|
|
|
raise ValidationError({'detail': 'Subject has to be a string.'})
|
|
|
|
if not isinstance(message, str):
|
|
|
|
raise ValidationError({'detail': 'Message has to be a string.'})
|
2017-11-28 10:47:29 +01:00
|
|
|
users = User.objects.filter(pk__in=user_ids)
|
|
|
|
|
|
|
|
# Sending Emails. Keep track, which users gets an email.
|
|
|
|
# First, try to open the connection to the smtp server.
|
|
|
|
connection = mail.get_connection(fail_silently=False)
|
|
|
|
try:
|
|
|
|
connection.open()
|
|
|
|
except ConnectionRefusedError:
|
|
|
|
raise ValidationError({'detail': 'Cannot connect to SMTP server on {}:{}'.format(
|
|
|
|
settings.EMAIL_HOST,
|
|
|
|
settings.EMAIL_PORT)})
|
|
|
|
except smtplib.SMTPException as e:
|
|
|
|
raise ValidationError({'detail': '{}: {}'.format(e.errno, e.strerror)})
|
|
|
|
|
|
|
|
success_users = []
|
2018-01-09 11:01:51 +01:00
|
|
|
user_pks_without_email = []
|
2017-11-28 10:47:29 +01:00
|
|
|
try:
|
|
|
|
for user in users:
|
2018-01-09 11:01:51 +01:00
|
|
|
if user.email:
|
2018-02-02 12:29:18 +01:00
|
|
|
if user.send_invitation_email(connection, subject, message, skip_autoupdate=True):
|
2018-01-09 11:01:51 +01:00
|
|
|
success_users.append(user)
|
|
|
|
else:
|
|
|
|
user_pks_without_email.append(user.pk)
|
2017-11-28 10:47:29 +01:00
|
|
|
except DjangoValidationError as e:
|
|
|
|
raise ValidationError(e.message_dict)
|
|
|
|
|
|
|
|
connection.close()
|
|
|
|
inform_changed_data(success_users)
|
2018-01-09 11:01:51 +01:00
|
|
|
return Response({
|
|
|
|
'count': len(success_users),
|
|
|
|
'no_email_ids': user_pks_without_email})
|
2017-11-28 10:47:29 +01:00
|
|
|
|
2015-01-06 00:11:22 +01:00
|
|
|
|
2016-01-25 22:35:23 +01:00
|
|
|
class GroupViewSetMetadata(SimpleMetadata):
|
|
|
|
"""
|
|
|
|
Customized metadata class for OPTIONS requests.
|
|
|
|
"""
|
|
|
|
def get_field_info(self, field):
|
|
|
|
"""
|
|
|
|
Customized method to change the display name of permission choices.
|
|
|
|
"""
|
|
|
|
field_info = super().get_field_info(field)
|
|
|
|
if field.field_name == 'permissions':
|
2016-08-29 17:05:06 +02:00
|
|
|
field_info['choices'] = [
|
|
|
|
{
|
|
|
|
'value': choice_value,
|
|
|
|
'display_name': force_text(choice_name, strings_only=True).split(' | ')[2]
|
|
|
|
}
|
|
|
|
for choice_value, choice_name in field.choices.items()
|
|
|
|
]
|
2016-01-25 22:35:23 +01:00
|
|
|
return field_info
|
|
|
|
|
|
|
|
|
2015-02-12 18:48:14 +01:00
|
|
|
class GroupViewSet(ModelViewSet):
|
2015-02-04 00:08:38 +01:00
|
|
|
"""
|
2015-07-01 23:18:48 +02:00
|
|
|
API endpoint for groups.
|
|
|
|
|
2015-08-31 14:07:24 +02:00
|
|
|
There are the following views: metadata, list, retrieve, create,
|
|
|
|
partial_update, update and destroy.
|
2015-02-04 00:08:38 +01:00
|
|
|
"""
|
2016-01-25 22:35:23 +01:00
|
|
|
metadata_class = GroupViewSetMetadata
|
2016-12-17 09:30:20 +01:00
|
|
|
queryset = Group.objects.all()
|
2015-02-04 00:08:38 +01:00
|
|
|
serializer_class = GroupSerializer
|
2016-12-17 09:30:20 +01:00
|
|
|
access_permissions = GroupAccessPermissions()
|
2015-02-04 00:08:38 +01:00
|
|
|
|
2015-07-01 23:18:48 +02:00
|
|
|
def check_view_permissions(self):
|
2015-02-04 00:08:38 +01:00
|
|
|
"""
|
2015-07-01 23:18:48 +02:00
|
|
|
Returns True if the user has required permissions.
|
2015-02-04 00:08:38 +01:00
|
|
|
"""
|
2016-12-17 09:30:20 +01:00
|
|
|
if self.action in ('list', 'retrieve'):
|
|
|
|
result = self.get_access_permissions().check_permissions(self.request.user)
|
|
|
|
elif self.action == 'metadata':
|
|
|
|
# Every authenticated user can see the metadata.
|
|
|
|
# Anonymous users can do so if they are enabled.
|
2018-07-09 23:22:26 +02:00
|
|
|
result = self.request.user.is_authenticated or anonymous_is_enabled()
|
2015-07-01 23:18:48 +02:00
|
|
|
elif self.action in ('create', 'partial_update', 'update', 'destroy'):
|
|
|
|
# Users with all app permissions can edit groups.
|
2017-01-26 15:34:24 +01:00
|
|
|
result = (has_perm(self.request.user, 'users.can_see_name') and
|
|
|
|
has_perm(self.request.user, 'users.can_see_extra_data') and
|
|
|
|
has_perm(self.request.user, 'users.can_manage'))
|
2015-07-01 23:18:48 +02:00
|
|
|
else:
|
|
|
|
# Deny request in any other case.
|
|
|
|
result = False
|
|
|
|
return result
|
2015-02-04 00:08:38 +01:00
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
def update(self, request, *args, **kwargs):
|
2015-02-17 00:45:53 +01:00
|
|
|
"""
|
2017-03-06 16:34:20 +01:00
|
|
|
Customized endpoint to update a group. Send the signal
|
|
|
|
'permission_change' if group permissions change.
|
2015-02-17 00:45:53 +01:00
|
|
|
"""
|
2017-03-06 16:34:20 +01:00
|
|
|
group = self.get_object()
|
2015-02-17 00:45:53 +01:00
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
# Collect old and new (given) permissions to get the difference.
|
|
|
|
old_permissions = list(group.permissions.all()) # Force evaluation so the perms don't change anymore.
|
2017-02-21 09:34:24 +01:00
|
|
|
permission_names = request.data['permissions']
|
|
|
|
if isinstance(permission_names, str):
|
|
|
|
permission_names = [permission_names]
|
|
|
|
given_permissions = [
|
2017-03-06 16:34:20 +01:00
|
|
|
PermissionRelatedField(read_only=True).to_internal_value(data=perm) for perm in permission_names]
|
2017-02-21 09:34:24 +01:00
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
# Run super to update the group.
|
2017-02-21 09:34:24 +01:00
|
|
|
response = super().update(request, *args, **kwargs)
|
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
# Check status code and send 'permission_change' signal.
|
2017-02-21 09:34:24 +01:00
|
|
|
if response.status_code == 200:
|
2017-03-06 16:34:20 +01:00
|
|
|
|
2018-05-16 07:51:40 +02:00
|
|
|
# Delete the user chaches of all affected users
|
|
|
|
for user in group.user_set.all():
|
|
|
|
restricted_data_cache.del_user(user.id)
|
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
def diff(full, part):
|
|
|
|
"""
|
|
|
|
This helper function calculates the difference of two lists:
|
|
|
|
The result is a list of all elements of 'full' that are
|
|
|
|
not in 'part'.
|
|
|
|
"""
|
|
|
|
part = set(part)
|
|
|
|
return [item for item in full if item not in part]
|
|
|
|
|
2017-02-21 09:34:24 +01:00
|
|
|
new_permissions = diff(given_permissions, old_permissions)
|
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
# Some permissions are added.
|
|
|
|
if len(new_permissions) > 0:
|
2017-09-04 00:25:45 +02:00
|
|
|
collection_elements = [] # type: List[CollectionElement]
|
2017-03-06 16:34:20 +01:00
|
|
|
signal_results = permission_change.send(None, permissions=new_permissions, action='added')
|
|
|
|
for receiver, signal_collections in signal_results:
|
|
|
|
for collection in signal_collections:
|
|
|
|
collection_elements.extend(collection.element_generator())
|
|
|
|
inform_data_collection_element_list(collection_elements)
|
|
|
|
|
|
|
|
# TODO: Some permissions are deleted.
|
2017-02-21 09:34:24 +01:00
|
|
|
|
|
|
|
return response
|
|
|
|
|
2017-03-06 16:34:20 +01:00
|
|
|
def destroy(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Protects builtin groups 'Default' (pk=1) from being deleted.
|
|
|
|
"""
|
|
|
|
instance = self.get_object()
|
|
|
|
if instance.pk == 1:
|
|
|
|
self.permission_denied(request)
|
2018-05-16 13:03:37 +02:00
|
|
|
# The list() is required to evaluate the query
|
|
|
|
affected_users_ids = list(instance.user_set.values_list('pk', flat=True))
|
|
|
|
|
|
|
|
# Delete the group
|
2017-03-06 16:34:20 +01:00
|
|
|
self.perform_destroy(instance)
|
2018-05-16 13:03:37 +02:00
|
|
|
|
|
|
|
# Get the updated user data from the DB.
|
|
|
|
affected_users = User.objects.filter(pk__in=affected_users_ids)
|
|
|
|
inform_changed_data(affected_users)
|
2017-03-06 16:34:20 +01:00
|
|
|
return Response(status=status.HTTP_204_NO_CONTENT)
|
|
|
|
|
2015-02-04 00:08:38 +01:00
|
|
|
|
2017-05-23 14:07:06 +02:00
|
|
|
class PersonalNoteViewSet(ModelViewSet):
|
|
|
|
"""
|
|
|
|
API endpoint for personal notes.
|
|
|
|
|
|
|
|
There are the following views: metadata, list, retrieve, create,
|
|
|
|
partial_update, update, and destroy.
|
|
|
|
"""
|
|
|
|
access_permissions = PersonalNoteAccessPermissions()
|
|
|
|
queryset = PersonalNote.objects.all()
|
|
|
|
|
|
|
|
def check_view_permissions(self):
|
|
|
|
"""
|
|
|
|
Returns True if the user has required permissions.
|
|
|
|
"""
|
|
|
|
if self.action in ('list', 'retrieve'):
|
|
|
|
result = self.get_access_permissions().check_permissions(self.request.user)
|
|
|
|
elif self.action in ('metadata', 'create', 'partial_update', 'update', 'destroy'):
|
|
|
|
# Every authenticated user can see metadata and create personal
|
|
|
|
# notes for himself and can manipulate only his own personal notes.
|
|
|
|
# See self.perform_create(), self.update() and self.destroy().
|
2018-07-09 23:22:26 +02:00
|
|
|
result = self.request.user.is_authenticated
|
2017-05-23 14:07:06 +02:00
|
|
|
else:
|
|
|
|
result = False
|
|
|
|
return result
|
|
|
|
|
|
|
|
def perform_create(self, serializer):
|
|
|
|
"""
|
|
|
|
Customized method to inject the request.user into serializer's save
|
|
|
|
method so that the request.user can be saved into the model field.
|
|
|
|
"""
|
|
|
|
serializer.save(user=self.request.user)
|
|
|
|
|
|
|
|
def update(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Customized method to ensure that every user can change only his own
|
|
|
|
personal notes.
|
|
|
|
"""
|
|
|
|
if self.get_object().user != self.request.user:
|
|
|
|
self.permission_denied(request)
|
|
|
|
return super().update(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def destroy(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Customized method to ensure that every user can delete only his own
|
|
|
|
personal notes.
|
|
|
|
"""
|
|
|
|
if self.get_object().user != self.request.user:
|
|
|
|
self.permission_denied(request)
|
|
|
|
return super().destroy(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
2015-07-01 23:18:48 +02:00
|
|
|
# Special API views
|
2015-02-12 22:42:54 +01:00
|
|
|
|
|
|
|
class UserLoginView(APIView):
|
|
|
|
"""
|
2015-09-16 00:55:27 +02:00
|
|
|
Login the user.
|
2015-02-12 22:42:54 +01:00
|
|
|
"""
|
2016-01-09 01:10:37 +01:00
|
|
|
http_method_names = ['get', 'post']
|
2015-02-12 22:42:54 +01:00
|
|
|
|
|
|
|
def post(self, *args, **kwargs):
|
2016-12-19 14:14:46 +01:00
|
|
|
# If the client tells that cookies are disabled, do not continue as guest (if enabled)
|
|
|
|
if not self.request.data.get('cookies', True):
|
|
|
|
raise ValidationError({'detail': _('Cookies have to be enabled to use OpenSlides.')})
|
2015-02-12 22:42:54 +01:00
|
|
|
form = AuthenticationForm(self.request, data=self.request.data)
|
2015-12-11 16:28:56 +01:00
|
|
|
if not form.is_valid():
|
|
|
|
raise ValidationError({'detail': _('Username or password is not correct.')})
|
|
|
|
self.user = form.get_user()
|
|
|
|
auth_login(self.request, self.user)
|
2015-02-12 22:42:54 +01:00
|
|
|
return super().post(*args, **kwargs)
|
|
|
|
|
|
|
|
def get_context_data(self, **context):
|
2016-01-09 01:10:37 +01:00
|
|
|
"""
|
|
|
|
Adds some context.
|
|
|
|
|
|
|
|
For GET requests adds login info text to context. This info text is
|
|
|
|
taken from the config. If this value is empty, a special text is used
|
|
|
|
if the admin user has the password 'admin'.
|
|
|
|
|
|
|
|
For POST requests adds the id of the current user to the context.
|
|
|
|
"""
|
|
|
|
if self.request.method == 'GET':
|
|
|
|
if config['general_login_info_text']:
|
|
|
|
context['info_text'] = config['general_login_info_text']
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
user = User.objects.get(username='admin')
|
|
|
|
except User.DoesNotExist:
|
|
|
|
context['info_text'] = ''
|
|
|
|
else:
|
|
|
|
if user.check_password('admin'):
|
|
|
|
context['info_text'] = _(
|
|
|
|
'Installation was successfully. Use {username} and '
|
|
|
|
'{password} for first login. Important: Please change '
|
2016-01-30 10:04:20 +01:00
|
|
|
'your password!').format(
|
2016-01-09 01:10:37 +01:00
|
|
|
username='<strong>admin</strong>',
|
2016-01-30 10:04:20 +01:00
|
|
|
password='<strong>admin</strong>')
|
2016-01-09 01:10:37 +01:00
|
|
|
else:
|
|
|
|
context['info_text'] = ''
|
|
|
|
else:
|
|
|
|
# self.request.method == 'POST'
|
|
|
|
context['user_id'] = self.user.pk
|
2017-01-14 13:02:26 +01:00
|
|
|
user_collection = CollectionElement.from_instance(self.user)
|
|
|
|
context['user'] = user_collection.as_dict_for_user(self.user)
|
2015-02-12 22:42:54 +01:00
|
|
|
return super().get_context_data(**context)
|
|
|
|
|
|
|
|
|
|
|
|
class UserLogoutView(APIView):
|
|
|
|
"""
|
2015-09-16 00:55:27 +02:00
|
|
|
Logout the user.
|
2015-02-12 22:42:54 +01:00
|
|
|
"""
|
|
|
|
http_method_names = ['post']
|
|
|
|
|
|
|
|
def post(self, *args, **kwargs):
|
2018-07-09 23:22:26 +02:00
|
|
|
if not self.request.user.is_authenticated:
|
2015-12-11 16:28:56 +01:00
|
|
|
raise ValidationError({'detail': _('You are not authenticated.')})
|
2015-02-12 22:42:54 +01:00
|
|
|
auth_logout(self.request)
|
|
|
|
return super().post(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class WhoAmIView(APIView):
|
|
|
|
"""
|
2015-07-01 23:18:48 +02:00
|
|
|
Returns the id of the requesting user.
|
2015-02-12 22:42:54 +01:00
|
|
|
"""
|
|
|
|
http_method_names = ['get']
|
|
|
|
|
|
|
|
def get_context_data(self, **context):
|
|
|
|
"""
|
2015-12-10 00:02:16 +01:00
|
|
|
Appends the user id to the context. Uses None for the anonymous
|
|
|
|
user. Appends also a flag if guest users are enabled in the config.
|
2017-01-14 09:14:42 +01:00
|
|
|
Appends also the serialized user if available.
|
2015-02-12 22:42:54 +01:00
|
|
|
"""
|
2017-01-14 09:14:42 +01:00
|
|
|
user_id = self.request.user.pk
|
2017-01-14 13:02:26 +01:00
|
|
|
if user_id is not None:
|
2017-01-14 09:14:42 +01:00
|
|
|
user_collection = CollectionElement.from_instance(self.request.user)
|
|
|
|
user_data = user_collection.as_dict_for_user(self.request.user)
|
|
|
|
else:
|
|
|
|
user_data = None
|
2015-02-12 22:42:54 +01:00
|
|
|
return super().get_context_data(
|
2017-01-14 09:14:42 +01:00
|
|
|
user_id=user_id,
|
2017-01-15 13:33:54 +01:00
|
|
|
guest_enabled=anonymous_is_enabled(),
|
2017-01-14 09:14:42 +01:00
|
|
|
user=user_data,
|
2015-02-12 22:42:54 +01:00
|
|
|
**context)
|
2015-07-01 23:18:48 +02:00
|
|
|
|
|
|
|
|
2015-11-06 15:44:27 +01:00
|
|
|
class SetPasswordView(APIView):
|
|
|
|
"""
|
|
|
|
Users can set a new password for themselves.
|
|
|
|
"""
|
|
|
|
http_method_names = ['post']
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
user = request.user
|
|
|
|
if user.check_password(request.data['old_password']):
|
2017-04-13 16:19:20 +02:00
|
|
|
try:
|
|
|
|
validate_password(request.data.get('new_password'), user=user)
|
|
|
|
except DjangoValidationError as errors:
|
|
|
|
raise ValidationError({'detail': ' '.join(errors)})
|
2015-11-06 15:44:27 +01:00
|
|
|
user.set_password(request.data['new_password'])
|
|
|
|
user.save()
|
2017-02-10 14:51:44 +01:00
|
|
|
update_session_auth_hash(request, user)
|
2015-11-06 15:44:27 +01:00
|
|
|
else:
|
2015-12-11 16:28:56 +01:00
|
|
|
raise ValidationError({'detail': _('Old password does not match.')})
|
2015-11-06 15:44:27 +01:00
|
|
|
return super().post(request, *args, **kwargs)
|