2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-08-29 03:09:36 +08:00
|
|
|
class PermalinksController < ApplicationController
|
2020-03-06 09:33:25 +08:00
|
|
|
skip_before_action :check_xhr, :preload_json, only: [:show]
|
2014-08-29 03:09:36 +08:00
|
|
|
|
|
|
|
def show
|
2015-07-22 11:40:45 +08:00
|
|
|
url = request.fullpath
|
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
|
|
|
|
|
2018-08-20 11:10:49 +08:00
|
|
|
if permalink.target_url
|
2015-10-13 04:48:32 +08:00
|
|
|
redirect_to 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
|
|
|
|
2020-03-06 09:33:25 +08:00
|
|
|
def check
|
|
|
|
begin
|
|
|
|
raise Discourse::NotFound if params[:path].blank?
|
|
|
|
|
|
|
|
permalink = Permalink.find_by_url(params[:path])
|
|
|
|
|
|
|
|
raise Discourse::NotFound unless permalink
|
|
|
|
|
|
|
|
data = {
|
|
|
|
found: true,
|
|
|
|
internal: permalink.external_url.nil?,
|
|
|
|
target_url: permalink.target_url,
|
|
|
|
}
|
|
|
|
|
|
|
|
render json: MultiJson.dump(data)
|
|
|
|
rescue Discourse::NotFound
|
|
|
|
data = {
|
|
|
|
found: false,
|
|
|
|
html: build_not_found_page(status: 200),
|
|
|
|
}
|
|
|
|
render json: MultiJson.dump(data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-29 03:09:36 +08:00
|
|
|
end
|