com.agiletec.apsadmin.system.entity.attribute.manager.TimestampAttributeManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entando-admin-console Show documentation
Show all versions of entando-admin-console Show documentation
Entando Administration Console: an agile, modern and user-centric open source Portal platform.
/*
* Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.agiletec.apsadmin.system.entity.attribute.manager;
import java.util.Calendar;
import javax.servlet.http.HttpServletRequest;
import com.agiletec.aps.system.common.entity.model.AttributeTracer;
import com.agiletec.aps.system.common.entity.model.attribute.AttributeInterface;
import com.agiletec.aps.system.common.entity.model.attribute.TimestampAttribute;
import com.agiletec.aps.util.CheckFormatUtil;
/**
* @author E.Santoboni
*/
public class TimestampAttributeManager extends DateAttributeManager {
@Override
protected void updateAttribute(AttributeInterface attribute, AttributeTracer tracer, HttpServletRequest request) {
String value = this.getValueFromForm(attribute, tracer, request);
if (value != null) {
if (value.trim().length() == 0) {
value = null;
}
this.setValue(attribute, value);
}
String hourValue = this.getValueFromForm(attribute, tracer, "_hour", request);
this.setValue(attribute, hourValue, VALUE_HOUR);
String minuteValue = this.getValueFromForm(attribute, tracer, "_minute", request);
this.setValue(attribute, minuteValue, VALUE_MINUTE);
String secondValue = this.getValueFromForm(attribute, tracer, "_second", request);
this.setValue(attribute, secondValue, VALUE_SECOND);
}
protected void setValue(AttributeInterface attribute, String value, String valueType) {
TimestampAttribute timestampAttribute = (TimestampAttribute) attribute;
if (value != null) {
value = value.trim();
}
Integer number = null;
if (CheckFormatUtil.isValidNumber(value)) {
try {
number = Integer.parseInt(value);
} catch (Throwable ex) {
this.setError(timestampAttribute, value, valueType);
throw new RuntimeException("Error while parsing the number - " + value + " -", ex);
}
int max = (valueType.equalsIgnoreCase(VALUE_HOUR)) ? 23 : 59;
if (number > max) {
this.setError(timestampAttribute, value, valueType);
return;
} else {
this.resetError(timestampAttribute, valueType);
}
} else {
this.setError(timestampAttribute, value, valueType);
return;
}
if (null != number && null != timestampAttribute.getDate()) {
Calendar cal = Calendar.getInstance();
cal.setTime(timestampAttribute.getDate());
if (valueType.equalsIgnoreCase(VALUE_HOUR)) {
cal.set(Calendar.HOUR_OF_DAY, number);
} else if (valueType.equalsIgnoreCase(VALUE_MINUTE)) {
cal.set(Calendar.MINUTE, number);
} else if (valueType.equalsIgnoreCase(VALUE_SECOND)) {
cal.set(Calendar.SECOND, number);
}
timestampAttribute.setDate(cal.getTime());
this.resetError(timestampAttribute, valueType);
}
}
private void setError(TimestampAttribute timestampAttribute, String value, String valueType) {
if (valueType.equalsIgnoreCase(VALUE_HOUR)) {
timestampAttribute.setFailedHourString(value);
} else if (valueType.equalsIgnoreCase(VALUE_MINUTE)) {
timestampAttribute.setFailedMinuteString(value);
} else if (valueType.equalsIgnoreCase(VALUE_SECOND)) {
timestampAttribute.setFailedSecondString(value);
}
}
private void resetError(TimestampAttribute timestampAttribute, String valueType) {
if (valueType.equalsIgnoreCase(VALUE_HOUR)) {
timestampAttribute.setFailedHourString(null);
} else if (valueType.equalsIgnoreCase(VALUE_MINUTE)) {
timestampAttribute.setFailedMinuteString(null);
} else if (valueType.equalsIgnoreCase(VALUE_SECOND)) {
timestampAttribute.setFailedSecondString(null);
}
}
protected String getValueFromForm(AttributeInterface attribute, AttributeTracer tracer, String suffix, HttpServletRequest request) {
String formFieldName = tracer.getFormFieldName(attribute) + suffix;
return request.getParameter(formFieldName);
}
private static final String VALUE_HOUR = "h";
private static final String VALUE_MINUTE = "m";
private static final String VALUE_SECOND = "s";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy