blob: 36d28e612a94a6af8b3f13af45fdc8fb5ad63c7d [file] [log] [blame]
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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
*
* 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.ofbiz.webapp.website;
import javax.servlet.ServletContext;
import javax.servlet.ServletRequest;
import org.ofbiz.base.util.Debug;
import org.ofbiz.base.util.UtilMisc;
import org.ofbiz.entity.Delegator;
import org.ofbiz.entity.GenericEntityException;
import org.ofbiz.entity.GenericValue;
/**
* WebSiteWorker - Worker class for web site related functionality
*/
public class WebSiteWorker {
public static final String module = WebSiteWorker.class.getName();
public static String getWebSiteId(ServletRequest request) {
ServletContext application = ((ServletContext) request.getAttribute("servletContext"));
if (application == null) return null;
return application.getInitParameter("webSiteId");
}
public static GenericValue getWebSite(ServletRequest request) {
String webSiteId = getWebSiteId(request);
if (webSiteId == null) {
return null;
}
return findWebSite((Delegator) request.getAttribute("delegator"), webSiteId);
}
/**
* returns a WebSite-GenericValue (using entityCache)
*
* @param delegator
* @param webSiteId
* @return
*/
public static GenericValue findWebSite(Delegator delegator, String webSiteId) {
return findWebSite(delegator, webSiteId, true);
}
/**
* returns a WebSite-GenericValue
*
* @param delegator
* @param webSiteId
* @param useCache
* @return
*/
public static GenericValue findWebSite(Delegator delegator, String webSiteId, boolean useCache) {
GenericValue result = null;
try {
result = delegator.findOne("WebSite", useCache, UtilMisc.toMap("webSiteId", webSiteId));
}
catch (GenericEntityException e) {
Debug.logError("Error looking up website with id " + webSiteId, module);
}
return result;
}
}