Skip to content

Commit fb6ad86

Browse files
committed
feat: include SessionIndex in logout requests
Some idp's use the sessionindex rather than the uid to find the correct session to sign out. I've made this work by saving it in the session alongside the uid, then putting it back into the logout request where ruby-saml can handle it, and include it in the logout request
1 parent 0402c4d commit fb6ad86

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lib/omniauth/strategies/saml.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def other_phase
159159
Hash[found_attributes]
160160
end
161161

162-
extra { { :raw_info => @attributes, :response_object => @response_object } }
162+
extra { { :raw_info => @attributes, :session_index => @session_index, :response_object => @response_object } }
163163

164164
def find_attribute_by(keys)
165165
keys.each do |key|
@@ -182,6 +182,7 @@ def handle_response(raw_response, opts, settings)
182182

183183
response.is_valid?
184184
@name_id = response.name_id
185+
@session_index = response.sessionindex
185186
@attributes = response.attributes
186187
@response_object = response
187188

@@ -190,6 +191,7 @@ def handle_response(raw_response, opts, settings)
190191
end
191192

192193
session["saml_uid"] = @name_id
194+
session["saml_session_index"] = @session_index
193195
yield
194196
end
195197

@@ -220,6 +222,7 @@ def handle_logout_response(raw_response, settings)
220222

221223
session.delete("saml_uid")
222224
session.delete("saml_transaction_id")
225+
session.delete("saml_session_index")
223226

224227
redirect(slo_relay_state)
225228
end
@@ -254,6 +257,10 @@ def generate_logout_request(settings)
254257
settings.name_identifier_value = session["saml_uid"]
255258
end
256259

260+
if settings.sessionindex.nil?
261+
settings.sessionindex = session["saml_session_index"]
262+
end
263+
257264
logout_request.create(settings, RelayState: slo_relay_state)
258265
end
259266
end

0 commit comments

Comments
 (0)