Package org.apache.empire.struts2.jsp.controls

Source Code of org.apache.empire.struts2.jsp.controls.PasswordInputControl

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.empire.struts2.jsp.controls;

import java.util.Locale;

import org.apache.empire.commons.StringUtils;
import org.apache.empire.data.Column;
import org.apache.empire.struts2.html.HtmlWriter;
import org.apache.empire.struts2.html.HtmlWriter.HtmlTag;
import org.apache.empire.struts2.web.FieldErrors;


public class PasswordInputControl extends InputControl
{
    public static final String PASSWORD_NOT_CHANGED = "********";

   
    private int getMinPasswordLength()
    {
        return 6;
    }
   
    // ------- parsing -------

    @Override
    protected Object parseValue(String value, Locale locale, Column column)
    {
        // Has password changed
        if (value.equals(PASSWORD_NOT_CHANGED))
            return NO_VALUE;
        // Default
        return value;
    }

    @Override
    protected Object validate(Object value, Locale locale, Column column, String s)
    {
        String pwd = StringUtils.toString(value);
        int minLength = getMinPasswordLength();
        if (pwd!=null && pwd.length()<minLength)
        {
            return error(FieldErrors.InputTextTooShort, minLength, s);
        }
        // Default
        return value;
    }
   
    // ------- formatting -------

    @Override
    protected String formatValue(Object value, ValueInfo vi, boolean hasError)
    {
        String pwd = StringUtils.toString(value);
        if (hasError)
            return "";
        // Replace by Default-Mask
        return (StringUtils.isNotEmpty(pwd) ? PASSWORD_NOT_CHANGED : null);
    }

    @Override
    public void renderInput(HtmlWriter writer, ControlInfo ci)
    {
        HtmlTag input = writer.startTag("input");
        input.addAttribute("type", "password");
        input.addAttribute("id",    ci.getId());
        input.addAttribute("class", ci.getCssClass());
        input.addAttribute("style", ci.getCssStyle());
        if (ci.getDisabled()==false)
        {   // Name of the field
            input.addAttribute("name", ci.getName());
            // Get Max Length
            int maxLength = (int)ci.getColumn().getSize();
            if (maxLength>0)
            {
                input.addAttribute("maxlength", maxLength);
                input.addAttribute("size", String.valueOf(Math.min(maxLength, ci.getHSize())));
            }  
        }
        else
        {   // Disabled text control
            input.addAttribute("disabled");
            // Get Max Length
            int maxLength = (int)ci.getColumn().getSize();
            if (maxLength>0)
            {
                input.addAttribute("size", String.valueOf(Math.min(maxLength, ci.getHSize())));
            }  
        }
        // Value
        input.addAttribute("value",     formatValue(ci));
        // Event Attributes
        input.addAttribute("onclick",   ci.getOnclick());
        input.addAttribute("onchange",  ci.getOnchange());
        input.addAttribute("onfocus",   ci.getOnfocus());
        input.addAttribute("onblur",    ci.getOnblur());
        input.endTag();
    }
   
}
TOP

Related Classes of org.apache.empire.struts2.jsp.controls.PasswordInputControl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.