FEATURE: don't notify about changed tags for a private message (#10408)

* FEATURE: don't notify about changed tags for a private message

Only staff members observing specific tag should receive a notification

* FIX: remove other category which is not used

* FIX: improved specs to ensure that revise was succesful
This commit is contained in:
Krzysztof Kotlarek 2020-08-13 17:22:34 +10:00 committed by GitHub
parent 310952fd6a
commit 7194b31443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 51 additions and 8 deletions

View File

@ -7,7 +7,7 @@ module Jobs
if post&.topic&.visible? if post&.topic&.visible?
post_alerter = PostAlerter.new post_alerter = PostAlerter.new
post_alerter.notify_post_users(post, User.where(id: args[:notified_user_ids]), include_category_watchers: false) post_alerter.notify_post_users(post, User.where(id: args[:notified_user_ids]), include_topic_watchers: !post.topic.private_message?, include_category_watchers: false)
post_alerter.notify_first_post_watchers(post, post_alerter.tag_watchers(post.topic)) post_alerter.notify_first_post_watchers(post, post_alerter.tag_watchers(post.topic))
end end
end end

View File

@ -613,21 +613,28 @@ class PostAlerter
end end
end end
def notify_post_users(post, notified, include_category_watchers: true, include_tag_watchers: true, new_record: false) def notify_post_users(post, notified, include_topic_watchers: true, include_category_watchers: true, include_tag_watchers: true, new_record: false)
return unless post.topic return unless post.topic
warn_if_not_sidekiq warn_if_not_sidekiq
condition = +<<~SQL condition = +<<~SQL
id IN ( id IN (
SELECT id FROM users WHERE false
/*topic*/
/*category*/
/*tags*/
)
SQL
if include_topic_watchers
condition.sub! "/*topic*/", <<~SQL
UNION
SELECT user_id SELECT user_id
FROM topic_users FROM topic_users
WHERE notification_level = :watching WHERE notification_level = :watching
AND topic_id = :topic_id AND topic_id = :topic_id
/*category*/ SQL
/*tags*/ end
)
SQL
if include_category_watchers if include_category_watchers
condition.sub! "/*category*/", <<~SQL condition.sub! "/*category*/", <<~SQL
@ -639,7 +646,7 @@ class PostAlerter
AND tu.topic_id = :topic_id AND tu.topic_id = :topic_id
WHERE cu.notification_level = :watching WHERE cu.notification_level = :watching
AND cu.category_id = :category_id AND cu.category_id = :category_id
AND tu.user_id IS NULL AND (tu.user_id IS NULL OR tu.notification_level = :watching)
SQL SQL
end end
@ -655,7 +662,7 @@ class PostAlerter
AND tu.topic_id = :topic_id AND tu.topic_id = :topic_id
WHERE tag_users.notification_level = :watching WHERE tag_users.notification_level = :watching
AND tag_users.tag_id IN (:tag_ids) AND tag_users.tag_id IN (:tag_ids)
AND tu.user_id IS NULL AND (tu.user_id IS NULL OR tu.notification_level = :watching)
SQL SQL
end end
@ -666,6 +673,10 @@ class PostAlerter
tag_ids: tag_ids tag_ids: tag_ids
) )
if post.topic.private_message?
notify = notify.where(staged: false).staff
end
exclude_user_ids = notified.map(&:id) exclude_user_ids = notified.map(&:id)
notify = notify.where("id NOT IN (?)", exclude_user_ids) if exclude_user_ids.present? notify = notify.where("id NOT IN (?)", exclude_user_ids) if exclude_user_ids.present?

View File

@ -1098,6 +1098,38 @@ describe PostAlerter do
expect(user.notifications.where(notification_type: Notification.types[:watching_first_post]).count).to eq(0) expect(user.notifications.where(notification_type: Notification.types[:watching_first_post]).count).to eq(0)
end end
end end
context "private message" do
fab!(:post) { Fabricate(:private_message_post) }
fab!(:other_tag) { Fabricate(:tag) }
fab!(:other_tag2) { Fabricate(:tag) }
fab!(:other_tag3) { Fabricate(:tag) }
fab!(:user) { Fabricate(:user) }
fab!(:staged) { Fabricate(:staged) }
fab!(:admin) { Fabricate(:admin) }
before do
SiteSetting.tagging_enabled = true
SiteSetting.allow_staff_to_tag_pms = true
Jobs.run_immediately!
TopicUser.change(user.id, post.topic.id, notification_level: TopicUser.notification_levels[:watching])
TopicUser.change(staged.id, post.topic.id, notification_level: TopicUser.notification_levels[:watching])
TopicUser.change(admin.id, post.topic.id, notification_level: TopicUser.notification_levels[:watching])
TagUser.change(staged.id, other_tag.id, TagUser.notification_levels[:watching])
TagUser.change(admin.id, other_tag3.id, TagUser.notification_levels[:watching])
post.topic.allowed_users << user
post.topic.allowed_users << staged
end
it "only notifes staff watching added tag" do
expect(PostRevisor.new(post).revise!(Fabricate(:admin), tags: [other_tag.name])).to be true
expect(Notification.where(user_id: staged.id).count).to eq(0)
expect(PostRevisor.new(post).revise!(Fabricate(:admin), tags: [other_tag2.name])).to be true
expect(Notification.where(user_id: admin.id).count).to eq(0)
expect(PostRevisor.new(post).revise!(Fabricate(:admin), tags: [other_tag3.name])).to be true
expect(Notification.where(user_id: admin.id).count).to eq(1)
end
end
end end
describe '#extract_linked_users' do describe '#extract_linked_users' do