/** * 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.kernel.security.auth; import com.liferay.portal.kernel.service.GroupLocalServiceUtil; import com.liferay.portal.kernel.service.UserLocalServiceUtil; import com.liferay.portal.kernel.util.CharPool; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.PrefsPropsUtil; import com.liferay.portal.kernel.util.PropsKeys; import com.liferay.portal.kernel.util.PropsUtil; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.StringUtil; import com.liferay.portal.kernel.util.Validator; /** * @author Brian Wing Shun Chan * @author Alexander Chow * @author Juan Fernández */ public class DefaultScreenNameGenerator implements ScreenNameGenerator { @Override public String generate(long companyId, long userId, String emailAddress) throws Exception { String screenName = null; if (Validator.isNotNull(emailAddress)) { screenName = StringUtil.extractFirst(emailAddress, CharPool.AT); screenName = StringUtil.toLowerCase(screenName); for (char c : screenName.toCharArray()) { if (!Validator.isChar(c) && !Validator.isDigit(c) && (c != CharPool.DASH) && (c != CharPool.PERIOD)) { screenName = StringUtil.replace( screenName, c, CharPool.PERIOD); } } if (screenName.equals(DefaultScreenNameValidator.POSTFIX)) { screenName += StringPool.PERIOD + userId; } } else { screenName = String.valueOf(userId); } if (!_USERS_SCREEN_NAME_ALLOW_NUMERIC && Validator.isNumber(screenName)) { screenName = _NON_NUMERICAL_PREFIX + screenName; } String[] reservedScreenNames = PrefsPropsUtil.getStringArray( companyId, PropsKeys.ADMIN_RESERVED_SCREEN_NAMES, StringPool.NEW_LINE, _ADMIN_RESERVED_SCREEN_NAMES); for (String reservedScreenName : reservedScreenNames) { if (StringUtil.equalsIgnoreCase(screenName, reservedScreenName)) { return getUnusedScreenName(companyId, screenName); } } if (UserLocalServiceUtil.fetchUserByScreenName(companyId, screenName) != null) { return getUnusedScreenName(companyId, screenName); } if (GroupLocalServiceUtil.fetchFriendlyURLGroup( companyId, StringPool.SLASH + screenName) == null) { return screenName; } return getUnusedScreenName(companyId, screenName); } protected String getUnusedScreenName(long companyId, String screenName) { for (int i = 1;; i++) { String tempScreenName = screenName + StringPool.PERIOD + i; if (UserLocalServiceUtil.fetchUserByScreenName( companyId, tempScreenName) != null) { continue; } if (GroupLocalServiceUtil.fetchFriendlyURLGroup( companyId, StringPool.SLASH + tempScreenName) == null) { return tempScreenName; } } } private static final String[] _ADMIN_RESERVED_SCREEN_NAMES = StringUtil.splitLines( PropsUtil.get(PropsKeys.ADMIN_RESERVED_SCREEN_NAMES)); private static final String _NON_NUMERICAL_PREFIX = "user."; private static final boolean _USERS_SCREEN_NAME_ALLOW_NUMERIC = GetterUtil.getBoolean( PropsUtil.get(PropsKeys.USERS_SCREEN_NAME_ALLOW_NUMERIC)); }