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

71 lines
1.5 KiB
Ruby
Raw Normal View History

class HelpController < ApplicationController
def index
end
2013-06-06 10:19:23 +00:00
2014-04-18 15:21:21 +00:00
def show
@filepath = clean_path_info(params[:filepath])
2014-10-07 12:06:05 +00:00
@format = params[:format]
2014-04-18 15:21:21 +00:00
2014-10-07 12:06:05 +00:00
respond_to do |format|
format.md { render_doc }
format.all { send_file_data }
end
end
def shortcuts
end
private
def render_doc
if File.exists?(Rails.root.join('doc', @filepath + '.md'))
render 'show.html.haml'
2014-04-18 15:21:21 +00:00
else
not_found!
end
end
2014-10-07 12:06:05 +00:00
def send_file_data
path = Rails.root.join('doc', "#{@filepath}.#{@format}")
if File.exists?(path)
send_file(path, disposition: 'inline')
else
head :not_found
end
2013-06-30 19:10:52 +00:00
end
2015-03-08 21:46:22 +00:00
def ui
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