2019-06-04 20:40:21 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
class MyModuleCommentsController < ApplicationController
|
2016-12-24 03:41:23 +08:00
|
|
|
include ActionView::Helpers::TextHelper
|
2017-01-13 00:02:01 +08:00
|
|
|
include InputSanitizeHelper
|
2017-01-13 18:34:10 +08:00
|
|
|
include ApplicationHelper
|
2019-06-04 20:40:21 +08:00
|
|
|
include CommentHelper
|
2016-12-24 03:41:23 +08:00
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
before_action :load_vars
|
2021-09-22 17:28:32 +08:00
|
|
|
before_action :load_comment, only: %i(update destroy)
|
2016-09-27 22:19:31 +08:00
|
|
|
before_action :check_view_permissions, only: :index
|
2021-09-22 17:28:32 +08:00
|
|
|
before_action :check_create_permissions, only: :create
|
|
|
|
before_action :check_manage_permissions, only: %i(update destroy)
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
def index
|
2019-06-04 20:40:21 +08:00
|
|
|
comments = @my_module.last_comments(@last_comment_id, @per_page)
|
2021-07-23 17:56:28 +08:00
|
|
|
unless comments.blank?
|
2019-06-04 20:40:21 +08:00
|
|
|
more_url = url_for(my_module_my_module_comments_url(@my_module, format: :json, from: comments.first.id))
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
2020-01-08 19:32:59 +08:00
|
|
|
comment_index_helper(comments, more_url, @last_comment_id.positive? ? nil : '/my_module_comments/index.html.erb')
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2017-03-08 20:18:20 +08:00
|
|
|
@comment = TaskComment.new(
|
2016-02-12 23:52:43 +08:00
|
|
|
message: comment_params[:message],
|
2017-03-08 20:18:20 +08:00
|
|
|
user: current_user,
|
|
|
|
my_module: @my_module
|
|
|
|
)
|
2019-06-04 20:40:21 +08:00
|
|
|
comment_create_helper(@comment)
|
2016-08-25 15:26:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2017-04-06 20:07:22 +08:00
|
|
|
old_text = @comment.message
|
2016-08-25 15:26:45 +08:00
|
|
|
@comment.message = comment_params[:message]
|
2019-06-04 20:40:21 +08:00
|
|
|
comment_update_helper(@comment, old_text)
|
2016-08-25 15:26:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2019-06-04 20:40:21 +08:00
|
|
|
comment_destroy_helper(@comment)
|
2016-08-25 15:26:45 +08:00
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def load_vars
|
|
|
|
@last_comment_id = params[:from].to_i
|
2016-10-05 23:45:20 +08:00
|
|
|
@per_page = Constants::COMMENTS_SEARCH_LIMIT
|
2021-09-22 17:28:32 +08:00
|
|
|
@my_module = MyModule.find_by(id: params[:my_module_id])
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2019-06-04 20:40:21 +08:00
|
|
|
render_404 unless @my_module
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
2021-09-22 17:28:32 +08:00
|
|
|
def load_comment
|
|
|
|
@comment = @my_module.task_comments.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
def check_view_permissions
|
2021-09-16 20:12:51 +08:00
|
|
|
render_403 unless can_read_my_module?(@my_module)
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
2021-09-22 17:28:32 +08:00
|
|
|
def check_create_permissions
|
2021-09-14 17:08:35 +08:00
|
|
|
render_403 unless can_create_my_module_comments?(@my_module)
|
2016-08-25 15:26:45 +08:00
|
|
|
end
|
|
|
|
|
2018-02-09 23:14:40 +08:00
|
|
|
def check_manage_permissions
|
2021-09-22 17:28:32 +08:00
|
|
|
render_403 unless can_manage_my_module_comment?(@comment)
|
2016-08-25 15:26:45 +08:00
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
def comment_params
|
|
|
|
params.require(:comment).permit(:message)
|
|
|
|
end
|
|
|
|
end
|