2013-11-01 17:06:20 -04:00
|
|
|
class UserUpdater
|
2014-01-20 17:58:02 -05:00
|
|
|
|
|
|
|
CATEGORY_IDS = {
|
2016-07-08 00:08:10 -04:00
|
|
|
watched_first_post_category_ids: :watching_first_post,
|
2014-01-20 17:58:02 -05:00
|
|
|
watched_category_ids: :watching,
|
|
|
|
tracked_category_ids: :tracking,
|
|
|
|
muted_category_ids: :muted
|
|
|
|
}
|
|
|
|
|
2016-07-07 22:58:18 -04:00
|
|
|
TAG_NAMES = {
|
2016-07-22 16:16:45 -04:00
|
|
|
watching_first_post_tags: :watching_first_post,
|
2016-07-07 22:58:18 -04:00
|
|
|
watched_tags: :watching,
|
|
|
|
tracked_tags: :tracking,
|
|
|
|
muted_tags: :muted
|
|
|
|
}
|
|
|
|
|
2016-02-16 23:46:19 -05:00
|
|
|
OPTION_ATTR = [
|
2015-02-26 10:50:01 -05:00
|
|
|
:email_always,
|
2016-02-16 23:46:19 -05:00
|
|
|
:mailing_list_mode,
|
2016-05-21 09:17:54 -04:00
|
|
|
:mailing_list_mode_frequency,
|
2016-02-16 23:46:19 -05:00
|
|
|
:email_digests,
|
2015-02-26 10:50:01 -05:00
|
|
|
:email_direct,
|
|
|
|
:email_private_messages,
|
|
|
|
:external_links_in_new_tab,
|
|
|
|
:enable_quoting,
|
|
|
|
:dynamic_favicon,
|
|
|
|
:disable_jump_reply,
|
2015-11-17 12:21:40 -05:00
|
|
|
:automatically_unpin_topics,
|
2016-03-02 15:26:27 -05:00
|
|
|
:digest_after_minutes,
|
2016-02-18 00:57:22 -05:00
|
|
|
:new_topic_duration_minutes,
|
2016-02-18 21:56:52 -05:00
|
|
|
:auto_track_topics_after_msecs,
|
2016-09-30 12:36:43 -04:00
|
|
|
:notification_level_when_replying,
|
2016-02-25 08:05:40 -05:00
|
|
|
:email_previous_replies,
|
2016-03-02 07:16:52 -05:00
|
|
|
:email_in_reply_to,
|
2016-03-17 17:35:23 -04:00
|
|
|
:like_notification_frequency,
|
2017-05-12 12:41:26 -04:00
|
|
|
:include_tl0_in_digests,
|
2017-10-06 03:56:58 -04:00
|
|
|
:theme_key,
|
|
|
|
:allow_private_messages,
|
2014-01-20 17:58:02 -05:00
|
|
|
]
|
|
|
|
|
2013-12-10 12:46:35 -05:00
|
|
|
def initialize(actor, user)
|
2013-11-01 17:06:20 -04:00
|
|
|
@user = user
|
2013-12-10 12:46:35 -05:00
|
|
|
@guardian = Guardian.new(actor)
|
2017-02-23 00:48:57 -05:00
|
|
|
@actor = actor
|
2013-11-01 17:06:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update(attributes = {})
|
2014-06-07 00:54:32 -04:00
|
|
|
user_profile = user.user_profile
|
2016-05-03 12:49:30 -04:00
|
|
|
user_profile.location = attributes.fetch(:location) { user_profile.location }
|
2015-05-19 19:39:58 -04:00
|
|
|
user_profile.dismissed_banner_key = attributes[:dismissed_banner_key] if attributes[:dismissed_banner_key].present?
|
2014-06-07 00:54:32 -04:00
|
|
|
user_profile.website = format_url(attributes.fetch(:website) { user_profile.website })
|
2016-08-01 01:29:28 -04:00
|
|
|
unless SiteSetting.enable_sso && SiteSetting.sso_overrides_bio
|
|
|
|
user_profile.bio_raw = attributes.fetch(:bio_raw) { user_profile.bio_raw }
|
|
|
|
end
|
2015-05-19 19:39:58 -04:00
|
|
|
user_profile.profile_background = attributes.fetch(:profile_background) { user_profile.profile_background }
|
|
|
|
user_profile.card_background = attributes.fetch(:card_background) { user_profile.card_background }
|
2014-01-02 01:58:49 -05:00
|
|
|
|
2017-03-01 03:12:17 -05:00
|
|
|
old_user_name = user.name.present? ? user.name : ""
|
|
|
|
user.name = attributes.fetch(:name) { user.name }
|
|
|
|
|
2014-02-07 22:24:10 -05:00
|
|
|
user.locale = attributes.fetch(:locale) { user.locale }
|
2016-11-15 03:10:20 -05:00
|
|
|
user.date_of_birth = attributes.fetch(:date_of_birth) { user.date_of_birth }
|
2014-01-02 01:58:49 -05:00
|
|
|
|
2013-11-01 17:06:20 -04:00
|
|
|
if guardian.can_grant_title?(user)
|
2014-01-20 17:58:02 -05:00
|
|
|
user.title = attributes.fetch(:title) { user.title }
|
2013-11-01 17:06:20 -04:00
|
|
|
end
|
|
|
|
|
2014-01-20 17:58:02 -05:00
|
|
|
CATEGORY_IDS.each do |attribute, level|
|
|
|
|
if ids = attributes[attribute]
|
|
|
|
CategoryUser.batch_set(user, level, ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-07 22:58:18 -04:00
|
|
|
TAG_NAMES.each do |attribute, level|
|
|
|
|
TagUser.batch_set(user, level, attributes[attribute])
|
|
|
|
end
|
|
|
|
|
2016-02-16 23:46:19 -05:00
|
|
|
save_options = false
|
2016-02-25 08:05:40 -05:00
|
|
|
|
2017-05-15 12:48:08 -04:00
|
|
|
# special handling for theme_key cause we need to bump a sequence number
|
|
|
|
if attributes.key?(:theme_key) && user.user_option.theme_key != attributes[:theme_key]
|
|
|
|
user.user_option.theme_key_seq += 1
|
|
|
|
end
|
|
|
|
|
2016-02-16 23:46:19 -05:00
|
|
|
OPTION_ATTR.each do |attribute|
|
2016-02-25 08:05:40 -05:00
|
|
|
if attributes.key?(attribute)
|
2016-02-16 23:46:19 -05:00
|
|
|
save_options = true
|
|
|
|
|
2016-11-28 09:52:35 -05:00
|
|
|
if [true, false].include?(user.user_option.send(attribute))
|
2016-02-16 23:46:19 -05:00
|
|
|
val = attributes[attribute].to_s == 'true'
|
|
|
|
user.user_option.send("#{attribute}=", val)
|
|
|
|
else
|
|
|
|
user.user_option.send("#{attribute}=", attributes[attribute])
|
|
|
|
end
|
2013-11-01 17:06:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-28 09:52:35 -05:00
|
|
|
# automatically disable digests when mailing_list_mode is enabled
|
|
|
|
user.user_option.email_digests = false if user.user_option.mailing_list_mode
|
|
|
|
|
2014-09-22 13:23:15 -04:00
|
|
|
fields = attributes[:custom_fields]
|
|
|
|
if fields.present?
|
2014-09-26 14:48:34 -04:00
|
|
|
user.custom_fields = user.custom_fields.merge(fields)
|
2014-06-11 01:50:37 -04:00
|
|
|
end
|
|
|
|
|
2017-03-16 02:44:09 -04:00
|
|
|
saved = nil
|
|
|
|
|
2014-05-27 13:54:04 -04:00
|
|
|
User.transaction do
|
2015-03-23 20:55:22 -04:00
|
|
|
if attributes.key?(:muted_usernames)
|
|
|
|
update_muted_users(attributes[:muted_usernames])
|
|
|
|
end
|
|
|
|
|
2017-10-22 23:16:14 -04:00
|
|
|
if (saved = (!save_options || user.user_option.save) && user_profile.save && user.save) &&
|
|
|
|
(attributes[:name].present? && old_user_name.casecmp(attributes.fetch(:name)) != 0) ||
|
|
|
|
(attributes[:name].blank? && old_user_name.present?)
|
|
|
|
|
|
|
|
StaffActionLogger.new(@actor).log_name_change(
|
|
|
|
user.id,
|
|
|
|
old_user_name,
|
|
|
|
attributes.fetch(:name) { '' }
|
|
|
|
)
|
2017-03-01 03:12:17 -05:00
|
|
|
end
|
2014-05-27 13:54:04 -04:00
|
|
|
end
|
2017-03-16 02:44:09 -04:00
|
|
|
|
2017-10-22 23:31:04 -04:00
|
|
|
DiscourseEvent.trigger(:user_updated, user) if saved
|
2017-03-16 02:44:09 -04:00
|
|
|
saved
|
2013-11-01 17:06:20 -04:00
|
|
|
end
|
|
|
|
|
2015-03-23 20:55:22 -04:00
|
|
|
def update_muted_users(usernames)
|
|
|
|
usernames ||= ""
|
|
|
|
desired_ids = User.where(username: usernames.split(",")).pluck(:id)
|
|
|
|
if desired_ids.empty?
|
|
|
|
MutedUser.where(user_id: user.id).destroy_all
|
|
|
|
else
|
2015-03-30 19:16:11 -04:00
|
|
|
MutedUser.where('user_id = ? AND muted_user_id not in (?)', user.id, desired_ids).destroy_all
|
2015-03-23 20:55:22 -04:00
|
|
|
|
|
|
|
# SQL is easier here than figuring out how to do the same in AR
|
|
|
|
MutedUser.exec_sql("INSERT into muted_users(user_id, muted_user_id, created_at, updated_at)
|
|
|
|
SELECT :user_id, id, :now, :now
|
|
|
|
FROM users
|
|
|
|
WHERE
|
|
|
|
id in (:desired_ids) AND
|
|
|
|
id NOT IN (
|
|
|
|
SELECT muted_user_id
|
|
|
|
FROM muted_users
|
|
|
|
WHERE user_id = :user_id
|
|
|
|
)",
|
|
|
|
now: Time.now, user_id: user.id, desired_ids: desired_ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-30 19:16:11 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :user, :guardian
|
|
|
|
|
2013-11-01 17:06:20 -04:00
|
|
|
def format_url(website)
|
2016-02-05 15:49:48 -05:00
|
|
|
return nil if website.blank?
|
2015-05-19 19:39:58 -04:00
|
|
|
website =~ /^http/ ? website : "http://#{website}"
|
2013-11-01 17:06:20 -04:00
|
|
|
end
|
|
|
|
end
|