2013-07-02 14:42:30 -04:00
|
|
|
class UserBlocker
|
|
|
|
|
|
|
|
def initialize(user, by_user=nil, opts={})
|
|
|
|
@user, @by_user, @opts = user, by_user, opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.block(user, by_user=nil, opts={})
|
|
|
|
UserBlocker.new(user, by_user, opts).block
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.unblock(user, by_user=nil, opts={})
|
|
|
|
UserBlocker.new(user, by_user, opts).unblock
|
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2016-01-14 15:20:26 -05:00
|
|
|
hide_posts unless @opts[:keep_posts]
|
2013-08-02 10:55:02 -04:00
|
|
|
unless @user.blocked?
|
|
|
|
@user.blocked = true
|
|
|
|
if @user.save
|
|
|
|
SystemMessage.create(@user, @opts[:message] || :blocked_by_staff)
|
2016-01-14 15:05:11 -05:00
|
|
|
StaffActionLogger.new(@by_user).log_block_user(@user) if @by_user
|
2013-08-02 10:55:02 -04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
false
|
2013-07-02 14:42:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def hide_posts
|
2016-09-12 11:58:10 -04:00
|
|
|
return unless @user.trust_level == TrustLevel[0]
|
|
|
|
|
2013-07-03 11:17:16 -04:00
|
|
|
Post.where(user_id: @user.id).update_all(["hidden = true, hidden_reason_id = COALESCE(hidden_reason_id, ?)", Post.hidden_reasons[:new_user_spam_threshold_reached]])
|
2016-03-18 07:16:37 -04:00
|
|
|
topic_ids = Post.where(user_id: @user.id, post_number: 1).pluck(:topic_id)
|
|
|
|
Topic.where(id: topic_ids).update_all(visible: false) unless topic_ids.empty?
|
2013-07-02 14:42:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
@user.blocked = false
|
|
|
|
if @user.save
|
|
|
|
SystemMessage.create(@user, :unblocked)
|
2016-01-14 15:05:11 -05:00
|
|
|
StaffActionLogger.new(@by_user).log_unblock_user(@user) if @by_user
|
2013-07-02 14:42:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-24 13:10:43 -04:00
|
|
|
end
|