All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jasig.cas.web.view.CasReloadableMessageBundle Maven / Gradle / Ivy

There is a newer version: 4.2.7
Show newest version
/*
 * Licensed to Apereo under one or more contributor license
 * agreements. See the NOTICE file distributed with this work
 * for additional information regarding copyright ownership.
 * Apereo 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 the following location:
 *
 *   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.jasig.cas.web.view;

import java.util.Locale;

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.support.ReloadableResourceBundleMessageSource;

/**
 * An extension of the {@link ReloadableResourceBundleMessageSource} whose sole concern
 * is to print a WARN message in cases where a language key is not found in the active and
 * default bundles.
 * 
 * 

Note: By default, if a key not found in a localized bundle, Spring will auto-fallback * to the default bundle that is messages.properties. However, if the key is also * not found in the default bundle, and {@link #setUseCodeAsDefaultMessage(boolean)} * is set to true, then only the requested code itself will be used as the message to display. * In this case, the class will issue a WARN message instructing the caller that the bundle * needs further attention. If {@link #setUseCodeAsDefaultMessage(boolean)} is set to false, * only then a null value will be returned, which subsequently causes an instance * of {@link org.springframework.context.NoSuchMessageException} to be thrown. * * @author Misagh Moayyed * @since 4.0.0 */ public class CasReloadableMessageBundle extends ReloadableResourceBundleMessageSource { private String[] basenames; private final Logger logger = LoggerFactory.getLogger(this.getClass()); @Override protected String getDefaultMessage(final String code) { final String messageToReturn = super.getDefaultMessage(code); if (!StringUtils.isBlank(messageToReturn) && messageToReturn.equals(code)) { logger.warn("The code [{}] cannot be found in the default language bundle and will " + "be used as the message itself.", code); } return messageToReturn; } @Override protected String getMessageInternal(final String code, final Object[] args, final Locale locale) { boolean foundCode = false; if (!locale.equals(Locale.ENGLISH)) { for (int i = 0; !foundCode && i < this.basenames.length; i++) { final String filename = this.basenames[i] + '_' + locale; logger.debug("Examining language bundle [{}] for the code [{}]", filename, code); final PropertiesHolder holder = this.getProperties(filename); foundCode = holder != null && holder.getProperties() != null && holder.getProperty(code) != null; } if (!foundCode) { logger.debug("The code [{}] cannot be found in the language bundle for the locale [{}]", code, locale); } } return super.getMessageInternal(code, args, locale); } @Override public void setBasenames(final String... basenames) { this.basenames = basenames; super.setBasenames(basenames); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy