You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
1.4 KiB

class PagesController < ApplicationController
skip_before_filter :authenticate_user!
layout proc{|controller|
return false if request.xhr?
user_signed_in? ? 'application' : 'public'
}
rescue_from ActionView::MissingTemplate do |exception|
if exception.message =~ %r{Missing template pages/}
raise ActionController::RoutingError, "No such page: #{params[:id]}"
else
raise exception
end
end
def show
return redirect_to(domains_path) if user_signed_in? && params[:id] == "home"
options = {template: current_page}
case params[:id]
when "contact"
init = user_signed_in? ? {:name => current_user.name, :email => current_user.email} : {}
@contact_form = ContactForm.new(init)
when "home"
options[:layout] = 'home' unless request.xhr?
when "signed_out"
if user_signed_in?
flash[:warning] = "You are still authenticated"
redirect_to after_sign_in_path_for(current_user) and return
end
end
render options
end
def contact
@contact_form = ContactForm.new(params[:contact_form])
if !@contact_form.deliver
render :template => 'pages/contact'
else
redirect_to :back, :notice => 'Your notification has been sent!'
end
end
protected
def current_page
@current_page ||= "pages/#{clean_path}"
end
def clean_path
Pathname.new("/#{params[:id]}").cleanpath.to_s[1..-1]
end
end