Zhiqim Manager(知启蒙管理台)是知启蒙框架中最核心的基础组件,大部分后台组件和产品都依赖该组件。因为管理台提供了核心的系统配置、菜单、操作员、部门、角色等权限功能,以及6种皮肤样式可供选择

森中灵 最后提交于4月前 修复切换frame模式时未情况includeUrl
IndexAction.java3KB
/*
 * 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
 * 
 * https://zhiqim.org/project/zhiqim_components/zhiqim_manager.htm
 *
 * Zhiqim Manager 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.action;

import org.zhiqim.httpd.HttpRequest;
import org.zhiqim.httpd.context.core.Action;
import org.zhiqim.httpd.validate.ones.IsLen;
import org.zhiqim.httpd.validate.ones.IsNumericLen;
import org.zhiqim.kernel.constants.ZhiqimConstants;
import org.zhiqim.kernel.util.Strings;
import org.zhiqim.kernel.util.Validates;
import org.zhiqim.manager.ZmrBootstrap;
import org.zhiqim.manager.ZmrConstants;
import org.zhiqim.manager.ZmrPassworder;
import org.zhiqim.manager.dao.ZmrParamDao;

/**
 * 首页
 *
 * @version v1.0.0 @author zouzhigang 2015-5-28 新建与整理
 */
public class IndexAction implements Action, ZhiqimConstants, ZmrConstants
{
    public void execute(HttpRequest request) throws Exception
    {
        request.setResponsePrivateCache();
        
        request.addValidate(new IsLen("operatorCode", "请输入正确的账号", 2, 32));
        request.addValidate(new IsLen("operatorPass", "请输入正确的密码", 6, 90));
        
        boolean hasVerificationCode = ZmrParamDao.hasVerificationCode();
        if(hasVerificationCode)
        {
            request.addValidate(new IsNumericLen("verificationCode", "验证码必须是4位数字", 4, 4));
        }
        
        boolean hasRememberCode = ZmrParamDao.hasRememberCode();
        boolean hasRememberPass = ZmrParamDao.hasRememberPass();
        if (hasRememberPass && !hasRememberCode)
        {
            hasRememberCode = true;
            ZmrParamDao.doUpdateRememberCode(true);
        }
        
        request.setAttribute("hasRememberCode", hasRememberCode);
        request.setAttribute("hasRememberPass", hasRememberPass);
        request.setAttribute("hasVerificationCode", hasVerificationCode);
        
        if(hasRememberCode)
        {//记住用户账号
            String operatorCode = request.getCookie("operatorCode");
            request.setAttribute("operatorCode", operatorCode);
            
            if (hasRememberPass)
            {//记住密码
                String operatorPass = request.getCookie("operatorPass");
                if (!Validates.isEmptyBlank(operatorPass))
                {
                    ZmrPassworder passworder = ZmrBootstrap.getPassworder();
                    int len = passworder.secretLen(operatorPass);
                    request.setAttribute("operatorPass", Strings.prefixLen("", len, '●'));
                }
            }
        }
    }
}