2019-06-04 14:40:21 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-12 16:52:43 +01:00
|
|
|
class ProjectCommentsController < ApplicationController
|
2016-12-23 20:41:23 +01:00
|
|
|
include ActionView::Helpers::TextHelper
|
2017-01-12 17:02:01 +01:00
|
|
|
include InputSanitizeHelper
|
2017-01-13 11:34:10 +01:00
|
|
|
include ApplicationHelper
|
2019-06-04 14:40:21 +02:00
|
|
|
include CommentHelper
|
2016-12-23 20:41:23 +01:00
|
|
|
|
2016-02-12 16:52:43 +01:00
|
|
|
before_action :load_vars
|
2016-09-27 16:19:31 +02:00
|
|
|
before_action :check_view_permissions, only: :index
|
2018-02-02 20:04:19 +01:00
|
|
|
before_action :check_create_permissions, only: :create
|
|
|
|
before_action :check_manage_permissions, only: %i(edit update destroy)
|
2016-02-12 16:52:43 +01:00
|
|
|
|
|
|
|
def index
|
2019-06-04 14:40:21 +02:00
|
|
|
comments = @project.last_comments(@last_comment_id, @per_page)
|
|
|
|
more_url = project_project_comments_url(@project, format: :json, from: comments.first.id) unless comments.empty?
|
2020-01-08 12:32:59 +01:00
|
|
|
comment_index_helper(comments, more_url, @last_comment_id.positive? ? nil : '/project_comments/index.html.erb')
|
2016-02-12 16:52:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2017-03-08 13:18:20 +01:00
|
|
|
@comment = ProjectComment.new(
|
2016-02-12 16:52:43 +01:00
|
|
|
message: comment_params[:message],
|
2017-03-08 13:18:20 +01:00
|
|
|
user: current_user,
|
|
|
|
project: @project
|
|
|
|
)
|
2019-06-04 14:40:21 +02:00
|
|
|
comment_create_helper(@comment)
|
2016-08-24 15:45:49 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2017-04-06 14:07:22 +02:00
|
|
|
old_text = @comment.message
|
2016-08-24 15:45:49 +02:00
|
|
|
@comment.message = comment_params[:message]
|
2019-06-04 14:40:21 +02:00
|
|
|
comment_update_helper(@comment, old_text)
|
2016-08-24 15:45:49 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2019-06-04 14:40:21 +02:00
|
|
|
comment_destroy_helper(@comment)
|
2016-08-24 15:45:49 +02:00
|
|
|
end
|
|
|
|
|
2016-02-12 16:52:43 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def load_vars
|
|
|
|
@last_comment_id = params[:from].to_i
|
2016-10-05 17:45:20 +02:00
|
|
|
@per_page = Constants::COMMENTS_SEARCH_LIMIT
|
2016-02-12 16:52:43 +01:00
|
|
|
@project = Project.find_by_id(params[:project_id])
|
|
|
|
|
2019-06-04 14:40:21 +02:00
|
|
|
render_404 unless @project
|
2016-02-12 16:52:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_view_permissions
|
2018-01-25 12:00:30 +01:00
|
|
|
render_403 unless can_read_project?(@project)
|
2016-02-12 16:52:43 +01:00
|
|
|
end
|
|
|
|
|
2018-02-02 20:04:19 +01:00
|
|
|
def check_create_permissions
|
2018-02-15 18:46:29 +01:00
|
|
|
render_403 unless can_create_comments_in_project?(@project)
|
2016-02-12 16:52:43 +01:00
|
|
|
end
|
|
|
|
|
2018-02-02 20:04:19 +01:00
|
|
|
def check_manage_permissions
|
2017-03-08 13:18:20 +01:00
|
|
|
@comment = ProjectComment.find_by_id(params[:id])
|
2018-01-25 12:00:30 +01:00
|
|
|
render_403 unless @comment.present? &&
|
2018-02-02 20:04:19 +01:00
|
|
|
can_manage_comment_in_project?(@comment)
|
2016-08-24 15:45:49 +02:00
|
|
|
end
|
|
|
|
|
2016-02-12 16:52:43 +01:00
|
|
|
def comment_params
|
|
|
|
params.require(:comment).permit(:message)
|
|
|
|
end
|
|
|
|
end
|