proxyidpfinder.jsp revision 9740fa737ef2ed9453ab46d145777dbbbf6a747b
<%--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
Copyright (c) 2010-2013 ForgeRock AS. All Rights Reserved.
The contents of this file are subject to the terms
of the Common Development and Distribution License
(the License). You may not use this file except in
compliance with the License.
You can obtain a copy of the License at
http://forgerock.org/license/CDDLv1.0.html
See the License for the specific language governing
permission and limitations under the License.
When distributing Covered Code, include this CDDL
Header Notice in each file and include the License file
at http://forgerock.org/license/CDDLv1.0.html
If applicable, add the following below the CDDL Header,
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
--%>
<%@ page import="com.sun.identity.shared.encode.Base64" %>
<%@ page import="com.sun.identity.saml2.common.SAML2Constants" %>
<%@ page import="com.sun.identity.saml2.common.SAML2Utils" %>
<%@ page import="org.owasp.esapi.ESAPI"%>
<%@ page import="java.util.List" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>IdP Selection</title>
</head>
<body>
<%
List idpList = null;
String errorURL = "idpfinderError.html";
String samlIdP = "";
String relayState = "";
String idpListSt = "";
String requestedAuthnContext ="";
HttpSession hts = request.getSession();
if (hts == null) {
%>
<jsp:forward page="<%= errorURL %>" />
<%
}
String [] lista = null;
idpListSt = (String) hts.getAttribute("_IDPLIST_");
if (idpListSt != null && !idpListSt.isEmpty()) {
lista = idpListSt.split(" ");
} else {
%>
<jsp:forward page="<%= errorURL %>" />
<%
}
relayState = (String) hts.getAttribute("_RELAYSTATE_");
if (relayState == null || relayState.isEmpty() ||
!SAML2Utils.isRelayStateURLValid(request, relayState, SAML2Constants.IDP_ROLE)) {
%>
<jsp:forward page="<%= errorURL %>" />
<%
}
requestedAuthnContext = (String) hts.getAttribute("_REQAUTHNCONTEXT_");
if ( requestedAuthnContext == null) {
%>
<jsp:forward page="<%= errorURL %>" />
<%
}
if (requestedAuthnContext.isEmpty()) {
%>
<jsp:forward page="<%= errorURL %>" />
<%
}
String spRequester = (String) hts.getAttribute("_SPREQUESTER_");
if (spRequester == null) response.sendRedirect(errorURL);
if (spRequester.isEmpty()) response.sendRedirect(errorURL);
samlIdP = request.getParameter("_saml_idp");
if (!ESAPI.validator().isValidInput("HTTP Parameter Value: " + samlIdP, samlIdP,
"HTTPParameterValue", 2000, true)){
samlIdP = null;
}
if (samlIdP != null && !samlIdP.isEmpty()) {
hts.removeAttribute("_IDPLIST_");
hts.removeAttribute("_RELAYSTATE_");
hts.removeAttribute("_SPREQUESTER_");
hts.removeAttribute("_REQAUTHNCONTEXT_");
if (relayState.indexOf("?") == -1) {
relayState += "?";
} else {
relayState += "&";
}
response.sendRedirect(relayState + "_saml_idp=" + samlIdP);
}
%>
<h2>Welcome to the Federation Broker</h2>
<p>You are here because you initiated a request in the Service Provider <b><%= spRequester %></b> and
<br>You asked for the Assurance level <b><%= requestedAuthnContext %></b>:
</p>
<p>Please select your preferred IdP:</p>
<form action="" method="POST">
<%
if (lista != null && lista.length > 0) {
for(String preferredIDP : lista) {
String preferredIDPB64 = Base64.encode(preferredIDP.getBytes());
%>
<input type="radio" name="_saml_idp" value="<%= preferredIDPB64 %>"> <%= preferredIDP %>
<br>
<%
}
}
%>
<p><input type="submit" value="Submit"></p>
</form>
</body>
</html>