2017-07-10 06:10:34 +02:00
|
|
|
from typing import Optional, Any, Dict, Text
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2016-05-25 15:02:02 +02:00
|
|
|
from django.utils.translation import ugettext as _
|
2015-11-23 17:09:21 +01:00
|
|
|
from django.conf import settings
|
2016-11-17 08:56:01 +01:00
|
|
|
from django.contrib.auth import authenticate, update_session_auth_hash
|
2016-06-05 02:15:26 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-01-20 12:27:38 +01:00
|
|
|
from django.shortcuts import redirect, render
|
|
|
|
from django.urls import reverse
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2017-11-04 00:59:22 +01:00
|
|
|
from zerver.decorator import has_request_variables, \
|
2017-04-16 22:10:56 +02:00
|
|
|
zulip_login_required, REQ, human_users_only
|
2015-11-23 17:09:21 +01:00
|
|
|
from zerver.lib.actions import do_change_password, \
|
2017-05-23 03:19:21 +02:00
|
|
|
do_change_enter_sends, do_change_notification_settings, \
|
2016-09-19 22:55:18 +02:00
|
|
|
do_change_default_desktop_notifications, do_change_autoscroll_forever, \
|
2017-04-07 00:05:55 +02:00
|
|
|
do_regenerate_api_key, do_change_avatar_fields, do_set_user_display_setting, \
|
2017-05-23 03:19:21 +02:00
|
|
|
validate_email, do_change_user_email, do_start_email_change_process
|
2015-11-23 17:09:21 +01:00
|
|
|
from zerver.lib.avatar import avatar_url
|
2017-07-11 06:13:23 +02:00
|
|
|
from zerver.lib.send_email import send_email, FromAddress
|
2016-08-05 22:28:25 +02:00
|
|
|
from zerver.lib.i18n import get_available_language_codes
|
2015-11-23 17:09:21 +01:00
|
|
|
from zerver.lib.response import json_success, json_error
|
|
|
|
from zerver.lib.upload import upload_avatar_image
|
2016-06-23 11:32:45 +02:00
|
|
|
from zerver.lib.validator import check_bool, check_string
|
2016-07-31 10:02:42 +02:00
|
|
|
from zerver.lib.request import JsonableError
|
2017-02-08 04:39:55 +01:00
|
|
|
from zerver.lib.users import check_change_full_name
|
2017-03-14 10:53:09 +01:00
|
|
|
from zerver.lib.timezone import get_all_timezones
|
2017-01-20 12:27:38 +01:00
|
|
|
from zerver.models import UserProfile, Realm, name_changes_disabled, \
|
|
|
|
EmailChangeStatus
|
2017-07-22 00:27:45 +02:00
|
|
|
from confirmation.models import get_object_from_key, render_confirmation_key_error, \
|
2017-11-01 21:07:39 +01:00
|
|
|
ConfirmationKeyException, Confirmation
|
2017-01-20 12:27:38 +01:00
|
|
|
|
2017-03-04 09:16:48 +01:00
|
|
|
@zulip_login_required
|
2017-01-20 12:27:38 +01:00
|
|
|
def confirm_email_change(request, confirmation_key):
|
|
|
|
# type: (HttpRequest, str) -> HttpResponse
|
2017-03-04 06:39:45 +01:00
|
|
|
user_profile = request.user
|
|
|
|
if user_profile.realm.email_changes_disabled:
|
2017-03-05 02:18:42 +01:00
|
|
|
raise JsonableError(_("Email address changes are disabled in this organization."))
|
2017-03-04 06:39:45 +01:00
|
|
|
|
2017-07-22 00:27:45 +02:00
|
|
|
try:
|
2017-11-07 20:45:11 +01:00
|
|
|
email_change_object = get_object_from_key(confirmation_key, Confirmation.EMAIL_CHANGE)
|
2017-07-22 00:27:45 +02:00
|
|
|
except ConfirmationKeyException as exception:
|
|
|
|
return render_confirmation_key_error(request, exception)
|
2017-01-20 12:27:38 +01:00
|
|
|
|
2017-11-07 20:45:11 +01:00
|
|
|
new_email = email_change_object.new_email
|
|
|
|
old_email = email_change_object.old_email
|
|
|
|
user_profile = email_change_object.user_profile
|
2017-01-20 12:27:38 +01:00
|
|
|
|
2017-11-07 20:45:11 +01:00
|
|
|
do_change_user_email(user_profile, new_email)
|
2017-07-22 00:27:45 +02:00
|
|
|
|
2017-11-07 20:45:11 +01:00
|
|
|
context = {'realm': user_profile.realm, 'new_email': new_email}
|
2017-07-22 00:27:45 +02:00
|
|
|
send_email('zerver/emails/notify_change_in_email', to_email=old_email,
|
|
|
|
from_name="Zulip Account Security", from_address=FromAddress.SUPPORT,
|
|
|
|
context=context)
|
2017-01-20 12:27:38 +01:00
|
|
|
|
|
|
|
ctx = {
|
|
|
|
'new_email': new_email,
|
|
|
|
'old_email': old_email,
|
|
|
|
}
|
|
|
|
return render(request, 'confirmation/confirm_email_change.html', context=ctx)
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2017-04-16 22:10:56 +02:00
|
|
|
@human_users_only
|
2015-11-23 17:09:21 +01:00
|
|
|
@has_request_variables
|
|
|
|
def json_change_ui_settings(request, user_profile,
|
|
|
|
autoscroll_forever=REQ(validator=check_bool,
|
|
|
|
default=None),
|
|
|
|
default_desktop_notifications=REQ(validator=check_bool,
|
|
|
|
default=None)):
|
2016-06-05 02:15:26 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Optional[bool], Optional[bool]) -> HttpResponse
|
2015-11-23 17:09:21 +01:00
|
|
|
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
if autoscroll_forever is not None and \
|
|
|
|
user_profile.autoscroll_forever != autoscroll_forever:
|
|
|
|
do_change_autoscroll_forever(user_profile, autoscroll_forever)
|
|
|
|
result['autoscroll_forever'] = autoscroll_forever
|
|
|
|
|
|
|
|
if default_desktop_notifications is not None and \
|
|
|
|
user_profile.default_desktop_notifications != default_desktop_notifications:
|
|
|
|
do_change_default_desktop_notifications(user_profile, default_desktop_notifications)
|
|
|
|
result['default_desktop_notifications'] = default_desktop_notifications
|
|
|
|
|
|
|
|
return json_success(result)
|
|
|
|
|
2017-07-31 20:44:52 +02:00
|
|
|
@human_users_only
|
2015-11-23 17:09:21 +01:00
|
|
|
@has_request_variables
|
|
|
|
def json_change_settings(request, user_profile,
|
2016-07-23 22:13:53 +02:00
|
|
|
full_name=REQ(default=""),
|
2017-01-20 12:27:38 +01:00
|
|
|
email=REQ(default=""),
|
2015-11-23 17:09:21 +01:00
|
|
|
old_password=REQ(default=""),
|
|
|
|
new_password=REQ(default=""),
|
|
|
|
confirm_password=REQ(default="")):
|
2017-01-20 12:27:38 +01:00
|
|
|
# type: (HttpRequest, UserProfile, Text, Text, Text, Text, Text) -> HttpResponse
|
|
|
|
if not (full_name or new_password or email):
|
2016-07-23 22:22:25 +02:00
|
|
|
return json_error(_("No new data supplied"))
|
|
|
|
|
2015-11-23 17:09:21 +01:00
|
|
|
if new_password != "" or confirm_password != "":
|
|
|
|
if new_password != confirm_password:
|
2016-05-25 15:02:02 +02:00
|
|
|
return json_error(_("New password must match confirmation password!"))
|
2015-11-23 17:09:21 +01:00
|
|
|
if not authenticate(username=user_profile.email, password=old_password):
|
2016-05-25 15:02:02 +02:00
|
|
|
return json_error(_("Wrong password!"))
|
2015-11-23 17:09:21 +01:00
|
|
|
do_change_password(user_profile, new_password)
|
2016-11-17 08:56:01 +01:00
|
|
|
# In Django 1.10, password changes invalidates sessions, see
|
|
|
|
# https://docs.djangoproject.com/en/1.10/topics/auth/default/#session-invalidation-on-password-change
|
2017-07-05 11:47:21 +02:00
|
|
|
# for details. To avoid this logging the user out of their own
|
2016-11-17 08:56:01 +01:00
|
|
|
# session (which would provide a confusing UX at best), we
|
|
|
|
# update the session hash here.
|
|
|
|
update_session_auth_hash(request, user_profile)
|
2016-12-16 11:38:21 +01:00
|
|
|
# We also save the session to the DB immediately to mitigate
|
|
|
|
# race conditions. In theory, there is still a race condition
|
|
|
|
# and to completely avoid it we will have to use some kind of
|
|
|
|
# mutex lock in `django.contrib.auth.get_user` where session
|
|
|
|
# is verified. To make that lock work we will have to control
|
|
|
|
# the AuthenticationMiddleware which is currently controlled
|
|
|
|
# by Django,
|
|
|
|
request.session.save()
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2017-05-22 21:07:35 +02:00
|
|
|
result = {} # type: Dict[str, Any]
|
2017-01-20 12:27:38 +01:00
|
|
|
new_email = email.strip()
|
|
|
|
if user_profile.email != email and new_email != '':
|
2017-03-04 06:39:45 +01:00
|
|
|
if user_profile.realm.email_changes_disabled:
|
2017-03-05 02:18:42 +01:00
|
|
|
return json_error(_("Email address changes are disabled in this organization."))
|
2017-01-20 12:27:38 +01:00
|
|
|
error, skipped = validate_email(user_profile, new_email)
|
2017-09-25 07:18:42 +02:00
|
|
|
if error:
|
|
|
|
return json_error(error)
|
|
|
|
if skipped:
|
|
|
|
return json_error(skipped)
|
2017-01-20 12:27:38 +01:00
|
|
|
|
|
|
|
do_start_email_change_process(user_profile, new_email)
|
2017-10-02 23:27:22 +02:00
|
|
|
result['account_email'] = _("Check your email for a confirmation link. ")
|
2017-01-20 12:27:38 +01:00
|
|
|
|
2015-11-23 17:09:21 +01:00
|
|
|
if user_profile.full_name != full_name and full_name.strip() != "":
|
|
|
|
if name_changes_disabled(user_profile.realm):
|
|
|
|
# Failingly silently is fine -- they can't do it through the UI, so
|
|
|
|
# they'd have to be trying to break the rules.
|
|
|
|
pass
|
|
|
|
else:
|
2017-02-08 04:39:55 +01:00
|
|
|
# Note that check_change_full_name strips the passed name automatically
|
2017-04-07 07:28:28 +02:00
|
|
|
result['full_name'] = check_change_full_name(user_profile, full_name, user_profile)
|
2015-11-23 17:09:21 +01:00
|
|
|
|
|
|
|
return json_success(result)
|
|
|
|
|
2017-04-16 22:10:56 +02:00
|
|
|
@human_users_only
|
2016-06-23 11:32:45 +02:00
|
|
|
@has_request_variables
|
2016-12-22 15:57:06 +01:00
|
|
|
def update_display_settings_backend(request, user_profile,
|
2016-12-21 05:15:55 +01:00
|
|
|
twenty_four_hour_time=REQ(validator=check_bool, default=None),
|
2017-07-07 18:15:10 +02:00
|
|
|
high_contrast_mode=REQ(validator=check_bool, default=None),
|
2016-12-24 11:44:41 +01:00
|
|
|
default_language=REQ(validator=check_string, default=None),
|
2017-03-02 08:30:53 +01:00
|
|
|
left_side_userlist=REQ(validator=check_bool, default=None),
|
2017-03-14 10:53:09 +01:00
|
|
|
emoji_alt_code=REQ(validator=check_bool, default=None),
|
2017-04-02 21:05:33 +02:00
|
|
|
emojiset=REQ(validator=check_string, default=None),
|
2017-03-14 10:53:09 +01:00
|
|
|
timezone=REQ(validator=check_string, default=None)):
|
2017-07-07 18:15:10 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Optional[bool], Optional[bool], Optional[str], Optional[bool], Optional[bool], Optional[Text], Optional[Text]) -> HttpResponse
|
2016-12-22 15:58:18 +01:00
|
|
|
if (default_language is not None and
|
|
|
|
default_language not in get_available_language_codes()):
|
|
|
|
raise JsonableError(_("Invalid language '%s'" % (default_language,)))
|
|
|
|
|
2017-03-14 10:53:09 +01:00
|
|
|
if (timezone is not None and
|
|
|
|
timezone not in get_all_timezones()):
|
|
|
|
raise JsonableError(_("Invalid timezone '%s'" % (timezone,)))
|
|
|
|
|
2017-04-02 21:05:33 +02:00
|
|
|
if (emojiset is not None and
|
|
|
|
emojiset not in UserProfile.emojiset_choices()):
|
|
|
|
raise JsonableError(_("Invalid emojiset '%s'" % (emojiset,)))
|
|
|
|
|
2017-05-22 21:07:35 +02:00
|
|
|
request_settings = {k: v for k, v in list(locals().items()) if k in user_profile.property_types}
|
2017-05-17 22:16:38 +02:00
|
|
|
result = {} # type: Dict[str, Any]
|
2017-05-22 21:07:35 +02:00
|
|
|
for k, v in list(request_settings.items()):
|
|
|
|
if v is not None and getattr(user_profile, k) != v:
|
|
|
|
do_set_user_display_setting(user_profile, k, v)
|
|
|
|
result[k] = v
|
2017-03-14 10:53:09 +01:00
|
|
|
|
2016-06-23 11:32:45 +02:00
|
|
|
return json_success(result)
|
|
|
|
|
2017-04-16 22:10:56 +02:00
|
|
|
@human_users_only
|
2015-11-23 17:09:21 +01:00
|
|
|
@has_request_variables
|
|
|
|
def json_change_notify_settings(request, user_profile,
|
|
|
|
enable_stream_desktop_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
2017-08-17 16:55:32 +02:00
|
|
|
enable_stream_push_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
2015-11-23 17:09:21 +01:00
|
|
|
enable_stream_sounds=REQ(validator=check_bool,
|
|
|
|
default=None),
|
|
|
|
enable_desktop_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
|
|
|
enable_sounds=REQ(validator=check_bool,
|
|
|
|
default=None),
|
|
|
|
enable_offline_email_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
|
|
|
enable_offline_push_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
2016-09-19 22:55:18 +02:00
|
|
|
enable_online_push_notifications=REQ(validator=check_bool,
|
|
|
|
default=None),
|
2015-11-23 17:09:21 +01:00
|
|
|
enable_digest_emails=REQ(validator=check_bool,
|
2016-12-07 17:29:12 +01:00
|
|
|
default=None),
|
|
|
|
pm_content_in_desktop_notifications=REQ(validator=check_bool,
|
2016-12-30 23:31:04 +01:00
|
|
|
default=None)):
|
2017-08-17 16:55:32 +02:00
|
|
|
# type: (HttpRequest, UserProfile, Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool], Optional[bool]) -> HttpResponse
|
2015-11-23 17:09:21 +01:00
|
|
|
result = {}
|
|
|
|
|
|
|
|
# Stream notification settings.
|
|
|
|
|
2017-05-23 03:19:21 +02:00
|
|
|
req_vars = {k: v for k, v in list(locals().items()) if k in user_profile.notification_setting_types}
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2017-05-23 03:19:21 +02:00
|
|
|
for k, v in list(req_vars.items()):
|
|
|
|
if v is not None and getattr(user_profile, k) != v:
|
|
|
|
do_change_notification_settings(user_profile, k, v)
|
|
|
|
result[k] = v
|
2016-12-07 17:29:12 +01:00
|
|
|
|
2015-11-23 17:09:21 +01:00
|
|
|
return json_success(result)
|
|
|
|
|
2016-12-21 21:29:46 +01:00
|
|
|
def set_avatar_backend(request, user_profile):
|
2016-06-05 02:15:26 +02:00
|
|
|
# type: (HttpRequest, UserProfile) -> HttpResponse
|
2015-11-23 17:09:21 +01:00
|
|
|
if len(request.FILES) != 1:
|
2016-05-25 15:02:02 +02:00
|
|
|
return json_error(_("You must upload exactly one avatar."))
|
2015-11-23 17:09:21 +01:00
|
|
|
|
2016-01-25 01:27:18 +01:00
|
|
|
user_file = list(request.FILES.values())[0]
|
2017-03-06 06:22:28 +01:00
|
|
|
if ((settings.MAX_AVATAR_FILE_SIZE * 1024 * 1024) < user_file.size):
|
|
|
|
return json_error(_("Uploaded file is larger than the allowed limit of %s MB") % (
|
|
|
|
settings.MAX_AVATAR_FILE_SIZE))
|
2017-03-02 16:21:46 +01:00
|
|
|
upload_avatar_image(user_file, user_profile, user_profile)
|
2017-01-28 19:05:20 +01:00
|
|
|
do_change_avatar_fields(user_profile, UserProfile.AVATAR_FROM_USER)
|
2015-11-23 17:09:21 +01:00
|
|
|
user_avatar_url = avatar_url(user_profile)
|
|
|
|
|
|
|
|
json_result = dict(
|
|
|
|
avatar_url = user_avatar_url
|
|
|
|
)
|
|
|
|
return json_success(json_result)
|
|
|
|
|
2016-12-21 18:34:03 +01:00
|
|
|
def delete_avatar_backend(request, user_profile):
|
|
|
|
# type: (HttpRequest, UserProfile) -> HttpResponse
|
2017-01-28 19:05:20 +01:00
|
|
|
do_change_avatar_fields(user_profile, UserProfile.AVATAR_FROM_GRAVATAR)
|
2016-12-21 18:34:03 +01:00
|
|
|
gravatar_url = avatar_url(user_profile)
|
|
|
|
|
|
|
|
json_result = dict(
|
|
|
|
avatar_url = gravatar_url
|
|
|
|
)
|
|
|
|
return json_success(json_result)
|
|
|
|
|
2017-10-28 00:16:13 +02:00
|
|
|
# We don't use @human_users_only here, because there are use cases for
|
|
|
|
# a bot regenerating its own API key.
|
2015-11-23 17:09:21 +01:00
|
|
|
@has_request_variables
|
|
|
|
def regenerate_api_key(request, user_profile):
|
2016-06-05 02:15:26 +02:00
|
|
|
# type: (HttpRequest, UserProfile) -> HttpResponse
|
2017-04-06 12:27:58 +02:00
|
|
|
do_regenerate_api_key(user_profile, user_profile)
|
2015-11-23 17:09:21 +01:00
|
|
|
json_result = dict(
|
|
|
|
api_key = user_profile.api_key
|
|
|
|
)
|
|
|
|
return json_success(json_result)
|
|
|
|
|
2017-10-28 00:16:13 +02:00
|
|
|
@human_users_only
|
2015-11-23 17:09:21 +01:00
|
|
|
@has_request_variables
|
2016-04-08 21:39:00 +02:00
|
|
|
def change_enter_sends(request, user_profile,
|
2016-06-16 09:40:25 +02:00
|
|
|
enter_sends=REQ(validator=check_bool)):
|
2016-06-05 02:15:26 +02:00
|
|
|
# type: (HttpRequest, UserProfile, bool) -> HttpResponse
|
2015-11-23 17:09:21 +01:00
|
|
|
do_change_enter_sends(user_profile, enter_sends)
|
|
|
|
return json_success()
|