2014-01-01 03:37:43 +08:00
|
|
|
class EmbedController < ApplicationController
|
2015-05-20 15:12:16 +08:00
|
|
|
skip_before_filter :check_xhr, :preload_json, :verify_authenticity_token
|
2014-01-01 03:37:43 +08:00
|
|
|
before_filter :ensure_embeddable
|
|
|
|
|
|
|
|
layout 'embed'
|
|
|
|
|
2014-01-04 01:52:24 +08:00
|
|
|
def comments
|
2015-06-10 04:24:04 +08:00
|
|
|
embed_url = params[:embed_url]
|
|
|
|
|
|
|
|
topic_id = nil
|
|
|
|
if embed_url.present?
|
|
|
|
topic_id = TopicEmbed.topic_id_for_embed(embed_url)
|
|
|
|
else
|
|
|
|
topic_id = params[:topic_id].to_i
|
|
|
|
end
|
2014-01-01 03:37:43 +08:00
|
|
|
|
|
|
|
if topic_id
|
2014-06-19 05:39:12 +08:00
|
|
|
@topic_view = TopicView.new(topic_id,
|
|
|
|
current_user,
|
|
|
|
limit: SiteSetting.embed_post_limit,
|
|
|
|
exclude_first: true,
|
|
|
|
exclude_deleted_users: true)
|
|
|
|
|
2014-01-03 01:15:48 +08:00
|
|
|
@second_post_url = "#{@topic_view.topic.url}/2" if @topic_view
|
2014-01-04 03:55:37 +08:00
|
|
|
@posts_left = 0
|
|
|
|
if @topic_view && @topic_view.posts.size == SiteSetting.embed_post_limit
|
2015-05-11 16:26:21 +08:00
|
|
|
@posts_left = @topic_view.topic.posts_count - SiteSetting.embed_post_limit - 1
|
2014-01-04 03:55:37 +08:00
|
|
|
end
|
2015-06-10 04:24:04 +08:00
|
|
|
|
|
|
|
elsif embed_url.present?
|
2014-01-01 03:37:43 +08:00
|
|
|
Jobs.enqueue(:retrieve_topic, user_id: current_user.try(:id), embed_url: embed_url)
|
|
|
|
render 'loading'
|
|
|
|
end
|
|
|
|
|
|
|
|
discourse_expires_in 1.minute
|
|
|
|
end
|
|
|
|
|
2014-01-14 01:47:24 +08:00
|
|
|
def count
|
2014-05-21 03:20:02 +08:00
|
|
|
embed_urls = params[:embed_url]
|
2014-01-14 01:47:24 +08:00
|
|
|
by_url = {}
|
2014-05-21 03:20:02 +08:00
|
|
|
|
|
|
|
if embed_urls.present?
|
|
|
|
urls = embed_urls.map {|u| u.sub(/#discourse-comments$/, '').sub(/\/$/, '') }
|
|
|
|
topic_embeds = TopicEmbed.where(embed_url: urls).includes(:topic).references(:topic)
|
|
|
|
|
|
|
|
topic_embeds.each do |te|
|
2015-05-01 21:04:45 +08:00
|
|
|
url = te.embed_url
|
2014-05-21 03:20:02 +08:00
|
|
|
url = "#{url}#discourse-comments" unless params[:embed_url].include?(url)
|
|
|
|
by_url[url] = I18n.t('embed.replies', count: te.topic.posts_count - 1)
|
|
|
|
end
|
2014-01-14 01:47:24 +08:00
|
|
|
end
|
|
|
|
|
2014-04-15 00:15:41 +08:00
|
|
|
render json: {counts: by_url}, callback: params[:callback]
|
2014-01-14 01:47:24 +08:00
|
|
|
end
|
|
|
|
|
2014-01-01 03:37:43 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def ensure_embeddable
|
2014-01-03 00:32:50 +08:00
|
|
|
|
|
|
|
if !(Rails.env.development? && current_user.try(:admin?))
|
2015-08-19 05:15:46 +08:00
|
|
|
raise Discourse::InvalidAccess.new('invalid referer host') unless EmbeddableHost.host_allowed?(request.referer)
|
2014-01-03 00:32:50 +08:00
|
|
|
end
|
2014-01-01 03:37:43 +08:00
|
|
|
|
|
|
|
response.headers['X-Frame-Options'] = "ALLOWALL"
|
|
|
|
rescue URI::InvalidURIError
|
|
|
|
raise Discourse::InvalidAccess.new('invalid referer host')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|