module GlobalSession # Rails integration for GlobalSession. # # The configuration file for Rails apps is located in +config/global_session.yml+ and a generator # (global_session_config) is available for creating a sensible default. # # There is also a generator (global_session_authority) for creating authority keypairs. # # The main integration touchpoint for Rails is the module ActionControllerInstanceMethods, # which gets mixed into ActionController::Base. This is where all of the magic happens.. # module Rails # Module that is mixed into ActionController-derived classes when the class method # +has_global_session+ is called. # module ActionControllerInstanceMethods def self.included(base) # :nodoc: base.alias_method_chain :session, :global_session end # Shortcut accessor for global session configuration object. # # === Return # config(GlobalSession::Configuration) def global_session_config request.env['global_session.config'] end def global_session_options self.class.instance_variable_get(:@global_session_options) end # Global session reader. # # === Return # session(Session):: the global session associated with the current request, nil if none def global_session @global_session end # Aliased version of ActionController::Base#session which will return the integrated # global-and-local session object (IntegratedSession). # # === Return # session(IntegratedSession):: the integrated session def session_with_global_session if global_session unless @integrated_session && (@integrated_session.local == session_without_global_session) && (@integrated_session.global == global_session) @integrated_session = IntegratedSession.new(session_without_global_session, global_session) end return @integrated_session else return session_without_global_session end end # Filter to initialize the global session. # # === Return # true:: Always returns true def global_session_initialize options = self.class.instance_variable_get(:@global_session_options) || {} if (error = request.env['global_session.error']) raise error unless options[:raise] == false else @global_session = request.env['global_session'] return true end end # Filter to disable auto-renewal of the session. # # === Return # true:: Always returns true def global_session_skip_renew request.env['global_session.req.renew'] = false true end # Filter to disable updating of the session cookie # # === Return # true:: Always returns true def global_session_skip_update request.env['global_session.req.update'] = false true end # Override for the ActionController method of the same name that logs # information about the request. Our version logs the global session ID # instead of the local session ID. # # === Parameters # name(Type):: Description # # === Return # name(Type):: Description def log_processing if logger && logger.info? log_processing_for_request_id log_processing_for_parameters end end def log_processing_for_request_id # :nodoc: if global_session && global_session.id session_id = global_session.id + " (#{session[:session_id]})" elsif session[:session_id] session_id = session[:session_id] elsif request.session_options[:id] session_id = request.session_options[:id] end request_id = "\n\nProcessing #{self.class.name}\##{action_name} " request_id << "to #{params[:format]} " if params[:format] request_id << "(for #{request_origin.split[0]}) [#{request.method.to_s.upcase}]" request_id << "\n Session ID: #{session_id}" if session_id logger.info(request_id) end def log_processing_for_parameters # :nodoc: parameters = respond_to?(:filter_parameters) ? filter_parameters(params) : params.dup parameters = parameters.except!(:controller, :action, :format, :_method) logger.info " Parameters: #{parameters.inspect}" unless parameters.empty? end end end end