📄 productcontentwrapper.java
字号:
/* * $Id: ProductContentWrapper.java 5467 2005-08-06 08:11:15Z jonesde $ * * Copyright (c) 2003-2005 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. */package org.ofbiz.product.product;import java.io.IOException;import java.io.StringWriter;import java.io.Writer;import java.util.HashMap;import java.util.List;import java.util.Locale;import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.GeneralException;import org.ofbiz.base.util.UtilHttp;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.base.util.UtilValidate;import org.ofbiz.base.util.cache.UtilCache;import org.ofbiz.content.content.ContentWorker;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericValue;import org.ofbiz.entity.model.ModelEntity;import org.ofbiz.entity.model.ModelUtil;import org.ofbiz.entity.util.EntityUtil;/** * Product Content Worker: gets product content to display * * @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @version $Rev: 5467 $ * @since 3.0 */public class ProductContentWrapper { public static final String module = ProductContentWrapper.class.getName(); public static final String SEPARATOR = "::"; // cache key separator public static UtilCache productContentCache = new UtilCache("product.content.rendered", true); public static ProductContentWrapper makeProductContentWrapper(GenericValue product, HttpServletRequest request) { return new ProductContentWrapper(product, request); } protected GenericValue product; protected Locale locale; protected String mimeTypeId; public ProductContentWrapper(GenericValue product, Locale locale, String mimeTypeId) { this.product = product; this.locale = locale; this.mimeTypeId = mimeTypeId; } public ProductContentWrapper(GenericValue product, HttpServletRequest request) { this.product = product; this.locale = UtilHttp.getLocale(request); this.mimeTypeId = "text/html"; } public String get(String productContentTypeId) { return getProductContentAsText(product, productContentTypeId, locale, mimeTypeId, product.getDelegator()); } public static String getProductContentAsText(GenericValue product, String productContentTypeId, HttpServletRequest request) { return getProductContentAsText(product, productContentTypeId, UtilHttp.getLocale(request), "text/html", product.getDelegator()); } public static String getProductContentAsText(GenericValue product, String productContentTypeId, Locale locale) { return getProductContentAsText(product, productContentTypeId, locale, null, null); } public static String getProductContentAsText(GenericValue product, String productContentTypeId, Locale locale, String mimeTypeId, GenericDelegator delegator) { if (product == null) { return null; } String candidateFieldName = ModelUtil.dbNameToVarName(productContentTypeId); /* caching: there is one cache created, "product.content" Each product's content is cached with a key of * contentTypeId::locale::mimeType::productId, or whatever the SEPARATOR is defined above to be. */ String cacheKey = productContentTypeId + SEPARATOR + locale + SEPARATOR + mimeTypeId + SEPARATOR + product.get("productId"); try { if (productContentCache.get(cacheKey) != null) { return (String) productContentCache.get(cacheKey); } Writer outWriter = new StringWriter(); getProductContentAsText(null, product, productContentTypeId, locale, mimeTypeId, delegator, outWriter); String outString = outWriter.toString(); if (outString.length() > 0) { if (productContentCache != null) { productContentCache.put(cacheKey, outString); } return outString; } else { String candidateOut = product.getModelEntity().isField(candidateFieldName) ? product.getString(candidateFieldName): ""; return candidateOut == null? "" : candidateOut; } } catch (GeneralException e) { Debug.logError(e, "Error rendering ProductContent, inserting empty String", module); String candidateOut = product.getModelEntity().isField(candidateFieldName) ? product.getString(candidateFieldName): ""; return candidateOut == null? "" : candidateOut; } catch (IOException e) { Debug.logError(e, "Error rendering ProductContent, inserting empty String", module); String candidateOut = product.getModelEntity().isField(candidateFieldName) ? product.getString(candidateFieldName): ""; return candidateOut == null? "" : candidateOut; } } public static void getProductContentAsText(String productId, GenericValue product, String productContentTypeId, Locale locale, String mimeTypeId, GenericDelegator delegator, Writer outWriter) throws GeneralException, IOException { if (productId == null && product != null) { productId = product.getString("productId"); } if (delegator == null && product != null) { delegator = product.getDelegator(); } if (UtilValidate.isEmpty(mimeTypeId)) { mimeTypeId = "text/html"; } String candidateFieldName = ModelUtil.dbNameToVarName(productContentTypeId); //Debug.logInfo("candidateFieldName=" + candidateFieldName, module); ModelEntity productModel = delegator.getModelEntity("Product"); if (productModel.isField(candidateFieldName)) { if (product == null) { product = delegator.findByPrimaryKeyCache("Product", UtilMisc.toMap("productId", productId)); } if (product != null) { String candidateValue = product.getString(candidateFieldName); if (UtilValidate.isNotEmpty(candidateValue)) { outWriter.write(candidateValue); return; } } } List productContentList = delegator.findByAndCache("ProductContent", UtilMisc.toMap("productId", productId, "productContentTypeId", productContentTypeId), UtilMisc.toList("-fromDate")); productContentList = EntityUtil.filterByDate(productContentList); GenericValue productContent = EntityUtil.getFirst(productContentList); if (productContent != null) { // when rendering the product content, always include the Product and ProductContent records that this comes from Map inContext = new HashMap(); inContext.put("product", product); inContext.put("productContent", productContent); ContentWorker.renderContentAsText(delegator, productContent.getString("contentId"), outWriter, inContext, null, locale, mimeTypeId); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -