2014-08-29 03:09:36 +08:00
|
|
|
class PermalinksController < ApplicationController
|
|
|
|
skip_before_filter :check_xhr, :preload_json
|
|
|
|
|
|
|
|
def show
|
2014-12-05 05:38:58 +08:00
|
|
|
url = request.fullpath[1..-1]
|
2015-04-24 04:45:28 +08:00
|
|
|
|
2014-09-11 01:58:52 +08:00
|
|
|
permalink = Permalink.find_by_url(url)
|
2015-04-24 04:45:28 +08:00
|
|
|
|
|
|
|
raise Discourse::NotFound unless permalink
|
|
|
|
|
|
|
|
if permalink.external_url
|
|
|
|
redirect_to permalink.external_url, status: :moved_permanently
|
|
|
|
elsif permalink.target_url
|
2015-04-20 11:35:53 +08:00
|
|
|
redirect_to "#{Discourse::base_uri}#{permalink.target_url}", status: :moved_permanently
|
2014-08-29 03:09:36 +08:00
|
|
|
else
|
|
|
|
raise Discourse::NotFound
|
|
|
|
end
|
|
|
|
end
|
2015-04-24 04:45:28 +08:00
|
|
|
|
2014-08-29 03:09:36 +08:00
|
|
|
end
|