mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
23 lines
486 B
Ruby
23 lines
486 B
Ruby
class StaticController < ApplicationController
|
|
|
|
skip_before_filter :check_xhr
|
|
|
|
def show
|
|
|
|
page = params[:id]
|
|
|
|
# Don't allow paths like ".." or "/" or anything hacky like that
|
|
page.gsub!(/[^a-z0-9\_\-]/, '')
|
|
|
|
file = "static/#{page}.html"
|
|
templates = lookup_context.find_all(file)
|
|
if templates.any?
|
|
render "static/#{page}", layout: !request.xhr?, formats: [:html]
|
|
return
|
|
end
|
|
|
|
render file: 'public/404', layout: false, status: 404
|
|
end
|
|
|
|
end
|