# his is the application's main controller. Features defined here are # available in all controllers. class ApplicationController < ActionController::Base helper :document helper :language design :holder => 'environment' def self.no_design_blocks @no_design_blocks = true end module UsesDesignBlocksHelper def uses_design_blocks? ! self.class.instance_variable_get('@no_design_blocks') end end helper UsesDesignBlocksHelper include UsesDesignBlocksHelper # Be sure to include AuthenticationSystem in Application Controller instead include AuthenticatedSystem include PermissionCheck init_gettext 'noosfero' include NeedsProfile before_filter :detect_stuff_by_domain attr_reader :environment def self.acts_as_environment_admin_controller before_filter :load_admin_controller end # declares that the given actions cannot be accessed by other HTTP # method besides POST. def self.post_only(actions, redirect = { :action => 'index'}) verify :method => :post, :only => actions, :redirect_to => redirect end protected # TODO: move this logic somewhere else (Domain class?) def detect_stuff_by_domain @domain = Domain.find_by_name(request.host) if @domain.nil? @environment = Environment.default else @environment = @domain.environment @profile = @domain.profile end end def render_not_found(path = nil) @path ||= request.path # raise "#{@path} not found" render(:file => File.join(RAILS_ROOT, 'app', 'views', 'shared', 'not_found.rhtml'), :layout => 'not_found', :status => 404) && false end def load_admin_controller # TODO: check access control end def load_profile @profile = Profile.find_by_identifier(params[:profile]) unless @profile #raise "bli %s" % @profile.inspect # @profile = Profile.find_by_identifier(params[:profile]) unless @profile render_not_found unless @profile end def user current_user.person if logged_in? end end