Merged V3.0 to HEAD

12795: ALFCOM-2419: ResourceBundleWrapper is no longer (de)serializable after changes merged from 2.1-A rev 8323
   12826: Fix for ETHREEOH-37 and ETHREEOH-176.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12828 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2009-01-16 14:20:15 +00:00
parent 10a62367d6
commit f70b674593
9 changed files with 173 additions and 137 deletions

View File

@@ -49,12 +49,12 @@ import org.alfresco.web.app.servlet.AuthenticationHelper;
import org.alfresco.web.app.servlet.FacesHelper;
import org.alfresco.web.bean.ErrorBean;
import org.alfresco.web.bean.SidebarBean;
import org.alfresco.web.bean.users.UserPreferencesBean;
import org.alfresco.web.bean.dashboard.DashboardManager;
import org.alfresco.web.bean.dialog.DialogManager;
import org.alfresco.web.bean.repository.PreferencesService;
import org.alfresco.web.bean.repository.Repository;
import org.alfresco.web.bean.repository.User;
import org.alfresco.web.bean.users.UserPreferencesBean;
import org.alfresco.web.bean.wizard.WizardManager;
import org.alfresco.web.config.ClientConfigElement;
import org.alfresco.web.config.LanguagesConfigElement;
@@ -578,9 +578,6 @@ public class Application
/**
* Set the language locale for the current user context
=======
* Set the language locale for the current user session.
>>>>>>> .merge-right.r8121
*
* @param context FacesContext for current user
* @param code The ISO locale code to set
@@ -801,7 +798,7 @@ public class Application
{
locale = Locale.getDefault();
}
bundle = ResourceBundleWrapper.getResourceBundle(session.getServletContext(), MESSAGE_BUNDLE, locale);
bundle = ResourceBundleWrapper.getResourceBundle(MESSAGE_BUNDLE, locale);
session.setAttribute(MESSAGE_BUNDLE, bundle);
}
@@ -832,7 +829,7 @@ public class Application
{
locale = Locale.getDefault();
}
bundle = ResourceBundleWrapper.getResourceBundle(FacesContextUtils.getRequiredWebApplicationContext(context).getServletContext(), MESSAGE_BUNDLE, locale);
bundle = ResourceBundleWrapper.getResourceBundle(MESSAGE_BUNDLE, locale);
session.put(MESSAGE_BUNDLE, bundle);
}

View File

@@ -33,15 +33,14 @@ import java.util.MissingResourceException;
import java.util.ResourceBundle;
import java.util.Vector;
import javax.servlet.ServletContext;
import javax.faces.context.FacesContext;
import org.alfresco.error.AlfrescoRuntimeException;
import org.alfresco.repo.i18n.MessageService;
import org.alfresco.service.cmr.repository.StoreRef;
import org.alfresco.web.bean.repository.Repository;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.web.context.support.WebApplicationContextUtils;
import org.springframework.web.jsf.FacesContextUtils;
/**
@@ -58,21 +57,148 @@ public final class ResourceBundleWrapper extends ResourceBundle implements Seria
/** List of custom bundle names */
private static List<String> addedBundleNames = new ArrayList<String>(10);
/** Serializable details of the resource bundles being wrapped */
private Locale locale;
private String bundleName;
/** List of delegate resource bundles */
transient private List<ResourceBundle> delegates;
/** Message service */
transient private MessageService messageService;
public static final String BEAN_RESOURCE_MESSAGE_SERVICE = "messageService";
public static final String PATH = "app:company_home/app:dictionary/app:webclient_extension";
/**
* Constructor
*
* @param bundles the resource bundles including the default, custom and any added
*
* @param locale the locale
* @param bundleName the bundle name
*/
private ResourceBundleWrapper(List<ResourceBundle> bundles)
private ResourceBundleWrapper(Locale locale, String bundleName)
{
this.delegates = bundles;
this.locale = locale;
this.bundleName = bundleName;
}
/**
* Get the message service
*
* @return MessageService message service
*/
private MessageService getMessageService()
{
if (this.messageService == null && FacesContext.getCurrentInstance() != null)
{
this.messageService = (MessageService)FacesContextUtils.getRequiredWebApplicationContext(
FacesContext.getCurrentInstance()).getBean(BEAN_RESOURCE_MESSAGE_SERVICE);
}
return this.messageService;
}
/**
* Get a list of the delegate resource bundles
*
* @return List<ResourceBundle> list of delegate resource bundles
*/
private List<ResourceBundle> getDelegates()
{
if (this.delegates == null)
{
this.delegates = new ArrayList<ResourceBundle>(ResourceBundleWrapper.addedBundleNames.size() + 2);
// Add the bundle
this.delegates.add(getResourceBundle(locale, this.bundleName));
// first try in the repo otherwise try the classpath
ResourceBundle customBundle = null;
if (getMessageService() != null)
{
StoreRef storeRef = null;
String path = null;
try
{
String customName = null;
int idx = this.bundleName.lastIndexOf(".");
if (idx != -1)
{
customName = this.bundleName.substring(idx+1, this.bundleName.length());
}
else
{
customName = this.bundleName;
}
storeRef = Repository.getStoreRef();
// TODO - make path configurable in one place ...
// Note: path here is XPath for selectNodes query
path = PATH + "/cm:" + customName;
customBundle = getMessageService().getRepoResourceBundle(Repository.getStoreRef(), path, locale);
}
catch (Throwable t)
{
// for now ... ignore the error, cannot be found or read from repo
logger.debug("Custom Web Client properties not found: " + storeRef + path);
}
}
if (customBundle == null)
{
// also look up the custom version of the bundle in the extension package
String customName = determineCustomBundleName(this.bundleName);
customBundle = getResourceBundle(locale, customName);
}
// Add the custom bundle to the list
if (customBundle != null)
{
this.delegates.add(customBundle);
}
// Add the added bundles
for (String addedBundleName : ResourceBundleWrapper.addedBundleNames)
{
this.delegates.add(getResourceBundle(locale, addedBundleName));
}
}
return this.delegates;
}
/**
* Given a local and name, gets the resource bundle
*
* @param locale locale
* @param bundleName bundle name
* @return ResourceBundle resource bundle
*/
private ResourceBundle getResourceBundle(Locale locale, String bundleName)
{
ResourceBundle bundle = null;
try
{
// Load the bundle
bundle = ResourceBundle.getBundle(bundleName, locale);
this.delegates.add(bundle);
if (logger.isDebugEnabled())
{
logger.debug("Located and loaded bundle " + bundleName);
}
}
catch (MissingResourceException mre)
{
// ignore the error, just log some debug info
if (logger.isDebugEnabled())
{
logger.debug("Unable to load bundle " + bundleName);
}
}
return bundle;
}
/**
@@ -80,14 +206,14 @@ public final class ResourceBundleWrapper extends ResourceBundle implements Seria
*/
public Enumeration<String> getKeys()
{
if (this.delegates.size() == 1)
if (getDelegates().size() == 1)
{
return this.delegates.get(0).getKeys();
return getDelegates().get(0).getKeys();
}
else
{
Vector<String> allKeys = new Vector<String>(100, 2);
for (ResourceBundle delegate : this.delegates)
for (ResourceBundle delegate : getDelegates())
{
Enumeration<String> keys = delegate.getKeys();
while(keys.hasMoreElements() == true)
@@ -107,7 +233,7 @@ public final class ResourceBundleWrapper extends ResourceBundle implements Seria
{
Object result = null;
for (ResourceBundle delegate : this.delegates)
for (ResourceBundle delegate : getDelegates())
{
try
{
@@ -147,107 +273,9 @@ public final class ResourceBundleWrapper extends ResourceBundle implements Seria
*
* @return Wrapped ResourceBundle instance for specified locale
*/
public static ResourceBundle getResourceBundle(ServletContext servletContext, String name, Locale locale)
public static ResourceBundle getResourceBundle(String name, Locale locale)
{
List<ResourceBundle> bundles = new ArrayList<ResourceBundle>(ResourceBundleWrapper.addedBundleNames.size() + 2);
// Load the default bundle
ResourceBundle bundle = ResourceBundle.getBundle(name, locale);
if (bundle == null)
{
throw new AlfrescoRuntimeException("Unable to load Alfresco messages bundle: " + name);
}
bundles.add(bundle);
// also look up the custom version of the bundle in the extension package
ResourceBundle customBundle = null;
if (servletContext != null)
{
MessageService messageService = (MessageService)WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext).getBean(BEAN_RESOURCE_MESSAGE_SERVICE);
// first try in the repo otherwise try the classpath
StoreRef storeRef = null;
String path = null;
try
{
String customName = null;
int idx = name.lastIndexOf(".");
if (idx != -1)
{
customName = name.substring(idx+1, name.length());
}
else
{
customName = name;
}
storeRef = Repository.getStoreRef();
// TODO - make path configurable in one place ...
// Note: path here is XPath for selectNodes query
path = PATH + "/cm:" + customName;
customBundle = messageService.getRepoResourceBundle(Repository.getStoreRef(), path, locale);
}
catch (Throwable t)
{
// for now ... ignore the error, cannot be found or read from repo
logger.debug("Custom Web Client properties not found: " + storeRef + path);
}
}
if (customBundle == null)
{
// also look up the custom version of the bundle in the extension package
String customName = determineCustomBundleName(name);
try
{
customBundle = ResourceBundle.getBundle(customName, locale);
if (logger.isDebugEnabled()== true)
{
logger.debug("Located and loaded custom bundle: " + customName);
}
}
catch (MissingResourceException mre)
{
// ignore the error, just leave custom bundle as null
}
}
// Add the custom bundle to the list
if (customBundle != null)
{
bundles.add(customBundle);
}
// Add any additional bundles
for (String bundleName : ResourceBundleWrapper.addedBundleNames)
{
try
{
// Load the added bundle
ResourceBundle addedBundle = ResourceBundle.getBundle(bundleName, locale);
bundles.add(addedBundle);
if (logger.isDebugEnabled())
{
logger.debug("Located and loaded added bundle: " + bundleName);
}
}
catch (MissingResourceException mre)
{
// ignore the error, just log some debug info
if (logger.isDebugEnabled())
{
logger.debug("Unable to load added bundle: " + bundleName);
}
}
}
// apply our wrapper to catch MissingResourceException
return new ResourceBundleWrapper(bundles);
return new ResourceBundleWrapper(locale, name);
}
/**

View File

@@ -30,7 +30,7 @@ public class ResourceBundleWrapperTest extends TestCase
public void testAddingBundles()
{
// Check that the string's are not added to the bundle
ResourceBundle before = ResourceBundleWrapper.getResourceBundle(null, "alfresco.messages.webclient", Locale.US);
ResourceBundle before = ResourceBundleWrapper.getResourceBundle("alfresco.messages.webclient", Locale.US);
Enumeration<String> keys = before.getKeys();
assertFalse(containsValue(keys, KEY_1));
assertFalse(containsValue(keys, KEY_2));
@@ -51,7 +51,7 @@ public class ResourceBundleWrapperTest extends TestCase
ResourceBundleWrapper.addResourceBundle(BUNDLE_NAME);
// Check that the string's are now added to the bundle
ResourceBundle after = ResourceBundleWrapper.getResourceBundle(null, "alfresco.messages.webclient", Locale.US);
ResourceBundle after = ResourceBundleWrapper.getResourceBundle("alfresco.messages.webclient", Locale.US);
Enumeration<String> keys2 = after.getKeys();
assertTrue(containsValue(keys2, KEY_1));
assertEquals(after.getString(KEY_1), MSG_1);
@@ -70,7 +70,7 @@ public class ResourceBundleWrapperTest extends TestCase
bootstrap.setResourceBundles(bundles);
// Check that the string's are now added to the bundle
ResourceBundle after = ResourceBundleWrapper.getResourceBundle(null, "alfresco.messages.webclient", Locale.US);
ResourceBundle after = ResourceBundleWrapper.getResourceBundle("alfresco.messages.webclient", Locale.US);
Enumeration<String> keys2 = after.getKeys();
assertTrue(containsValue(keys2, KEY_1));
assertTrue(containsValue(keys2, KEY_2));

View File

@@ -229,6 +229,7 @@ public final class AuthenticationHelper
catch (AuthenticationException authErr)
{
// expired ticket
session.removeAttribute(AUTHENTICATION_USER);
return AuthenticationStatus.Failure;
}
@@ -276,11 +277,11 @@ public final class AuthenticationHelper
WebApplicationContext wc = WebApplicationContextUtils.getRequiredWebApplicationContext(context);
AuthenticationService auth = (AuthenticationService)wc.getBean(AUTHENTICATION_SERVICE);
UserTransaction tx = null;
HttpSession session = httpRequest.getSession();
try
{
auth.validate(ticket);
HttpSession session = httpRequest.getSession();
User user = (User)session.getAttribute(AuthenticationHelper.AUTHENTICATION_USER);
if (user == null)
{
@@ -313,6 +314,7 @@ public final class AuthenticationHelper
}
catch (AuthenticationException authErr)
{
session.removeAttribute(AUTHENTICATION_USER);
return AuthenticationStatus.Failure;
}
catch (Throwable e)