2013-11-02 05:06:20 +08:00
|
|
|
class UserUpdater
|
2014-01-21 06:58:02 +08:00
|
|
|
|
|
|
|
CATEGORY_IDS = {
|
|
|
|
watched_category_ids: :watching,
|
|
|
|
tracked_category_ids: :tracking,
|
|
|
|
muted_category_ids: :muted
|
|
|
|
}
|
|
|
|
|
2015-02-26 23:50:01 +08:00
|
|
|
USER_ATTR = [
|
|
|
|
:email_digests,
|
|
|
|
:email_always,
|
|
|
|
:email_direct,
|
|
|
|
:email_private_messages,
|
|
|
|
:external_links_in_new_tab,
|
|
|
|
:enable_quoting,
|
|
|
|
:dynamic_favicon,
|
|
|
|
:mailing_list_mode,
|
|
|
|
:disable_jump_reply,
|
|
|
|
:edit_history_public
|
2014-01-21 06:58:02 +08:00
|
|
|
]
|
|
|
|
|
2013-12-11 01:46:35 +08:00
|
|
|
def initialize(actor, user)
|
2013-11-02 05:06:20 +08:00
|
|
|
@user = user
|
2013-12-11 01:46:35 +08:00
|
|
|
@guardian = Guardian.new(actor)
|
2013-11-02 05:06:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def update(attributes = {})
|
2014-06-07 12:54:32 +08:00
|
|
|
user_profile = user.user_profile
|
|
|
|
user_profile.website = format_url(attributes.fetch(:website) { user_profile.website })
|
2014-06-10 13:19:08 +08:00
|
|
|
user_profile.bio_raw = attributes.fetch(:bio_raw) { user_profile.bio_raw }
|
2014-01-02 14:58:49 +08:00
|
|
|
|
2014-01-21 06:58:02 +08:00
|
|
|
user.name = attributes.fetch(:name) { user.name }
|
2014-02-08 11:24:10 +08:00
|
|
|
user.locale = attributes.fetch(:locale) { user.locale }
|
2014-01-21 06:58:02 +08:00
|
|
|
user.digest_after_days = attributes.fetch(:digest_after_days) { user.digest_after_days }
|
2014-01-02 14:58:49 +08:00
|
|
|
|
2013-11-02 05:06:20 +08:00
|
|
|
if attributes[:auto_track_topics_after_msecs]
|
2014-01-02 14:58:49 +08:00
|
|
|
user.auto_track_topics_after_msecs = attributes[:auto_track_topics_after_msecs].to_i
|
2013-11-02 05:06:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
if attributes[:new_topic_duration_minutes]
|
|
|
|
user.new_topic_duration_minutes = attributes[:new_topic_duration_minutes].to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
if guardian.can_grant_title?(user)
|
2014-01-21 06:58:02 +08:00
|
|
|
user.title = attributes.fetch(:title) { user.title }
|
2013-11-02 05:06:20 +08:00
|
|
|
end
|
|
|
|
|
2014-01-21 06:58:02 +08:00
|
|
|
CATEGORY_IDS.each do |attribute, level|
|
|
|
|
if ids = attributes[attribute]
|
|
|
|
CategoryUser.batch_set(user, level, ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
USER_ATTR.each do |attribute|
|
2013-11-02 05:06:20 +08:00
|
|
|
if attributes[attribute].present?
|
2014-08-15 02:20:52 +08:00
|
|
|
user.send("#{attribute}=", attributes[attribute] == 'true')
|
2013-11-02 05:06:20 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-07 13:11:19 +08:00
|
|
|
user_profile.location = attributes[:location]
|
|
|
|
user_profile.dismissed_banner_key = attributes[:dismissed_banner_key] if attributes[:dismissed_banner_key].present?
|
2014-05-28 01:54:04 +08:00
|
|
|
|
2014-09-23 01:23:15 +08:00
|
|
|
fields = attributes[:custom_fields]
|
|
|
|
if fields.present?
|
2014-09-27 02:48:34 +08:00
|
|
|
user.custom_fields = user.custom_fields.merge(fields)
|
2014-06-11 13:50:37 +08:00
|
|
|
end
|
|
|
|
|
2014-05-28 01:54:04 +08:00
|
|
|
User.transaction do
|
2015-03-24 08:55:22 +08:00
|
|
|
|
|
|
|
if attributes.key?(:muted_usernames)
|
|
|
|
update_muted_users(attributes[:muted_usernames])
|
|
|
|
end
|
|
|
|
|
2014-09-09 03:17:31 +08:00
|
|
|
user_profile.save && user.save
|
2014-05-28 01:54:04 +08:00
|
|
|
end
|
2013-11-02 05:06:20 +08:00
|
|
|
end
|
|
|
|
|
2015-03-24 08:55:22 +08: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-31 07:16:11 +08:00
|
|
|
MutedUser.where('user_id = ? AND muted_user_id not in (?)', user.id, desired_ids).destroy_all
|
2015-03-24 08:55:22 +08: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-31 07:16:11 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :user, :guardian
|
|
|
|
|
2013-11-02 05:06:20 +08:00
|
|
|
def format_url(website)
|
|
|
|
if website =~ /^http/
|
|
|
|
website
|
|
|
|
else
|
|
|
|
"http://#{website}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|