Sha256: 29da301fb667a4c357c59b055ed19a9e4a9777284932c265db468cc5ac8c700f
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
module Galakei::SessionIdParameter::InUrl # :nodoc: if Rails::VERSION::MINOR == 0 ENV_SESSION_OPTIONS_KEY = ActionDispatch::Session::AbstractStore::ENV_SESSION_OPTIONS_KEY else require "rack/session/abstract/id.rb" ENV_SESSION_OPTIONS_KEY = Rack::Session::Abstract::ENV_SESSION_OPTIONS_KEY end def url_for(options = {}) return super unless inject_session_id_parameter?(options) session_opts = request.env[ENV_SESSION_OPTIONS_KEY] # if we don't have a session ID yet, create one if session_opts[:id].blank? # make sure to reset any active record session store, # we'll have to create a new one for the new session request.env[ActiveRecord::SessionStore::SESSION_RECORD_KEY] = nil if defined?(ActiveRecord) # create a new session ID session_opts[:id] = ActiveSupport::SecureRandom.hex(8) end super(options.merge(::Rails.application.config.session_options[:key] => session_opts[:id])) end private def inject_session_id_parameter?(options) return false unless options.is_a?(Hash) && request return true if request.imode_browser_1_0? # cookies on older AU handsets using SSL are unreliable return true if request.au_browser_6? && request.ssl? # au and softbank have two forms of cookies depending on if it is # http or https, so carry over session id when switching protocols return false unless options[:protocol] request.different_cookie_in_ssl? && (request.protocol != options[:protocol]) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
galakei-0.13.1 | lib/galakei/session_id_parameter/in_url.rb |