org.mifos.config.struts.actionform.CustomFieldsActionForm.java Source code

Java tutorial

Introduction

Here is the source code for org.mifos.config.struts.actionform.CustomFieldsActionForm.java

Source

/*
 * Copyright (c) 2005-2010 Grameen Foundation USA
 * All rights reserved.
 *
 * Licensed 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.
 *
 * See also http://www.apache.org/licenses/LICENSE-2.0.html for an
 * explanation of the license and how it is applied.
 */

package org.mifos.config.struts.actionform;

import java.util.Locale;
import java.util.ResourceBundle;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.apache.commons.lang.StringUtils;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import org.mifos.application.master.business.CustomFieldType;
import org.mifos.application.util.helpers.Methods;
import org.mifos.framework.components.logger.LoggerConstants;
import org.mifos.framework.components.logger.MifosLogManager;
import org.mifos.framework.components.logger.MifosLogger;
import org.mifos.framework.struts.actionforms.BaseActionForm;
import org.mifos.framework.util.helpers.Constants;
import org.mifos.framework.util.helpers.DateUtils;
import org.mifos.framework.util.helpers.FilePaths;
import org.mifos.security.login.util.helpers.LoginConstants;
import org.mifos.security.util.UserContext;

public class CustomFieldsActionForm extends BaseActionForm {

    private MifosLogger logger = MifosLogManager.getLogger(LoggerConstants.CONFIGURATION_LOGGER);

    private String categoryType; // id
    private String labelName;
    private boolean mandatoryField = false;
    private String defaultValue;
    private String dataType;
    private Short customFieldId;
    private String customFieldIdStr;
    private String categoryTypeName; // localized category
    private String mandatoryStringValue;
    private String category; // the category name of the the CustomFieldCategory

    public String getMandatoryStringValue() {
        return mandatoryStringValue;
    }

    public void setMandatoryStringValue(String mandatoryStringValue) {
        this.mandatoryStringValue = mandatoryStringValue;
    }

    public String getCategoryType() {
        return categoryType;
    }

    public void setCategoryType(String categoryType) {
        this.categoryType = categoryType;
    }

    public String getDataType() {
        return dataType;
    }

    public void setDataType(String dataType) {
        this.dataType = dataType;
    }

    public String getDefaultValue() {
        return defaultValue;
    }

    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }

    public String getLabelName() {
        return labelName;
    }

    public void setLabelName(String labelName) {
        this.labelName = labelName;
    }

    public boolean isMandatoryField() {
        return mandatoryField;
    }

    public void setMandatoryField(boolean mandatoryField) {
        this.mandatoryField = mandatoryField;
    }

    protected Locale getUserLocale(HttpServletRequest request) {
        Locale locale = null;
        HttpSession session = request.getSession();
        if (session != null) {
            UserContext userContext = (UserContext) session.getAttribute(LoginConstants.USERCONTEXT);
            if (null != userContext) {
                locale = userContext.getCurrentLocale();

            }
        }
        return locale;
    }

    private void validateDefaultValue(ActionErrors errors, HttpServletRequest request) {
        if (StringUtils.isBlank(dataType)) {
            Locale locale = getUserContext(request).getPreferredLocale();
            ResourceBundle resources = ResourceBundle.getBundle(FilePaths.CONFIGURATION_UI_RESOURCE_PROPERTYFILE,
                    locale);
            String dataTypeParam = resources.getString("configuration.data_type");
            addError(errors, dataType, "errors.mandatory_selectbox", dataTypeParam);
            return;
        }
        Short dataTypeValue = Short.parseShort(dataType);
        if (dataTypeValue.equals(CustomFieldType.NUMERIC.getValue()) && (StringUtils.isNotBlank(defaultValue))) {
            try {
                Double.parseDouble(defaultValue);
            } catch (NumberFormatException e) {
                addError(errors, defaultValue, "errors.default_value_not_number", new String[] { null });
            }
        } else if (dataTypeValue.equals(CustomFieldType.DATE.getValue())
                && (StringUtils.isNotBlank(defaultValue))) {
            try {
                // for now just use this function to validate the string.
                // need to check more when the exact format is specified
                DateUtils.getDate(defaultValue);

            } catch (Exception e) {
                addError(errors, defaultValue, "errors.default_value_not_date", new String[] { null });
            }
        }

    }

    @Override
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
        logger.debug("Inside validate method");

        String method = request.getParameter(Methods.method.toString());
        request.setAttribute(Constants.CURRENTFLOWKEY, request.getParameter(Constants.CURRENTFLOWKEY));

        ActionErrors errors = new ActionErrors();
        if ((method.equals(Methods.preview.toString())) || (method.equals(Methods.editPreview.toString()))) {
            errors = super.validate(mapping, request);
            if (StringUtils.isNotBlank(defaultValue)) {
                validateDefaultValue(errors, request);
            }
        }

        if (!errors.isEmpty()) {
            request.setAttribute(Methods.method.toString(), method);
        }
        return errors;
    }

    public void clear() {
        this.customFieldId = null;
        this.categoryType = null;
        ; // id
        this.labelName = null;
        ;
        this.mandatoryField = false;
        this.defaultValue = null;
        ;
        this.dataType = null;
        ;
        this.customFieldId = null;
        ;
        this.customFieldIdStr = null;
        ;
        this.categoryTypeName = null;
        ;

    }

    // reset fields on form
    @Override
    public void reset(ActionMapping mapping, HttpServletRequest request) {
        super.reset(mapping, request);
        String method = request.getParameter(Methods.method.toString());
        if (method != null && (method.equals(Methods.preview.toString())
                || method.equals(Methods.editPreview.toString()) || method.equals(Methods.editField.toString()))) {
            mandatoryField = false;

        }
    }

    public Short getCustomFieldId() {
        return customFieldId;
    }

    public void setCustomFieldId(Short customFieldId) {
        this.customFieldId = customFieldId;
    }

    public String getCustomFieldIdStr() {
        return customFieldIdStr;
    }

    public void setCustomFieldIdStr(String customFieldIdStr) {
        this.customFieldIdStr = customFieldIdStr;
    }

    public String getCategoryTypeName() {
        return categoryTypeName;
    }

    public void setCategoryTypeName(String categoryTypeName) {
        this.categoryTypeName = categoryTypeName;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

}