2014-01-30 11:15:49 -05:00
|
|
|
class TopicsBulkAction
|
|
|
|
|
2015-12-22 19:09:17 -05:00
|
|
|
def initialize(user, topic_ids, operation, options={})
|
2014-01-30 11:15:49 -05:00
|
|
|
@user = user
|
|
|
|
@topic_ids = topic_ids
|
|
|
|
@operation = operation
|
2014-01-30 12:44:28 -05:00
|
|
|
@changed_ids = []
|
2015-12-22 19:09:17 -05:00
|
|
|
@options = options
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
2014-01-30 11:43:01 -05:00
|
|
|
def self.operations
|
2015-12-22 19:09:17 -05:00
|
|
|
@operations ||= %w(change_category close archive change_notification_level
|
|
|
|
reset_read dismiss_posts delete unlist archive_messages
|
|
|
|
move_messages_to_inbox)
|
2015-03-06 20:36:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.register_operation(name, &block)
|
|
|
|
operations << name
|
|
|
|
define_method(name, &block)
|
2014-01-30 11:43:01 -05:00
|
|
|
end
|
|
|
|
|
2014-01-30 11:15:49 -05:00
|
|
|
def perform!
|
2014-01-30 11:43:01 -05:00
|
|
|
raise Discourse::InvalidParameters.new(:operation) unless TopicsBulkAction.operations.include?(@operation[:type])
|
|
|
|
send(@operation[:type])
|
2014-01-30 12:44:28 -05:00
|
|
|
@changed_ids
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|
2014-01-30 11:43:01 -05:00
|
|
|
private
|
|
|
|
|
2015-12-22 19:09:17 -05:00
|
|
|
def find_group
|
|
|
|
return unless @options[:group]
|
|
|
|
|
|
|
|
group = Group.where('name ilike ?', @options[:group]).first
|
|
|
|
raise Discourse::InvalidParameters.new(:group) unless group
|
|
|
|
unless group.group_users.where(user_id: @user.id).exists?
|
|
|
|
raise Discourse::InvalidParameters.new(:group)
|
|
|
|
end
|
|
|
|
group
|
|
|
|
end
|
|
|
|
|
|
|
|
def move_messages_to_inbox
|
|
|
|
group = find_group
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_see?(t) && t.private_message?
|
|
|
|
if group
|
2016-02-07 07:39:07 -05:00
|
|
|
GroupArchivedMessage.move_to_inbox!(group.id, t.id)
|
2015-12-22 19:09:17 -05:00
|
|
|
else
|
2016-02-07 07:39:07 -05:00
|
|
|
UserArchivedMessage.move_to_inbox!(@user.id,t.id)
|
2015-12-22 19:09:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def archive_messages
|
|
|
|
group = find_group
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_see?(t) && t.private_message?
|
|
|
|
if group
|
2016-02-07 07:39:07 -05:00
|
|
|
GroupArchivedMessage.archive!(group.id, t.id)
|
2015-12-22 19:09:17 -05:00
|
|
|
else
|
2016-02-07 07:39:07 -05:00
|
|
|
UserArchivedMessage.archive!(@user.id, t.id)
|
2015-12-22 19:09:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-08 02:29:51 -04:00
|
|
|
def dismiss_posts
|
|
|
|
sql = "
|
|
|
|
UPDATE topic_users tu
|
2014-10-30 18:40:35 -04:00
|
|
|
SET highest_seen_post_number = t.highest_post_number , last_read_post_number = highest_post_number
|
2014-08-08 02:29:51 -04:00
|
|
|
FROM topics t
|
|
|
|
WHERE t.id = tu.topic_id AND tu.user_id = :user_id AND t.id IN (:topic_ids)
|
|
|
|
"
|
|
|
|
|
|
|
|
Topic.exec_sql(sql, user_id: @user.id, topic_ids: @topic_ids)
|
|
|
|
@changed_ids.concat @topic_ids
|
|
|
|
end
|
|
|
|
|
2014-02-21 13:03:50 -05:00
|
|
|
def reset_read
|
|
|
|
PostTiming.destroy_for(@user.id, @topic_ids)
|
|
|
|
end
|
|
|
|
|
2014-01-30 11:43:01 -05:00
|
|
|
def change_category
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_edit?(t)
|
2014-07-16 15:39:39 -04:00
|
|
|
@changed_ids << t.id if t.change_category_to_id(@operation[:category_id])
|
2014-01-30 12:44:28 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-14 17:38:55 -05:00
|
|
|
def change_notification_level
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_see?(t)
|
|
|
|
TopicUser.change(@user, t.id, notification_level: @operation[:notification_level_id].to_i)
|
|
|
|
@changed_ids << t.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-30 12:44:28 -05:00
|
|
|
def close
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_moderate?(t)
|
|
|
|
t.update_status('closed', true, @user)
|
|
|
|
@changed_ids << t.id
|
2014-01-30 11:43:01 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-27 16:57:40 -04:00
|
|
|
def unlist
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_moderate?(t)
|
|
|
|
t.update_status('visible', false, @user)
|
|
|
|
@changed_ids << t.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-22 14:56:48 -04:00
|
|
|
def archive
|
|
|
|
topics.each do |t|
|
|
|
|
if guardian.can_moderate?(t)
|
|
|
|
t.update_status('archived', true, @user)
|
|
|
|
@changed_ids << t.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-11 15:13:44 -04:00
|
|
|
def delete
|
|
|
|
topics.each do |t|
|
|
|
|
t.trash! if guardian.can_delete?(t)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-30 11:43:01 -05:00
|
|
|
def guardian
|
|
|
|
@guardian ||= Guardian.new(@user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def topics
|
|
|
|
@topics ||= Topic.where(id: @topic_ids)
|
|
|
|
end
|
|
|
|
|
2014-08-11 15:13:44 -04:00
|
|
|
|
2014-01-30 11:15:49 -05:00
|
|
|
end
|
|
|
|
|