|
@ -63,7 +63,7 @@ public class SteamSignIn { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public ResponseEntity<Void> ConstructURLAndRedirect(){ |
|
|
public ResponseEntity<Void> ConstructURLAndRedirect(boolean authentication_discord){ |
|
|
Matcher result = refinedScripts.matcher(responseURL); |
|
|
Matcher result = refinedScripts.matcher(responseURL); |
|
|
if (!result.find() || result.group(0).isEmpty()){ |
|
|
if (!result.find() || result.group(0).isEmpty()){ |
|
|
responseURL = String.format("http://%s", responseURL); |
|
|
responseURL = String.format("http://%s", responseURL); |
|
@ -72,8 +72,8 @@ public class SteamSignIn { |
|
|
HashMap<String, String> authParameters = new HashMap<>(); |
|
|
HashMap<String, String> authParameters = new HashMap<>(); |
|
|
authParameters.put("openid.ns", "http://specs.openid.net/auth/2.0"); |
|
|
authParameters.put("openid.ns", "http://specs.openid.net/auth/2.0"); |
|
|
authParameters.put("openid.mode", "checkid_setup"); |
|
|
authParameters.put("openid.mode", "checkid_setup"); |
|
|
authParameters.put("openid.return_to", responseURL); |
|
|
authParameters.put("openid.return_to", responseURL + "/" + (authentication_discord?"disco":"root")); |
|
|
authParameters.put("openid.realm", responseURL); |
|
|
authParameters.put("openid.realm", responseURL + "/" + (authentication_discord?"disco":"root")); |
|
|
authParameters.put("openid.identity", "http://specs.openid.net/auth/2.0/identifier_select"); |
|
|
authParameters.put("openid.identity", "http://specs.openid.net/auth/2.0/identifier_select"); |
|
|
authParameters.put("openid.claimed_id", "http://specs.openid.net/auth/2.0/identifier_select"); |
|
|
authParameters.put("openid.claimed_id", "http://specs.openid.net/auth/2.0/identifier_select"); |
|
|
|
|
|
|
|
|