2014-08-28 14:09:36 -05:00
|
|
|
class PermalinksController < ApplicationController
|
|
|
|
skip_before_filter :check_xhr, :preload_json
|
|
|
|
|
|
|
|
def show
|
2015-07-21 22:40:45 -05:00
|
|
|
url = request.fullpath
|
2015-04-23 15:45:28 -05:00
|
|
|
|
2014-09-10 12:58:52 -05:00
|
|
|
permalink = Permalink.find_by_url(url)
|
2015-04-23 15:45:28 -05:00
|
|
|
|
|
|
|
raise Discourse::NotFound unless permalink
|
|
|
|
|
|
|
|
if permalink.external_url
|
|
|
|
redirect_to permalink.external_url, status: :moved_permanently
|
|
|
|
elsif permalink.target_url
|
2015-10-12 15:48:32 -05:00
|
|
|
redirect_to permalink.target_url, status: :moved_permanently
|
2014-08-28 14:09:36 -05:00
|
|
|
else
|
|
|
|
raise Discourse::NotFound
|
|
|
|
end
|
|
|
|
end
|
2015-04-23 15:45:28 -05:00
|
|
|
|
2014-08-28 14:09:36 -05:00
|
|
|
end
|