Java tutorial
/* * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.wso2.carbon.identity.sample.extension.auth; import org.apache.commons.lang.StringUtils; import org.wso2.carbon.identity.application.authentication.framework.context.AuthenticationContext; import org.wso2.carbon.identity.application.authentication.framework.exception.AuthenticationFailedException; import org.wso2.carbon.identity.application.authentication.framework.util.FrameworkConstants; import org.wso2.carbon.identity.application.authentication.framework.util.FrameworkUtils; import org.wso2.carbon.identity.application.common.model.Property; import org.wso2.carbon.identity.core.util.IdentityUtil; import java.io.IOException; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Sample Hardware-Key Authenticator. */ public class SampleHardwareKeyAuthenticator extends AbstractSampleAuthenticator { private static final long serialVersionUID = 6439291340285653402L; private static final String HARDWARE_KEY_APP_URL = "HardwareKeyAppUrl"; @Override public boolean canHandle(HttpServletRequest request) { String authenticatorName = request.getParameter("authenticatorName"); if (authenticatorName != null && StringUtils.equals(authenticatorName, getName())) { return true; } return false; } @Override protected String getPageUrlProperty() { return HARDWARE_KEY_APP_URL; } @Override public String getContextIdentifier(HttpServletRequest request) { String identifier = request.getParameter("sessionDataKey"); return identifier; } @Override public String getName() { return "SampleHardwareKeyAuthenticator"; } @Override public String getFriendlyName() { return "Sample HardwareKey Authenticator"; } @Override protected void initiateAuthenticationRequest(HttpServletRequest request, HttpServletResponse response, AuthenticationContext context) throws AuthenticationFailedException { String loginPage = IdentityUtil.getServerURL("sample-auth", true, true) + "/hwk.jsp"; String queryParams = FrameworkUtils.getQueryStringWithFrameworkContextId(context.getQueryParams(), context.getCallerSessionKey(), context.getContextIdentifier()); try { String retryParam = ""; if (context.isRetrying()) { retryParam = "&authFailure=true&authFailureMsg=login.fail.message"; } String callbackUrl = IdentityUtil.getServerURL(FrameworkConstants.COMMONAUTH, true, true); callbackUrl = callbackUrl + "?sessionDataKey=" + context.getContextIdentifier() + "&authenticatorName=" + getName(); String encodedUrl = URLEncoder.encode(callbackUrl, StandardCharsets.UTF_8.name()); response.sendRedirect(response.encodeRedirectURL(loginPage + ("?" + queryParams)) + "&callbackUrl=" + encodedUrl + "&authenticators=SampleHardwareKeyAuthenticator:" + "LOCAL" + retryParam); } catch (IOException e) { throw new AuthenticationFailedException( "Authentication failed for the Sample Hardware-key Authenticator.", e); } } @Override public String getClaimDialectURI() { return null; } @Override public List<Property> getConfigurationProperties() { List<Property> configProperties = new ArrayList<>(); Property appUrl = new Property(); appUrl.setName(HARDWARE_KEY_APP_URL); appUrl.setValue(IdentityUtil.getServerURL("sample-auth", true, true) + "/hwk.jsp"); appUrl.setDisplayName("Hardware Key Sample URL"); appUrl.setRequired(true); appUrl.setDescription("Enter sample Hardware-Key URL value."); appUrl.setDisplayOrder(0); configProperties.add(appUrl); return configProperties; } protected boolean retryAuthenticationEnabled() { return true; } }