Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide first-time or spam replied-comments #9381

Merged
merged 2 commits into from
Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions app/views/notes/_comment.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,20 @@

<% if comment.reply_to.nil? %>
<% comment.replied_comments.order("timestamp ASC").each do |replied_comment| %>
<%= render :partial => "notes/comment", :locals => {:comment => replied_comment} %>
<% if logged_in_as(['admin','moderator'])%>
<% if replied_comment.status == 4 || replied_comment.status == 1 %>
<%= render :partial => "notes/comment", :locals => {:comment => replied_comment} %>
<% end %>
<% elsif current_user && current_user.id = replied_comment.author.id %>
<% if replied_comment.status == 1 || (replied_comment.status == 4 && replied_comment.uid = current_user.id) %>
<%= render :partial => "notes/comment", :locals => {:comment => replied_comment} %>
<% end %>
<% else %>
<% if replied_comment.status == 1 %>
<%= render :partial => "notes/comment", :locals => {:comment => replied_comment} %>
<% end %>
<% end %>
<% end %>

<p style="color: #006dcc; cursor: pointer; user-select: none;" id="comment-<%= comment.cid %>-reply-toggle">Reply to this comment...</p>
<div id="comment-<%= comment.cid %>-reply" style="margin-top: 30px;display: none;">
<div id="comment-<%= comment.cid %>-reply-section">
Expand Down
1 change: 1 addition & 0 deletions app/views/notes/_comments.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<div class="row">
<div id="comments" class="col-lg-10 comments">
<% comments = @node.comments_viewable_by(current_user) %>
<% comments = comments.where('reply_to IS NULL OR reply_to IN (?)', Array.wrap(comments.pluck(:cid)))%>
<h3><span id="comment-count"><%= comments.size %></span> <%= translation('notes._comments.comments') %></h3>
<%= javascript_include_tag "editorToolbar" %>
<%= javascript_include_tag "comment" %>
Expand Down
13 changes: 13 additions & 0 deletions test/fixtures/users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,16 @@ user_without_tag_subscriptions:
bio: ''
created_at: <%= Time.now %>
updated_at: <%= Time.now %>

sushmita:
username: sushmita
status: 1
email: 17sushmita@gmail.com
id: 23
last_request_at: <%= Time.now %>
password_salt: <%= salt = Authlogic::Random.hex_token %>
crypted_password: <%= Authlogic::CryptoProviders::Sha512.encrypt("secretive" + salt) %>
persistence_token: <%= Authlogic::Random.hex_token %>
bio: ''
created_at: <%= Time.now %>
updated_at: <%= Time.now %>
86 changes: 86 additions & 0 deletions test/system/comment_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,92 @@ def get_path(page_type, path)
assert_selector("#{edit_preview_id} img", count: 1)
end

test "#{page_type_string}: should list first time replied comment to moderator" do
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gosh this is fantastic!!! Thank you and great work!!!

comment = nodes(node_name).add_comment({
uid: 19,
body: "This is a first time reply",
status: 4,
reply_to: 1,
})
visit get_path(page_type, nodes(node_name).path)
page.find("#c#{comment.id}")
assert_equal comment.status, 4
assert_selector("#c#{comment.id} div p", text: "Moderate first-time comment:")
end

test "#{page_type_string}: should not list first time replied comment to non-registered user" do
comment = nodes(node_name).add_comment({
uid: 19,
body: "This is a first time reply",
status: 4,
reply_to: 1,
})
visit '/logout'
visit get_path(page_type, nodes(node_name).path)
assert_selector("#c#{comment.id}", count: 0)
end

test "#{page_type_string}: should not list first time replied comment to other user" do
comment = nodes(node_name).add_comment({
uid: 19,
body: "This is a first time reply",
status: 4,
reply_to: 1,
})
visit '/logout'
visit '/'

find(".nav-link.loginToggle").click()
fill_in("username-login", with: "sushmita")
fill_in("password-signup", with: "secretive")

find(".login-modal-form #login-button").click()
visit get_path(page_type, nodes(node_name).path)
assert_selector("#c#{comment.id}", count: 0)
end

test "#{page_type_string}: should not list spam replied comment to moderator" do
comment = nodes(node_name).add_comment({
uid: 5,
body: "This is a spam reply",
reply_to: 1,
})
visit "/admin/mark_comment_spam/#{comment.id}"
visit get_path(page_type, nodes(node_name).path)
assert_selector("#c#{comment.id}", count: 0)
end

test "#{page_type_string}: should not list spam replied comment to non-registered user" do
comment = nodes(node_name).add_comment({
uid: 5,
body: "This is a spam reply",
reply_to: 1,
})
visit "/admin/mark_comment_spam/#{comment.id}"
visit '/logout'
visit get_path(page_type, nodes(node_name).path)
assert_selector("#c#{comment.id}", count: 0)
end

test "#{page_type_string}: should not list spam replied comment to registered user" do
comment = nodes(node_name).add_comment({
uid: 5,
body: "This is a spam reply",
reply_to: 1,
})
visit "/admin/mark_comment_spam/#{comment.id}"
visit '/logout'
visit '/'

find(".nav-link.loginToggle").click()
fill_in("username-login", with: "sushmita")
fill_in("password-signup", with: "secretive")

find(".login-modal-form #login-button").click()
visit get_path(page_type, nodes(node_name).path)
assert_selector("#c#{comment.id}", count: 0)
end

test "#{page_type_string}: IMMEDIATE image SELECT upload into REPLY comment form" do
nodes(node_name).add_comment({
uid: 5,
Expand Down