discourse/app/controllers/clicks_controller.rb

26 lines
778 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class ClicksController < ApplicationController
skip_before_filter :check_xhr
2013-02-07 10:45:24 -05:00
2013-02-05 14:16:51 -05:00
def track
2013-02-07 10:45:24 -05:00
requires_parameter(:url)
2013-02-05 14:16:51 -05:00
if params[:topic_id].present? or params[:post_id].present?
args = {url: params[:url], ip: request.remote_ip}
args[:user_id] = current_user.id if current_user.present?
args[:post_id] = params[:post_id].to_i if params[:post_id].present?
args[:topic_id] = params[:topic_id].to_i if params[:topic_id].present?
TopicLinkClick.create_from(args)
end
# Sometimes we want to record a link without a 302. Since XHR has to load the redirected
# URL we want it to not return a 302 in those cases.
if params[:redirect] == 'false'
render nothing: true
else
redirect_to(params[:url])
end
end
2013-02-07 10:45:24 -05:00
end