FIX: Wrong target user displayed for user actions in activity stream.

https://meta.discourse.org/t/wrong-assigned-username-in-activity-list/73816
This commit is contained in:
Guo Xiang Tan 2018-05-18 11:28:13 +08:00
parent 417bcc5f2a
commit 416d19af27
4 changed files with 51 additions and 16 deletions

View File

@ -11,5 +11,5 @@ export default Ember.Component.extend({
], ],
moderatorAction: propertyEqual("item.post_type", "site.post_types.moderator_action"), moderatorAction: propertyEqual("item.post_type", "site.post_types.moderator_action"),
actionDescription: actionDescription("item.action_code", "item.created_at", "item.username"), actionDescription: actionDescription("item.action_code", "item.created_at", "item.action_code_who"),
}); });

View File

@ -212,6 +212,7 @@ SQL
p.hidden, p.hidden,
p.post_type, p.post_type,
p.action_code, p.action_code,
pc.value AS action_code_who,
p.edit_reason, p.edit_reason,
t.category_id t.category_id
FROM user_actions as a FROM user_actions as a
@ -222,6 +223,7 @@ SQL
JOIN users pu on pu.id = COALESCE(p.user_id, t.user_id) JOIN users pu on pu.id = COALESCE(p.user_id, t.user_id)
JOIN users au on au.id = a.user_id JOIN users au on au.id = a.user_id
LEFT JOIN categories c on c.id = t.category_id LEFT JOIN categories c on c.id = t.category_id
LEFT JOIN post_custom_fields pc ON pc.post_id = a.target_post_id AND pc.name = 'action_code_who'
/*where*/ /*where*/
/*order_by*/ /*order_by*/
/*offset*/ /*offset*/

View File

@ -26,6 +26,7 @@ class UserActionSerializer < ApplicationSerializer
:hidden, :hidden,
:post_type, :post_type,
:action_code, :action_code,
:action_code_who,
:edit_reason, :edit_reason,
:category_id, :category_id,
:closed, :closed,
@ -79,4 +80,12 @@ class UserActionSerializer < ApplicationSerializer
object.topic_archived object.topic_archived
end end
def include_action_code_who?
action_code_who.present?
end
def action_code_who
object.action_code_who
end
end end

View File

@ -9,7 +9,7 @@ describe UserAction do
it { is_expected.to validate_presence_of :action_type } it { is_expected.to validate_presence_of :action_type }
it { is_expected.to validate_presence_of :user_id } it { is_expected.to validate_presence_of :user_id }
describe 'lists' do describe '#stream' do
let(:public_post) { Fabricate(:post) } let(:public_post) { Fabricate(:post) }
let(:public_topic) { public_post.topic } let(:public_topic) { public_post.topic }
@ -46,8 +46,8 @@ describe UserAction do
UserAction.stats(user.id, Guardian.new(viewer)).map { |r| r["action_type"].to_i }.sort UserAction.stats(user.id, Guardian.new(viewer)).map { |r| r["action_type"].to_i }.sort
end end
def stream_count(viewer = nil) def stream(viewer = nil)
UserAction.stream(user_id: user.id, guardian: Guardian.new(viewer)).count UserAction.stream(user_id: user.id, guardian: Guardian.new(viewer))
end end
it 'includes the events correctly' do it 'includes the events correctly' do
@ -56,38 +56,38 @@ describe UserAction do
mystats = stats_for_user(user) mystats = stats_for_user(user)
expecting = [UserAction::NEW_TOPIC, UserAction::NEW_PRIVATE_MESSAGE, UserAction::GOT_PRIVATE_MESSAGE, UserAction::BOOKMARK].sort expecting = [UserAction::NEW_TOPIC, UserAction::NEW_PRIVATE_MESSAGE, UserAction::GOT_PRIVATE_MESSAGE, UserAction::BOOKMARK].sort
expect(mystats).to eq(expecting) expect(mystats).to eq(expecting)
expect(stream_count(user)).to eq(4)
expect(stream(user).map(&:action_type))
.to contain_exactly(*expecting)
other_stats = stats_for_user other_stats = stats_for_user
expecting = [UserAction::NEW_TOPIC] expecting = [UserAction::NEW_TOPIC]
expect(stream_count).to eq(1) expect(stream.map(&:action_type)).to contain_exactly(*expecting)
expect(other_stats).to eq(expecting) expect(other_stats).to eq(expecting)
public_topic.trash!(user) public_topic.trash!(user)
expect(stats_for_user).to eq([]) expect(stats_for_user).to eq([])
expect(stream_count).to eq(0) expect(stream).to eq([])
# groups # groups
category = Fabricate(:category, read_restricted: true) category = Fabricate(:category, read_restricted: true)
public_topic.recover! public_topic.recover!
public_topic.category = category public_topic.update!(category: category)
public_topic.save
expect(stats_for_user).to eq([]) expect(stats_for_user).to eq([])
expect(stream_count).to eq(0) expect(stream).to eq([])
group = Fabricate(:group) group = Fabricate(:group)
u = Fabricate(:coding_horror) u = Fabricate(:coding_horror)
group.add(u) group.add(u)
group.save
category.set_permissions(group => :full) category.set_permissions(group => :full)
category.save category.save!
expect(stats_for_user(u)).to eq([UserAction::NEW_TOPIC]) expecting = [UserAction::NEW_TOPIC]
expect(stream_count(u)).to eq(1) expect(stats_for_user(u)).to eq(expecting)
expect(stream(u).map(&:action_type)).to contain_exactly(*expecting)
# duplicate should not exception out # duplicate should not exception out
log_test_action log_test_action
@ -103,6 +103,29 @@ describe UserAction do
end end
end end
describe 'assignments' do
let(:stream) do
UserAction.stream(user_id: user.id, guardian: Guardian.new(user))
end
before do
log_test_action(action_type: UserAction::ASSIGNED)
private_post.custom_fields ||= {}
private_post.custom_fields["action_code_who"] = 'testing'
private_post.custom_fields["random_field"] = 'random_value'
private_post.save!
end
it 'should include the right attributes in the stream' do
expect(stream.count).to eq(1)
user_action_row = stream.first
expect(user_action_row.action_type).to eq(UserAction::ASSIGNED)
expect(user_action_row.action_code_who).to eq('testing')
end
end
describe "mentions" do describe "mentions" do
before do before do
log_test_action(action_type: UserAction::MENTION) log_test_action(action_type: UserAction::MENTION)
@ -116,7 +139,8 @@ describe UserAction do
end end
it "is returned by the stream" do it "is returned by the stream" do
expect(stream).to be_present expect(stream.count).to eq(1)
expect(stream.first.action_type).to eq(UserAction::MENTION)
end end
it "isn't returned when mentions aren't enabled" do it "isn't returned when mentions aren't enabled" do