2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-09-13 05:46:43 +08:00
|
|
|
class ComposerMessagesController < ApplicationController
|
|
|
|
|
2018-02-01 12:17:59 +08:00
|
|
|
requires_login
|
2013-09-13 05:46:43 +08:00
|
|
|
|
|
|
|
def index
|
2016-06-07 04:58:35 +08:00
|
|
|
finder = ComposerMessagesFinder.new(current_user, params.slice(:composer_action, :topic_id, :post_id))
|
2016-06-07 01:52:24 +08:00
|
|
|
json = { composer_messages: [finder.find].compact }
|
2013-09-13 05:46:43 +08:00
|
|
|
|
2016-06-09 05:20:32 +08:00
|
|
|
if params[:topic_id].present?
|
2016-06-07 04:58:35 +08:00
|
|
|
topic = Topic.where(id: params[:topic_id]).first
|
|
|
|
if guardian.can_see?(topic)
|
2017-07-28 09:20:09 +08:00
|
|
|
json[:extras] = { duplicate_lookup: TopicLink.duplicate_lookup(topic) }
|
2016-06-07 04:58:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-07 01:52:24 +08:00
|
|
|
render_json_dump(json, rest_serializer: true)
|
|
|
|
end
|
2013-09-13 05:46:43 +08:00
|
|
|
end
|