debian-mirror-gitlab/app/controllers/help_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

134 lines
3.9 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class HelpController < ApplicationController
2020-04-22 19:07:51 +05:30
skip_before_action :authenticate_user!, unless: :public_visibility_restricted?
2021-04-17 20:07:23 +05:30
skip_before_action :check_two_factor_requirement
2022-06-21 17:19:12 +05:30
feature_category :not_owned # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
2015-09-25 12:07:36 +05:30
2015-09-11 14:41:01 +05:30
layout 'help'
2018-03-17 18:26:18 +05:30
# Taken from Jekyll
# https://github.com/jekyll/jekyll/blob/3.5-stable/lib/jekyll/document.rb#L13
2019-07-31 22:56:46 +05:30
YAML_FRONT_MATTER_REGEXP = /\A(---\s*\n.*?\n?)^((---|\.\.\.)\s*$\n?)/m.freeze
2018-03-17 18:26:18 +05:30
2014-09-02 18:07:02 +05:30
def index
2022-10-11 01:57:18 +05:30
@help_index = get_markdown_without_frontmatter(path_to_doc('index.md'))
2015-09-25 12:07:36 +05:30
2019-07-07 11:18:12 +05:30
# Prefix Markdown links with `help/` unless they are external links.
# '//' not necessarily part of URL, e.g., mailto:mail@example.com
# See https://rubular.com/r/DFHZl5w8d3bpzV
@help_index.gsub!(%r{(?<delim>\]\()(?!\w+:)(?!/)(?<link>[^\)\(]+\))}) do
2017-08-17 22:00:37 +05:30
"#{$~[:delim]}#{Gitlab.config.gitlab.relative_url_root}/help/#{$~[:link]}"
end
2014-09-02 18:07:02 +05:30
end
def show
2022-07-23 23:45:48 +05:30
@path = Rack::Utils.clean_path_info(params[:path])
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
respond_to do |format|
format.any(:markdown, :md, :html) do
2021-01-03 14:25:43 +05:30
if redirect_to_documentation_website?
redirect_to documentation_url
2015-04-26 12:48:37 +05:30
else
2021-01-03 14:25:43 +05:30
render_documentation
2015-04-26 12:48:37 +05:30
end
end
2019-12-21 20:55:43 +05:30
# Allow access to specific media files in the doc folder
format.any(:png, :gif, :jpeg, :mp4, :mp3) do
2020-05-24 23:13:21 +05:30
# Note: We are purposefully NOT using `Rails.root.join` because of https://gitlab.com/gitlab-org/gitlab/-/issues/216028.
2022-07-23 23:45:48 +05:30
path = path_to_doc("#{@path}.#{params[:format]}")
2015-04-26 12:48:37 +05:30
if File.exist?(path)
send_file(path, disposition: 'inline')
else
head :not_found
end
end
# Any other format we don't recognize, just respond 404
format.any { head :not_found }
2014-09-02 18:07:02 +05:30
end
end
def shortcuts
end
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
def instance_configuration
@instance_configuration = InstanceConfiguration.new
end
2022-10-11 01:57:18 +05:30
def drawers
@clean_path = Rack::Utils.clean_path_info(params[:markdown_file])
@path = path_to_doc("#{@clean_path}.md")
if File.exist?(@path)
render :drawers, formats: :html, layout: false
else
head :not_found
end
end
2015-04-26 12:48:37 +05:30
private
2022-10-11 01:57:18 +05:30
# Remove YAML frontmatter so that it doesn't look weird
helper_method :get_markdown_without_frontmatter
def get_markdown_without_frontmatter(path)
File.read(path).gsub(YAML_FRONT_MATTER_REGEXP, '')
end
2021-01-03 14:25:43 +05:30
def redirect_to_documentation_website?
2022-07-23 23:45:48 +05:30
Gitlab::UrlSanitizer.valid_web?(documentation_url)
2021-01-03 14:25:43 +05:30
end
def documentation_url
return unless documentation_base_url
@documentation_url ||= Gitlab::Utils.append_path(documentation_base_url, documentation_file_path)
end
def documentation_base_url
2021-03-11 19:13:27 +05:30
@documentation_base_url ||= documentation_base_url_from_yml_configuration || documentation_base_url_from_db
end
# DEPRECATED
def documentation_base_url_from_db
Gitlab::CurrentSettings.current_application_settings.help_page_documentation_base_url.presence
end
def documentation_base_url_from_yml_configuration
::Gitlab.config.gitlab_docs.host.presence if ::Gitlab.config.gitlab_docs.enabled
2021-01-03 14:25:43 +05:30
end
def documentation_file_path
@documentation_file_path ||= [version_segment, 'ee', "#{@path}.html"].compact.join('/')
end
def version_segment
return if Gitlab.pre_release?
version = Gitlab.version_info
[version.major, version.minor].join('.')
end
def render_documentation
# Note: We are purposefully NOT using `Rails.root.join` because of https://gitlab.com/gitlab-org/gitlab/-/issues/216028.
2022-07-23 23:45:48 +05:30
path = path_to_doc("#{@path}.md")
2021-01-03 14:25:43 +05:30
if File.exist?(path)
2022-10-11 01:57:18 +05:30
@markdown = get_markdown_without_frontmatter(path)
2021-01-03 14:25:43 +05:30
2022-07-23 23:45:48 +05:30
render :show, formats: :html
2021-01-03 14:25:43 +05:30
else
# Force template to Haml
2022-07-23 23:45:48 +05:30
render 'errors/not_found', layout: 'errors', status: :not_found, formats: :html
2021-01-03 14:25:43 +05:30
end
end
2022-07-23 23:45:48 +05:30
def path_to_doc(file_name)
File.join(Rails.root, 'doc', file_name)
end
2014-09-02 18:07:02 +05:30
end
2021-12-11 22:18:48 +05:30
::HelpController.prepend_mod