Sha256: c9a953f5a3e17095c1f30bec5fe89deb6ecc960e11371e83524354b1ea010607
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
module Galakei::SessionIdParameter::InUrl def url_for(options = {}) return super unless inject_session_id_parameter?(options) session_opts = request.env[ActionDispatch::Session::AbstractStore::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 # 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) return true if request.imode_browser_1_0? # 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.au? || request.softbank?) && (request.protocol != options[:protocol]) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
galakei-0.5.0 | lib/galakei/session_id_parameter/in_url.rb |