gitlab-org--gitlab-foss/app/controllers/help_controller.rb

102 lines
2.6 KiB
Ruby
Raw Normal View History

class HelpController < ApplicationController
2015-09-08 13:42:30 +00:00
skip_before_action :authenticate_user!, :reject_blocked
layout 'help'
2015-04-30 19:28:07 +00:00
def index
@help_index = File.read(Rails.root.join('doc', 'README.md'))
2015-09-23 04:24:17 +00:00
# Prefix Markdown links with `help/` unless they already have been
# See http://rubular.com/r/nwwhzH6Z8X
@help_index.gsub!(/(\]\()(?!help\/)([^\)\(]+)(\))/, '\1help/\2\3')
end
2013-06-06 10:19:23 +00:00
2014-04-18 15:21:21 +00:00
def show
2015-04-30 17:06:18 +00:00
@category = clean_path_info(path_params[:category])
@file = path_params[:file]
2014-04-18 15:21:21 +00:00
2015-04-15 16:45:31 +00:00
respond_to do |format|
format.any(:markdown, :md, :html) do
# Note: We are purposefully NOT using `Rails.root.join`
path = File.join(Rails.root, 'doc', @category, "#{@file}.md")
2015-04-15 16:45:31 +00:00
if File.exist?(path)
@markdown = File.read(path)
render 'show.html.haml'
else
# Force template to Haml
render 'errors/not_found.html.haml', layout: 'errors', status: 404
end
end
# Allow access to images in the doc folder
format.any(:png, :gif, :jpeg) do
# Note: We are purposefully NOT using `Rails.root.join`
path = File.join(Rails.root, 'doc', @category, "#{@file}.#{params[:format]}")
2015-04-15 16:45:31 +00:00
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-04-18 15:21:21 +00:00
end
end
def shortcuts
2013-06-30 19:10:52 +00:00
end
2015-03-08 21:46:22 +00:00
def ui
# this will work on gitlab.com
@some_user = User.find_by(username: 'dzaporozhets')
if @some_user.nil?
# this will work in dev
@some_user = User.find(1)
end
2015-03-08 21:46:22 +00:00
end
private
2015-04-15 16:45:31 +00:00
def path_params
params.require(:category)
params.require(:file)
params
end
PATH_SEPS = Regexp.union(*[::File::SEPARATOR, ::File::ALT_SEPARATOR].compact)
# Taken from ActionDispatch::FileHandler
# Cleans up the path, to prevent directory traversal outside the doc folder.
def clean_path_info(path_info)
parts = path_info.split(PATH_SEPS)
clean = []
# Walk over each part of the path
parts.each do |part|
# Turn `one//two` or `one/./two` into `one/two`.
next if part.empty? || part == '.'
if part == '..'
# Turn `one/two/../` into `one`
clean.pop
else
# Add simple folder names to the clean path.
clean << part
end
end
# If the path was an absolute path (i.e. `/` or `/one/two`),
# add `/` to the front of the clean path.
clean.unshift '/' if parts.empty? || parts.first.empty?
# Join all the clean path parts by the path separator.
::File.join(*clean)
end
end