com.liferay.portal.security.auth.AuthPipeline Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.security.auth;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMap;
import com.liferay.osgi.service.tracker.collections.map.ServiceTrackerMapFactory;
import com.liferay.portal.kernel.model.CompanyConstants;
import com.liferay.portal.kernel.module.util.SystemBundleUtil;
import com.liferay.portal.kernel.security.auth.AuthException;
import com.liferay.portal.kernel.security.auth.AuthFailure;
import com.liferay.portal.kernel.security.auth.Authenticator;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.ListUtil;
import java.util.List;
import java.util.Map;
/**
* @author Brian Wing Shun Chan
*/
public class AuthPipeline {
public static int authenticateByEmailAddress(
String key, long companyId, String emailAddress, String password,
Map headerMap, Map parameterMap)
throws AuthException {
return _authenticate(
key, companyId, emailAddress, password,
CompanyConstants.AUTH_TYPE_EA, headerMap, parameterMap);
}
public static int authenticateByScreenName(
String key, long companyId, String screenName, String password,
Map headerMap, Map parameterMap)
throws AuthException {
return _authenticate(
key, companyId, screenName, password, CompanyConstants.AUTH_TYPE_SN,
headerMap, parameterMap);
}
public static int authenticateByUserId(
String key, long companyId, long userId, String password,
Map headerMap, Map parameterMap)
throws AuthException {
return _authenticate(
key, companyId, String.valueOf(userId), password,
CompanyConstants.AUTH_TYPE_ID, headerMap, parameterMap);
}
public static void onFailureByEmailAddress(
String key, long companyId, String emailAddress,
Map headerMap, Map parameterMap)
throws AuthException {
_onFailure(
key, companyId, emailAddress, CompanyConstants.AUTH_TYPE_EA,
headerMap, parameterMap);
}
public static void onFailureByScreenName(
String key, long companyId, String screenName,
Map headerMap, Map parameterMap)
throws AuthException {
_onFailure(
key, companyId, screenName, CompanyConstants.AUTH_TYPE_SN,
headerMap, parameterMap);
}
public static void onFailureByUserId(
String key, long companyId, long userId,
Map headerMap, Map parameterMap)
throws AuthException {
_onFailure(
key, companyId, String.valueOf(userId),
CompanyConstants.AUTH_TYPE_ID, headerMap, parameterMap);
}
public static void onMaxFailuresByEmailAddress(
String key, long companyId, String emailAddress,
Map headerMap, Map parameterMap)
throws AuthException {
onFailureByEmailAddress(
key, companyId, emailAddress, headerMap, parameterMap);
}
public static void onMaxFailuresByScreenName(
String key, long companyId, String screenName,
Map headerMap, Map parameterMap)
throws AuthException {
onFailureByScreenName(
key, companyId, screenName, headerMap, parameterMap);
}
public static void onMaxFailuresByUserId(
String key, long companyId, long userId,
Map headerMap, Map parameterMap)
throws AuthException {
onFailureByUserId(key, companyId, userId, headerMap, parameterMap);
}
private static int _authenticate(
String key, long companyId, String login, String password,
String authType, Map headerMap,
Map parameterMap)
throws AuthException {
List authenticators = _authenticators.getService(key);
if (ListUtil.isEmpty(authenticators)) {
return Authenticator.SUCCESS;
}
boolean skipLiferayCheck = false;
for (Authenticator authenticator : authenticators) {
try {
int authResult = Authenticator.FAILURE;
if (authType.equals(CompanyConstants.AUTH_TYPE_EA)) {
authResult = authenticator.authenticateByEmailAddress(
companyId, login, password, headerMap, parameterMap);
}
else if (authType.equals(CompanyConstants.AUTH_TYPE_SN)) {
authResult = authenticator.authenticateByScreenName(
companyId, login, password, headerMap, parameterMap);
}
else if (authType.equals(CompanyConstants.AUTH_TYPE_ID)) {
long userId = GetterUtil.getLong(login);
authResult = authenticator.authenticateByUserId(
companyId, userId, password, headerMap, parameterMap);
}
if (authResult == Authenticator.SKIP_LIFERAY_CHECK) {
skipLiferayCheck = true;
}
else if (authResult != Authenticator.SUCCESS) {
return authResult;
}
}
catch (AuthException authException) {
throw authException;
}
catch (Exception exception) {
throw new AuthException(exception);
}
}
if (skipLiferayCheck) {
return Authenticator.SKIP_LIFERAY_CHECK;
}
return Authenticator.SUCCESS;
}
private static void _onFailure(
String key, long companyId, String login, String authType,
Map headerMap, Map parameterMap)
throws AuthException {
List authFailures = _authFailures.getService(key);
if (authFailures.isEmpty()) {
return;
}
for (AuthFailure authFailure : authFailures) {
try {
if (authType.equals(CompanyConstants.AUTH_TYPE_EA)) {
authFailure.onFailureByEmailAddress(
companyId, login, headerMap, parameterMap);
}
else if (authType.equals(CompanyConstants.AUTH_TYPE_SN)) {
authFailure.onFailureByScreenName(
companyId, login, headerMap, parameterMap);
}
else if (authType.equals(CompanyConstants.AUTH_TYPE_ID)) {
long userId = GetterUtil.getLong(login);
authFailure.onFailureByUserId(
companyId, userId, headerMap, parameterMap);
}
}
catch (AuthException authException) {
throw authException;
}
catch (Exception exception) {
throw new AuthException(exception);
}
}
}
private static final ServiceTrackerMap>
_authenticators = ServiceTrackerMapFactory.openMultiValueMap(
SystemBundleUtil.getBundleContext(), Authenticator.class, "key");
private static final ServiceTrackerMap>
_authFailures = ServiceTrackerMapFactory.openMultiValueMap(
SystemBundleUtil.getBundleContext(), AuthFailure.class, "key");
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy