📄 factionmgr.java
字号:
package com.redmoon.forum.person;import java.util.*;import javax.servlet.http.*;import cn.js.fan.util.*;import cn.js.fan.web.*;import org.apache.log4j.*;public class FactionMgr { String connname = ""; Logger logger = Logger.getLogger(FactionMgr.class.getName()); public FactionMgr() { connname = Global.defaultDB; if (connname.equals("")) logger.info("Catalog:DB is empty!"); } public boolean AddChild(HttpServletRequest request) throws ErrMsgException { String name = "", code = "", parent_code = ""; name = ParamUtil.get(request, "name").trim(); if (name == null || name.equals("")) throw new ErrMsgException(SkinUtil.LoadString(request, "res.forum.plugin.group", "err_name")); code = ParamUtil.get(request, "code").trim(); if (code.equals("")) throw new ErrMsgException(SkinUtil.LoadString(request, "res.forum.plugin.group", "err_num")); parent_code = ParamUtil.get(request, "parent_code").trim(); if (parent_code.equals("")) throw new ErrMsgException(SkinUtil.LoadString(request, "res.forum.plugin.group", "err_parentCode")); String description = ParamUtil.get(request, "description"); int type = ParamUtil.getInt(request, "type"); FactionDb lf = new FactionDb(); lf = lf.getFactionDb(code); if (lf != null && lf.isLoaded()) { String str = SkinUtil.LoadString(request, "res.forum.plugin.group", "err_codeIsExist"); str = StrUtil.format(str, new Object[] {"" + lf.getName()}); throw new ErrMsgException(str); } lf = new FactionDb(); lf.setName(name); lf.setCode(code); lf.setParentCode(parent_code); lf.setDescription(description); lf.setType(type); FactionDb leaf = getFactionDb(parent_code); return leaf.AddChild(lf); } public void del(String delcode) throws ErrMsgException { FactionDb lf = getFactionDb(delcode); lf.del(lf); } public synchronized boolean update(HttpServletRequest request) throws ErrMsgException { String code = ParamUtil.get(request, "code", false); String name = ParamUtil.get(request, "name", false); String description = ParamUtil.get(request, "description"); boolean isHome = ParamUtil.get(request, "isHome").equals("true") ? true : false; int type = ParamUtil.getInt(request, "type"); if (code == null || name == null) { throw new ErrMsgException(SkinUtil.LoadString(request, "res.forum.plugin.group", "err_codeName")); } int templateId = ParamUtil.getInt(request, "templateId"); String parentCode = ParamUtil.get(request, "parentCode"); FactionDb leaf = getFactionDb(code); leaf.setName(name); leaf.setDescription(description); leaf.setIsHome(isHome); leaf.setType(type); leaf.setTemplateId(templateId); boolean re = false; if (parentCode.equals(leaf.getParentCode())) re = leaf.update(); else re = leaf.update(parentCode); return re; } public synchronized boolean move(HttpServletRequest request) throws ErrMsgException { String code = ParamUtil.get(request, "code", false); String direction = ParamUtil.get(request, "direction", false); if (code == null || direction == null) { throw new ErrMsgException(SkinUtil.LoadString(request, "res.forum.plugin.group", "err_codeDir")); } FactionDb lf = new FactionDb(code); return lf.move(direction); } public FactionDb getFactionDb(String code) { FactionDb leaf = new FactionDb(); return leaf.getFactionDb(code); } public FactionDb getBrother(String code, String direction) throws ErrMsgException { FactionDb lf = getFactionDb(code); return lf.getBrother(direction); } public Vector getChildren(String code) throws ErrMsgException { FactionDb leaf = getFactionDb(code); return leaf.getChildren(); } public void repairLeaf(FactionDb lf) { Vector children = lf.getChildren(); lf.setChildCount(children.size()); Iterator ir = children.iterator(); int orders = 1; while (ir.hasNext()) { FactionDb lfch = (FactionDb) ir.next(); lfch.setOrders(orders); lfch.update(); orders++; } int layer = 2; String parentCode = lf.getParentCode(); if (lf.getCode().equals(lf.CODE_ROOT)) { layer = 1; } else { if (parentCode.equals(lf.CODE_ROOT)) layer = 2; else { while (!parentCode.equals(lf.CODE_ROOT)) { FactionDb parentLeaf = getFactionDb(parentCode); if (parentLeaf == null || !parentLeaf.isLoaded()) break; else { parentCode = parentLeaf.getParentCode(); } layer++; } } } lf.setLayer(layer); lf.update(); } public void repairTree(FactionDb leaf) throws Exception { repairLeaf(leaf); FactionMgr dir = new FactionMgr(); Vector children = dir.getChildren(leaf.getCode()); int size = children.size(); if (size == 0) return; Iterator ri = children.iterator(); while (ri.hasNext()) { FactionDb childlf = (FactionDb) ri.next(); repairTree(childlf); } leaf.removeAllFromCache(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -