mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
4b8acce92b
Limitations: the user profile "open external links in new tab setting" is slightly broken for "External URL" permalinks. Remove the copy from the admin permalinks page stating that this doesn't work.
45 lines
970 B
Ruby
45 lines
970 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PermalinksController < ApplicationController
|
|
skip_before_action :check_xhr, :preload_json, only: [:show]
|
|
|
|
def show
|
|
url = request.fullpath
|
|
|
|
permalink = Permalink.find_by_url(url)
|
|
|
|
raise Discourse::NotFound unless permalink
|
|
|
|
if permalink.target_url
|
|
redirect_to permalink.target_url, status: :moved_permanently
|
|
else
|
|
raise Discourse::NotFound
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
end
|