scinote-web/app/controllers/project_comments_controller.rb

195 lines
4.9 KiB
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class ProjectCommentsController < ApplicationController
before_action :load_vars
before_action :check_view_permissions, only: :index
before_action :check_add_permissions, only: [:new, :create]
before_action :check_edit_permissions, only: [:edit, :update]
before_action :check_destroy_permissions, only: [:destroy]
2016-02-12 23:52:43 +08:00
def index
@comments = @project.last_comments(@last_comment_id, @per_page)
respond_to do |format|
format.json do
2016-02-12 23:52:43 +08:00
# 'index' partial includes header and form for adding new
# messages. 'list' partial is used for showing more
# comments.
partial = 'index.html.erb'
partial = 'list.html.erb' if @last_comment_id > 0
more_url = ''
2016-02-12 23:52:43 +08:00
if @comments.count > 0
more_url = url_for(project_project_comments_url(format: :json,
from: @comments
.first.id))
2016-02-12 23:52:43 +08:00
end
render json: {
2016-09-27 23:31:37 +08:00
perPage: @per_page,
resultsNumber: @comments.length,
moreUrl: more_url,
html: render_to_string(
partial: partial,
locals: {
comments: @comments,
more_comments_url: more_url
2016-02-12 23:52:43 +08:00
}
)
2016-02-12 23:52:43 +08:00
}
end
2016-02-12 23:52:43 +08:00
end
end
def new
@comment = Comment.new(
user: current_user
)
end
def create
@comment = Comment.new(
message: comment_params[:message],
user: current_user)
2016-08-10 19:51:24 +08:00
2016-02-12 23:52:43 +08:00
respond_to do |format|
if (@comment.valid? && @project.comments << @comment)
# Generate activity
Activity.create(
type_of: :add_comment_to_project,
user: current_user,
project: @project,
message: t(
'activities.add_comment_to_project',
user: current_user.full_name,
project: @project.name
)
)
2016-02-12 23:52:43 +08:00
format.html {
flash[:success] = t(
"project_comments.create.success_flash",
project: @project.name)
redirect_to projects_path
}
format.json {
render json: {
html: render_to_string({
partial: 'comment.html.erb',
locals: {
comment: @comment
}
})
}, status: :created
}
else
response.status = 400
format.html { render :new }
format.json {
render json: {
errors: @comment.errors.to_hash(true)
2016-08-10 19:51:24 +08:00
}
2016-02-12 23:52:43 +08:00
}
end
end
end
def edit
2016-08-25 15:39:14 +08:00
@update_url =
project_project_comment_path(@project, @comment, format: :json)
respond_to do |format|
format.json do
render json: {
html: render_to_string(
partial: '/comments/edit.html.erb'
)
}
end
end
end
def update
@comment.message = comment_params[:message]
respond_to do |format|
format.json do
if @comment.save
# Generate activity
Activity.create(
type_of: :edit_project_comment,
user: current_user,
project: @project,
message: t(
'activities.edit_project_comment',
user: current_user.full_name,
project: @project.name
)
)
render json: {}, status: :ok
else
render json: { errors: @comment.errors.to_hash(true) },
status: :unprocessable_entity
end
end
end
end
def destroy
respond_to do |format|
format.json do
if @comment.destroy
# Generate activity
Activity.create(
type_of: :delete_project_comment,
user: current_user,
project: @project,
message: t(
'activities.delete_project_comment',
user: current_user.full_name,
project: @project.name
)
)
render json: {}, status: :ok
else
render json: { message: I18n.t('comments.delete_error') },
status: :unprocessable_entity
end
end
end
end
2016-02-12 23:52:43 +08:00
private
def load_vars
@last_comment_id = params[:from].to_i
@per_page = Constants::COMMENTS_SEARCH_LIMIT
2016-02-12 23:52:43 +08:00
@project = Project.find_by_id(params[:project_id])
unless @project
render_404
end
end
def check_view_permissions
unless can_view_project_comments(@project)
render_403
end
end
def check_add_permissions
unless can_add_comment_to_project(@project)
render_403
end
end
def check_edit_permissions
@comment = Comment.find_by_id(params[:id])
render_403 unless @comment.present? && can_edit_project_comment(@comment)
end
def check_destroy_permissions
@comment = Comment.find_by_id(params[:id])
render_403 unless @comment.present? && can_delete_project_comment(@comment)
end
2016-02-12 23:52:43 +08:00
def comment_params
params.require(:comment).permit(:message)
end
end