Zhiqim Admin(简版的管理台)是从知启蒙管理台分离出来,保留系统参数表、系统菜单表、操作员、操作日志,去除组织、部门、角色等复杂权限功能,仅保留操作员独立权限功能。系统设计时保留ZmrSessionUser和ZmrOperator类,方便以后升级到知启蒙管理台。
森中灵 最后提交于6月前 整理V8.0.6
ZmrCdnRuntime.java1KB
/*
* 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
*
* https://zhiqim.org/project/zhiqim_components/zhiqim_admin.htm
*
* Zhiqim Admin is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.zhiqim.manager;
import org.zhiqim.httpd.HttpContext;
import org.zhiqim.kernel.annotation.AnAlias;
import org.zhiqim.kernel.util.Strings;
import org.zhiqim.kernel.util.Validates;
import org.zhiqim.manager.dao.ZmrParamDao;
import org.zhiqim.zml.ZmlVarRuntime;
/**
* 变量zhiqim.js运行时取值,对应格式如:
* <#var zhiqim.js = new ZmrCdnRuntime(context, "/service/res/zhiqim_v1.4.0.r2018010101.min.js")/>
*
* @version v1.0.0 @author zouzhigang 2018-2-26 新建与整理
*/
@AnAlias("ZmrCdnRuntime")
public class ZmrCdnRuntime implements ZmlVarRuntime, ZmrConstants
{
private HttpContext context;
private String pathInContext;
public ZmrCdnRuntime(HttpContext context, String pathInContext)
{
this.context = context;
this.pathInContext = pathInContext;
}
@Override
public Object build()
{
try
{
String cdnPath = ZmrParamDao.getString(ZMR_NAME, ZMR_CDN_PATH);
if (Validates.isEmptyBlank(cdnPath))
return context.getRootPath(pathInContext);
else
return Strings.trimRight(cdnPath, "/") + pathInContext;
}
catch (RuntimeException e)
{
return context.getRootPath(pathInContext);
}
}
}