001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.security.auth;
016    
017    import com.liferay.portal.service.UserLocalServiceUtil;
018    
019    import java.util.Map;
020    
021    /**
022     * @author Brian Wing Shun Chan
023     * @author Scott Lee
024     */
025    public class LoginMaxFailures implements AuthFailure {
026    
027            public void onFailureByEmailAddress(
028                            long companyId, String emailAddress,
029                            Map<String, String[]> headerMap, Map<String, String[]> parameterMap)
030                    throws AuthException {
031    
032                    try {
033                            UserLocalServiceUtil.updateLockoutByEmailAddress(
034                                    companyId, emailAddress, true);
035                    }
036                    catch (Exception e) {
037                            throw new AuthException();
038                    }
039            }
040    
041            public void onFailureByScreenName(
042                            long companyId, String screenName, Map<String, String[]> headerMap,
043                            Map<String, String[]> parameterMap)
044                    throws AuthException {
045    
046                    try {
047                            UserLocalServiceUtil.updateLockoutByScreenName(
048                                    companyId, screenName, true);
049                    }
050                    catch (Exception e) {
051                            throw new AuthException();
052                    }
053            }
054    
055            public void onFailureByUserId(
056                            long companyId, long userId, Map<String, String[]> headerMap,
057                            Map<String, String[]> parameterMap)
058                    throws AuthException {
059    
060                    try {
061                            UserLocalServiceUtil.updateLockoutById(userId, true);
062                    }
063                    catch (Exception e) {
064                            throw new AuthException();
065                    }
066            }
067    
068    }