Merge pull request #2804 from evazion/feat-comment-as-mod
Add option to comment as moderator (fix #2799)
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
$menu_color: #F7F7FF;
|
$menu_color: #F5F5FF;
|
||||||
$link_color: hsl(213, 100%, 50%);
|
$link_color: hsl(213, 100%, 50%);
|
||||||
$link_hover_color: lighten($link_color, 25%);
|
$link_hover_color: lighten($link_color, 25%);
|
||||||
$link_dark_color: darken($link_color, 25%);
|
$link_dark_color: darken($link_color, 25%);
|
||||||
|
|||||||
@@ -15,6 +15,11 @@ div.comments-for-post {
|
|||||||
article.comment {
|
article.comment {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
padding: 5px;
|
||||||
|
|
||||||
|
&[data-is-sticky="true"] {
|
||||||
|
background: $menu_color;
|
||||||
|
}
|
||||||
|
|
||||||
div.author {
|
div.author {
|
||||||
width: 12em;
|
width: 12em;
|
||||||
@@ -40,7 +45,7 @@ div.comments-for-post {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
article.comment.below-threshold {
|
article.comment.below-threshold:not([data-is-sticky="true"]) {
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,10 +53,6 @@ div.comments-for-post {
|
|||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
div.comment-preview {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#c-posts {
|
div#c-posts {
|
||||||
@@ -146,3 +147,12 @@ div#c-comments {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form.edit_comment div.input.boolean {
|
||||||
|
display: inline-block;
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-weight: normal;
|
||||||
|
vertical-align: initial;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -23,12 +23,12 @@ class CommentsController < ApplicationController
|
|||||||
def update
|
def update
|
||||||
@comment = Comment.find(params[:id])
|
@comment = Comment.find(params[:id])
|
||||||
check_privilege(@comment)
|
check_privilege(@comment)
|
||||||
@comment.update_attributes(params[:comment].permit(:body))
|
@comment.update(update_params, :as => CurrentUser.role)
|
||||||
respond_with(@comment, :location => post_path(@comment.post_id))
|
respond_with(@comment, :location => post_path(@comment.post_id))
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@comment = Comment.create(params[:comment])
|
@comment = Comment.create(create_params, :as => CurrentUser.role)
|
||||||
respond_with(@comment) do |format|
|
respond_with(@comment) do |format|
|
||||||
format.html do
|
format.html do
|
||||||
if @comment.errors.any?
|
if @comment.errors.any?
|
||||||
@@ -110,4 +110,12 @@ private
|
|||||||
raise User::PrivilegeError
|
raise User::PrivilegeError
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def create_params
|
||||||
|
params.require(:comment).permit(:post_id, :body, :do_not_bump_post, :is_sticky)
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_params
|
||||||
|
params.require(:comment).permit(:body, :is_deleted, :is_sticky)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -12,7 +12,8 @@ class Comment < ActiveRecord::Base
|
|||||||
before_validation :initialize_updater
|
before_validation :initialize_updater
|
||||||
after_create :update_last_commented_at_on_create
|
after_create :update_last_commented_at_on_create
|
||||||
after_destroy :update_last_commented_at_on_destroy
|
after_destroy :update_last_commented_at_on_destroy
|
||||||
attr_accessible :body, :post_id, :do_not_bump_post, :is_deleted
|
attr_accessible :body, :post_id, :do_not_bump_post, :is_deleted, :as => [:member, :gold, :platinum, :builder, :janitor, :moderator, :admin]
|
||||||
|
attr_accessible :is_sticky, :as => [:moderator, :admin]
|
||||||
mentionable(
|
mentionable(
|
||||||
:message_field => :body,
|
:message_field => :body,
|
||||||
:user_field => :creator_id,
|
:user_field => :creator_id,
|
||||||
@@ -34,11 +35,11 @@ class Comment < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def hidden(user)
|
def hidden(user)
|
||||||
where("score < ?", user.comment_threshold)
|
where("score < ? and is_sticky = false", user.comment_threshold)
|
||||||
end
|
end
|
||||||
|
|
||||||
def visible(user)
|
def visible(user)
|
||||||
where("score >= ?", user.comment_threshold)
|
where("score >= ? or is_sticky = true", user.comment_threshold)
|
||||||
end
|
end
|
||||||
|
|
||||||
def deleted
|
def deleted
|
||||||
@@ -208,11 +209,11 @@ class Comment < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def delete!
|
def delete!
|
||||||
update_attributes(:is_deleted => true)
|
update({ :is_deleted => true }, :as => CurrentUser.role)
|
||||||
end
|
end
|
||||||
|
|
||||||
def undelete!
|
def undelete!
|
||||||
update_attributes(:is_deleted => false)
|
update({ :is_deleted => false }, :as => CurrentUser.role)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -39,9 +39,6 @@ class CommentVote < ActiveRecord::Base
|
|||||||
if is_positive? && comment.creator == CurrentUser.user
|
if is_positive? && comment.creator == CurrentUser.user
|
||||||
errors.add :base, "You cannot upvote your own comments"
|
errors.add :base, "You cannot upvote your own comments"
|
||||||
false
|
false
|
||||||
elsif is_negative? && comment.creator.is_admin?
|
|
||||||
errors.add :base, "You cannot downvote an admin comment"
|
|
||||||
false
|
|
||||||
else
|
else
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
|
<%= error_messages_for :comment %>
|
||||||
|
|
||||||
<%= simple_form_for(comment, :html => {:class => "edit_comment"}) do |f| %>
|
<%= simple_form_for(comment, :html => {:class => "edit_comment"}) do |f| %>
|
||||||
|
<%= f.hidden_field :post_id %>
|
||||||
<%= dtext_field "comment", "body", :value => comment.body, :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
|
<%= dtext_field "comment", "body", :value => comment.body, :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
|
||||||
<%= f.button :submit, "Submit" %>
|
<%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
|
||||||
<%= dtext_preview_button "comment", "body", :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
|
<%= dtext_preview_button "comment", "body", :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
|
||||||
|
<% if comment.new_record? %>
|
||||||
|
<%= f.input :do_not_bump_post, :label => "No bump" %>
|
||||||
|
<% end %>
|
||||||
|
<% if CurrentUser.is_moderator? %>
|
||||||
|
<%= f.input :is_sticky, :label => "Post as moderator" %>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -2,13 +2,7 @@
|
|||||||
<div id="a-edit">
|
<div id="a-edit">
|
||||||
<h1>Edit Comment</h1>
|
<h1>Edit Comment</h1>
|
||||||
|
|
||||||
<%= error_messages_for "comment" %>
|
<%= render "comments/form", :post => @comment.post, :comment => @comment %>
|
||||||
|
|
||||||
<%= simple_form_for(@comment) do |f| %>
|
|
||||||
<%= dtext_field "comment", "body" %>
|
|
||||||
<%= f.button :submit, "Submit" %>
|
|
||||||
<%= dtext_preview_button "comment", "body" %>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
<% if CurrentUser.is_member? %>
|
<% if CurrentUser.is_member? %>
|
||||||
<div class="new-comment">
|
<div class="new-comment">
|
||||||
<p><%= link_to "Post comment", new_comment_path, :class => "expand-comment-response" %></p>
|
<p><%= link_to "Post comment", new_comment_path, :class => "expand-comment-response" %></p>
|
||||||
<%= render "comments/partials/new/form", :post => post %>
|
<%= render "comments/form", :post => post, :comment => post.comments.new %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
<div class="comment-preview dtext dtext-preview">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<%= form_tag(comments_path, :class => "simple_form comment-form") do %>
|
|
||||||
<%= hidden_field "comment", "post_id", :value => post.id %>
|
|
||||||
<%= dtext_field "comment", "body", :input_id => "comment_response_for_#{post.id}", :preview_id => "dtext-preview-for-#{post.id}" %>
|
|
||||||
<%= submit_tag "Post", :data => { :disable_with => "Submitting..." } %>
|
|
||||||
<%= dtext_preview_button "comment", "body", :input_id => "comment_response_for_#{post.id}", :preview_id => "dtext-preview-for-#{post.id}" %>
|
|
||||||
<%= check_box "comment", "do_not_bump_post", :id => "comment_do_not_bump_post_#{post.id}" %> <label for="comment_do_not_bump_post_<%= post.id %>">No bump</label>
|
|
||||||
<% end %>
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<% if CurrentUser.is_moderator? || !comment.is_deleted? %>
|
<% if CurrentUser.is_moderator? || !comment.is_deleted? %>
|
||||||
<a name="comment-<%= comment.id %>"></a>
|
<a name="comment-<%= comment.id %>"></a>
|
||||||
<article class="comment" data-post-id="<%= comment.post_id %>" data-comment-id="<%= comment.id %>" data-score="<%= comment.score %>" data-creator="<%= comment.creator.name %>">
|
<article class="comment" data-post-id="<%= comment.post_id %>" data-comment-id="<%= comment.id %>" data-score="<%= comment.score %>" data-creator="<%= comment.creator.name %>" data-is-sticky="<%= comment.is_sticky %>">
|
||||||
<div class="author">
|
<div class="author">
|
||||||
<h1>
|
<h1>
|
||||||
<%= link_to_user comment.creator %>
|
<%= link_to_user comment.creator %>
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
</menu>
|
</menu>
|
||||||
<% if comment.editable_by?(CurrentUser.user) %>
|
<% if comment.editable_by?(CurrentUser.user) %>
|
||||||
<%= render "comments/form", :comment => comment %>
|
<%= render "comments/form", :post => comment.post, :comment => comment %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
5
db/migrate/20161227003428_add_sticky_to_comments.rb
Normal file
5
db/migrate/20161227003428_add_sticky_to_comments.rb
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
class AddStickyToComments < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
add_column :comments, :is_sticky, :boolean, null: false, default: false
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -3,12 +3,17 @@ require 'test_helper'
|
|||||||
class CommentsControllerTest < ActionController::TestCase
|
class CommentsControllerTest < ActionController::TestCase
|
||||||
context "A comments controller" do
|
context "A comments controller" do
|
||||||
setup do
|
setup do
|
||||||
CurrentUser.user = FactoryGirl.create(:user)
|
@mod = FactoryGirl.create(:moderator_user)
|
||||||
|
@user = FactoryGirl.create(:member_user)
|
||||||
|
CurrentUser.user = @user
|
||||||
CurrentUser.ip_addr = "127.0.0.1"
|
CurrentUser.ip_addr = "127.0.0.1"
|
||||||
Danbooru.config.stubs(:member_comment_time_threshold).returns(1.week.from_now)
|
Danbooru.config.stubs(:member_comment_time_threshold).returns(1.week.from_now)
|
||||||
|
|
||||||
@post = FactoryGirl.create(:post)
|
@post = FactoryGirl.create(:post)
|
||||||
@comment = FactoryGirl.create(:comment, :post => @post)
|
@comment = FactoryGirl.create(:comment, :post => @post)
|
||||||
@user = FactoryGirl.create(:moderator_user)
|
CurrentUser.scoped(@mod) do
|
||||||
|
@mod_comment = FactoryGirl.create(:comment, :post => @post)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
teardown do
|
teardown do
|
||||||
@@ -28,13 +33,64 @@ class CommentsControllerTest < ActionController::TestCase
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "search action" do
|
||||||
|
should "render" do
|
||||||
|
get :search
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "show action" do
|
||||||
|
should "render" do
|
||||||
|
get :show, {:id => @comment.id}
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "edit action" do
|
||||||
|
should "render" do
|
||||||
|
get :edit, {:id => @comment.id}, {:user_id => @user.id}
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "update action" do
|
context "update action" do
|
||||||
should "update the comment" do
|
context "when updating another user's comment" do
|
||||||
|
should "succeed if updater is a moderator" do
|
||||||
|
post :update, {:id => @comment.id, :comment => {:body => "abc"}}, {:user_id => @mod.id}
|
||||||
|
assert_equal("abc", @comment.reload.body)
|
||||||
|
assert_redirected_to post_path(@comment.post)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "fail if updater is not a moderator" do
|
||||||
|
post :update, {:id => @mod_comment.id, :comment => {:body => "abc"}}, {:user_id => @user.id}
|
||||||
|
assert_not_equal("abc", @mod_comment.reload.body)
|
||||||
|
assert_response 403
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when stickying a comment" do
|
||||||
|
should "succeed if updater is a moderator" do
|
||||||
|
CurrentUser.user = @mod
|
||||||
|
post :update, {:id => @comment.id, :comment => {:is_sticky => true}}, {:user_id => @mod.id}
|
||||||
|
assert_equal(true, @comment.reload.is_sticky)
|
||||||
|
assert_redirected_to @comment.post
|
||||||
|
end
|
||||||
|
|
||||||
|
should "fail if updater is not a moderator" do
|
||||||
|
post :update, {:id => @comment.id, :comment => {:is_sticky => true}}, {:user_id => @user.id}
|
||||||
|
assert_equal(false, @comment.reload.is_sticky)
|
||||||
|
assert_redirected_to @comment.post
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
should "update the body" do
|
||||||
post :update, {:id => @comment.id, :comment => {:body => "abc"}}, {:user_id => @comment.creator_id}
|
post :update, {:id => @comment.id, :comment => {:body => "abc"}}, {:user_id => @comment.creator_id}
|
||||||
|
assert_equal("abc", @comment.reload.body)
|
||||||
assert_redirected_to post_path(@comment.post)
|
assert_redirected_to post_path(@comment.post)
|
||||||
end
|
end
|
||||||
|
|
||||||
should "only allow changing the body" do
|
should "allow changing the body and is_deleted" do
|
||||||
params = {
|
params = {
|
||||||
id: @comment.id,
|
id: @comment.id,
|
||||||
comment: {
|
comment: {
|
||||||
@@ -50,13 +106,20 @@ class CommentsControllerTest < ActionController::TestCase
|
|||||||
|
|
||||||
assert_equal("herp derp", @comment.body)
|
assert_equal("herp derp", @comment.body)
|
||||||
assert_equal(false, @comment.do_not_bump_post)
|
assert_equal(false, @comment.do_not_bump_post)
|
||||||
assert_equal(false, @comment.is_deleted)
|
assert_equal(true, @comment.is_deleted)
|
||||||
assert_equal(@post.id, @comment.post_id)
|
assert_equal(@post.id, @comment.post_id)
|
||||||
|
|
||||||
assert_redirected_to post_path(@post)
|
assert_redirected_to post_path(@post)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "new action" do
|
||||||
|
should "redirect" do
|
||||||
|
get :new, {}, {:user_id => @user.id}
|
||||||
|
assert_redirected_to comments_path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "create action"do
|
context "create action"do
|
||||||
should "create a comment" do
|
should "create a comment" do
|
||||||
assert_difference("Comment.count", 1) do
|
assert_difference("Comment.count", 1) do
|
||||||
@@ -71,5 +134,13 @@ class CommentsControllerTest < ActionController::TestCase
|
|||||||
assert_response :error
|
assert_response :error
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "destroy action" do
|
||||||
|
should "mark comment as deleted" do
|
||||||
|
delete :destroy, {:id => @comment.id}, {:user_id => @user.id}
|
||||||
|
assert_equal(true, @comment.reload.is_deleted)
|
||||||
|
assert_redirected_to @comment
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -205,6 +205,26 @@ class CommentTest < ActiveSupport::TestCase
|
|||||||
assert_equal(c2.id, matches.all[0].id)
|
assert_equal(c2.id, matches.all[0].id)
|
||||||
assert_equal(c1.id, matches.all[1].id)
|
assert_equal(c1.id, matches.all[1].id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "that is below the score threshold" do
|
||||||
|
should "be hidden if not stickied" do
|
||||||
|
user = FactoryGirl.create(:user, :comment_threshold => 0)
|
||||||
|
post = FactoryGirl.create(:post)
|
||||||
|
comment = FactoryGirl.create(:comment, :post => post, :score => -5)
|
||||||
|
|
||||||
|
assert_equal([comment], post.comments.hidden(user))
|
||||||
|
assert_equal([], post.comments.visible(user))
|
||||||
|
end
|
||||||
|
|
||||||
|
should "be visible if stickied" do
|
||||||
|
user = FactoryGirl.create(:user, :comment_threshold => 0)
|
||||||
|
post = FactoryGirl.create(:post)
|
||||||
|
comment = FactoryGirl.create(:comment, :post => post, :score => -5, :is_sticky => true)
|
||||||
|
|
||||||
|
assert_equal([], post.comments.hidden(user))
|
||||||
|
assert_equal([comment], post.comments.visible(user))
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user