2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-03-13 00:15:13 -05:00
|
|
|
class HighlightJsController < ApplicationController
|
2017-08-30 23:06:56 -05:00
|
|
|
skip_before_action :preload_json,
|
|
|
|
:redirect_to_login_if_required,
|
2024-06-25 06:32:18 -05:00
|
|
|
:redirect_to_profile_if_required,
|
2017-08-30 23:06:56 -05:00
|
|
|
:check_xhr,
|
|
|
|
:verify_authenticity_token,
|
|
|
|
only: [:show]
|
2015-03-13 00:15:13 -05:00
|
|
|
|
2021-01-28 20:14:49 -06:00
|
|
|
before_action :apply_cdn_headers, only: [:show]
|
|
|
|
|
2015-03-13 00:15:13 -05:00
|
|
|
def show
|
2015-05-22 01:15:46 -05:00
|
|
|
no_cookies
|
|
|
|
|
2015-03-13 00:15:13 -05:00
|
|
|
RailsMultisite::ConnectionManagement.with_hostname(params[:hostname]) do
|
|
|
|
current_version = HighlightJs.version(SiteSetting.highlighted_languages)
|
|
|
|
|
|
|
|
return redirect_to path(HighlightJs.path) if current_version != params[:version]
|
|
|
|
|
|
|
|
# note, this can be slightly optimised by caching the bundled file, it cuts down on N reads
|
|
|
|
# our nginx config caches this so in practical terms it does not really matter and keeps
|
|
|
|
# code simpler
|
2020-09-02 14:32:57 -05:00
|
|
|
languages = SiteSetting.highlighted_languages.split("|")
|
|
|
|
|
|
|
|
highlight_js = HighlightJs.bundle(languages)
|
2015-03-13 00:15:13 -05:00
|
|
|
|
|
|
|
response.headers["Last-Modified"] = 10.years.ago.httpdate
|
|
|
|
response.headers["Content-Length"] = highlight_js.bytesize.to_s
|
2017-02-23 12:05:00 -06:00
|
|
|
immutable_for 1.year
|
2015-03-13 00:15:13 -05:00
|
|
|
|
2017-08-30 23:06:56 -05:00
|
|
|
render plain: highlight_js, disposition: nil, content_type: "application/javascript"
|
2015-03-13 00:15:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|