⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menuwraptransform.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: MenuWrapTransform.java 5462 2005-08-05 18:35:48Z jonesde $ * *  Copyright (c) 2001-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.widget.menu;import java.io.IOException;import java.io.Writer;import java.util.HashMap;import java.util.List;import java.util.Map;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.GeneralException;import org.ofbiz.base.util.UtilValidate;import org.ofbiz.base.util.template.FreeMarkerWorker;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericValue;import org.ofbiz.webapp.ftl.LoopWriter;import org.ofbiz.widget.WidgetContentWorker;import org.ofbiz.widget.html.HtmlMenuWrapper;import freemarker.core.Environment;import freemarker.template.TemplateModelException;import freemarker.template.TemplateTransformModel;import freemarker.template.TransformControl;//import com.clarkware.profiler.Profiler;/** * MenuWrapTransform - Freemarker Transform for URLs (links) *  * This is an interactive FreeMarker tranform that allows the user to modify the contents that are placed within it. *  * @author <a href="mailto:byersa@automationgroups.com">Al Byers</a> * @version $Rev: 5462 $ * @since 3.0 */public class MenuWrapTransform implements TemplateTransformModel {    public static final String module = MenuWrapTransform.class.getName();    public static final String [] upSaveKeyNames = {"globalNodeTrail"};    public static final String [] saveKeyNames = {"contentId", "subContentId", "subDataResourceTypeId", "mimeTypeId", "whenMap", "locale",  "wrapTemplateId", "encloseWrapText", "nullThruDatesOnly", "renderOnStart", "renderOnClose", "menuDefFile", "menuName", "associatedContentId", "wrapperClassName"};        /**     * A wrapper for the FreeMarkerWorker version.     */    public static Object getWrappedObject(String varName, Environment env) {        return FreeMarkerWorker.getWrappedObject(varName, env);    }    public static String getArg(Map args, String key, Environment env) {        return FreeMarkerWorker.getArg(args, key, env);    }    public static String getArg(Map args, String key, Map ctx) {        return FreeMarkerWorker.getArg(args, key, ctx);    }    public Writer getWriter(final Writer out, Map args) {        final StringBuffer buf = new StringBuffer();        final Environment env = Environment.getCurrentEnvironment();        final Map templateCtx = (Map) FreeMarkerWorker.getWrappedObject("context", env);        final GenericDelegator delegator = (GenericDelegator) FreeMarkerWorker.getWrappedObject("delegator", env);        final HttpServletRequest request = (HttpServletRequest) FreeMarkerWorker.getWrappedObject("request", env);        final HttpServletResponse response = (HttpServletResponse) FreeMarkerWorker.getWrappedObject("response", env);        final HttpSession session = (HttpSession) FreeMarkerWorker.getWrappedObject("session", env);        FreeMarkerWorker.getSiteParameters(request, templateCtx);        final Map savedValuesUp = new HashMap();        FreeMarkerWorker.saveContextValues(templateCtx, upSaveKeyNames, savedValuesUp);        FreeMarkerWorker.overrideWithArgs(templateCtx, args);        //final String menuDefFile = (String)templateCtx.get("menuDefFile");        //final String menuName = (String)templateCtx.get("menuName");        //final String associatedContentId = (String)templateCtx.get("associatedContentId");        final GenericValue userLogin = (GenericValue) FreeMarkerWorker.getWrappedObject("userLogin", env);        List trail = (List)templateCtx.get("globalNodeTrail");        String contentAssocPredicateId = (String)templateCtx.get("contentAssocPredicateId");        String strNullThruDatesOnly = (String)templateCtx.get("nullThruDatesOnly");        Boolean nullThruDatesOnly = (strNullThruDatesOnly != null && strNullThruDatesOnly.equalsIgnoreCase("true")) ? new Boolean(true) :new Boolean(false);        GenericValue val = null;        try {            if (WidgetContentWorker.contentWorker != null) {                val = WidgetContentWorker.contentWorker.getCurrentContentExt(delegator, trail, userLogin, templateCtx, nullThruDatesOnly, contentAssocPredicateId);            } else {                Debug.logError("Not rendering content, not ContentWorker found.", module);            }        } catch(GeneralException e) {            throw new RuntimeException("Error getting current content. " + e.toString());        }        final GenericValue view = val;        String dataResourceId = null;        try {            dataResourceId = (String) view.get("drDataResourceId");        } catch (Exception e) {            dataResourceId = (String) view.get("dataResourceId");        }        String subContentIdSub = (String) view.get("contentId");        // This order is taken so that the dataResourceType can be overridden in the transform arguments.        String subDataResourceTypeId = (String)templateCtx.get("subDataResourceTypeId");        if (UtilValidate.isEmpty(subDataResourceTypeId)) {            try {                subDataResourceTypeId = (String) view.get("drDataResourceTypeId");            } catch (Exception e) {                // view may be "Content"            }            // TODO: If this value is still empty then it is probably necessary to get a value from            // the parent context. But it will already have one and it is the same context that is            // being passed.        }        // This order is taken so that the mimeType can be overridden in the transform arguments.        String mimeTypeId = null;        if (WidgetContentWorker.contentWorker != null) {            mimeTypeId = WidgetContentWorker.contentWorker.getMimeTypeIdExt(delegator, view, templateCtx);        } else {            Debug.logError("Not rendering content, not ContentWorker found.", module);        }        templateCtx.put("drDataResourceId", dataResourceId);        templateCtx.put("mimeTypeId", mimeTypeId);        templateCtx.put("dataResourceId", dataResourceId);        templateCtx.put("subContentIdSub", subContentIdSub);        templateCtx.put("subDataResourceTypeId", subDataResourceTypeId);        final Map savedValues = new HashMap();        FreeMarkerWorker.saveContextValues(templateCtx, saveKeyNames, savedValues);        return new LoopWriter(out) {            public int onStart() throws TemplateModelException, IOException {                String renderOnStart = (String)templateCtx.get("renderOnStart");                if (renderOnStart != null && renderOnStart.equalsIgnoreCase("true")) {                    renderMenu();                }                return TransformControl.EVALUATE_BODY;            }            public void write(char cbuf[], int off, int len) {                buf.append(cbuf, off, len);            }            public void flush() throws IOException {                out.flush();            }            public void close() throws IOException {                FreeMarkerWorker.reloadValues(templateCtx, savedValues, env);                String wrappedContent = buf.toString();                out.write(wrappedContent);                String renderOnClose = (String)templateCtx.get("renderOnClose");                if (renderOnClose == null || !renderOnClose.equalsIgnoreCase("false")) {                    renderMenu();                }                FreeMarkerWorker.reloadValues(templateCtx, savedValuesUp, env);            }            public void renderMenu() throws IOException {                           ModelMenu modelMenu = null;                String menuDefFile = (String)templateCtx.get("menuDefFile");                String menuName = (String)templateCtx.get("menuName");                String menuWrapperClassName = (String)templateCtx.get("menuWrapperClassName");                HtmlMenuWrapper menuWrapper = HtmlMenuWrapper.getMenuWrapper(request, response, session, menuDefFile, menuName, menuWrapperClassName);                String associatedContentId = (String)templateCtx.get("associatedContentId");                menuWrapper.putInContext("defaultAssociatedContentId", associatedContentId);                menuWrapper.putInContext("currentValue", view);                if (menuWrapper == null) {                    throw new IOException("HtmlMenuWrapper with def file:" + menuDefFile + " menuName:" + menuName + " and HtmlMenuWrapper class:" + menuWrapperClassName + " could not be instantiated.");                }                String menuStr = menuWrapper.renderMenuString();                out.write(menuStr);                return;            }                        };    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -