/*
* #%L
* BroadleafCommerce CMS Module
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* Licensed 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
*
* 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.
* #L%
*/
package org.broadleafcommerce.cms.url.service;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.broadleafcommerce.cms.url.dao.URLHandlerDao;
import org.broadleafcommerce.cms.url.domain.URLHandler;
import org.broadleafcommerce.cms.url.domain.URLHandlerDTO;
import org.broadleafcommerce.common.cache.StatisticsService;
import org.broadleafcommerce.common.util.EfficientLRUMap;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.annotation.Resource;
/**
* Created by bpolster.
*/
@Service("blURLHandlerService")
public class URLHandlerServiceImpl implements URLHandlerService {
private static final Log LOG = LogFactory.getLog(URLHandlerServiceImpl.class);
@Resource(name="blURLHandlerDao")
protected URLHandlerDao urlHandlerDao;
@Resource(name="blStatisticsService")
protected StatisticsService statisticsService;
protected Map<String, Pattern> urlPatternMap = new EfficientLRUMap<String, Pattern>(2000);
/**
* Checks the passed in URL to determine if there is a matching URLHandler.
* Returns null if no handler was found.
*
* @param uri
* @return
*/
@Override
public URLHandler findURLHandlerByURI(String uri) {
return checkForMatches(uri);
}
@Override
public URLHandler findURLHandlerById(Long id) {
return urlHandlerDao.findURLHandlerById(id);
}
@Override
public List<URLHandler> findAllURLHandlers() {
return urlHandlerDao.findAllURLHandlers();
}
@Override
@Transactional("blTransactionManager")
public URLHandler saveURLHandler(URLHandler handler) {
return urlHandlerDao.saveURLHandler(handler);
}
protected URLHandler checkForMatches(String requestURI) {
URLHandler currentHandler = null;
try {
List<URLHandler> urlHandlers = findAllURLHandlers();
for (URLHandler urlHandler : urlHandlers) {
currentHandler = urlHandler;
String incomingUrl = currentHandler.getIncomingURL();
if (!incomingUrl.startsWith("^")) {
if (incomingUrl.startsWith("/")) {
incomingUrl = "^" + incomingUrl + "$";
} else {
incomingUrl = "^/" + incomingUrl + "$";
}
}
Pattern p = urlPatternMap.get(incomingUrl);
if (p == null) {
p = Pattern.compile(incomingUrl);
urlPatternMap.put(incomingUrl, p);
}
Matcher m = p.matcher(requestURI);
if (m.find()) {
String newUrl = m.replaceFirst(urlHandler.getNewURL());
if (newUrl.equals(urlHandler.getNewURL())) {
return urlHandler;
} else {
return new URLHandlerDTO(newUrl, urlHandler.getUrlRedirectType());
}
}
}
} catch (RuntimeException re) {
if (currentHandler != null) {
// We don't want an invalid regex to cause tons of logging
if (LOG.isWarnEnabled()) {
LOG.warn("Error parsing URL Handler (incoming =" + currentHandler.getIncomingURL() + "), outgoing = ( "
+ currentHandler.getNewURL() + "), " + requestURI);
}
}
}
return null;
}
}