pl.edu.icm.unity.stdext.attr.ZonedDateTimeAttributeSyntax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-std-plugins Show documentation
Show all versions of unity-server-std-plugins Show documentation
Standard plugins which are distributed with the system:
attribute syntaxes, identity types, credentials
/*
* Copyright (c) 2017 Bixbit - Krzysztof Benedyczak All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.stdext.attr;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.logging.log4j.Logger;
import org.springframework.stereotype.Component;
import com.fasterxml.jackson.databind.JsonNode;
import pl.edu.icm.unity.Constants;
import pl.edu.icm.unity.base.utils.Log;
import pl.edu.icm.unity.engine.api.attributes.AbstractAttributeValueSyntaxFactory;
import pl.edu.icm.unity.engine.api.attributes.AttributeValueSyntax;
import pl.edu.icm.unity.exceptions.IllegalAttributeValueException;
import pl.edu.icm.unity.exceptions.InternalException;
/**
* DateTime attribute sytax. Accept zoned datetime in various formats
*
* @author P.Piernik
*/
public class ZonedDateTimeAttributeSyntax implements AttributeValueSyntax
{
public static final String ID = "zonedDatetime";
public static final List ACCEPTABLE_FORMATS =
pl.edu.icm.unity.stdext.attr.DateTimeAttributeSyntax.ACCEPTABLE_FORMATS.stream()
.map(f -> f + "xxx['['VV']'][X]").collect(Collectors.toList());
private static final Logger log = Log.getLogger(Log.U_SERVER_CORE, ZonedDateTimeAttributeSyntax.class);
@Override
public String getValueSyntaxId()
{
return ID;
}
@Override
public JsonNode getSerializedConfiguration()
{
return Constants.MAPPER.createObjectNode();
}
@Override
public void setSerializedConfiguration(JsonNode json)
{
// OK
}
@Override
public void validate(ZonedDateTime value) throws IllegalAttributeValueException
{
if (value == null)
throw new IllegalAttributeValueException("null value is illegal");
}
@Override
public boolean areEqual(ZonedDateTime value, Object another)
{
return value == null ? null == another : value.equals(another);
}
@Override
public int hashCode(Object value)
{
return value.hashCode();
}
@Override
public ZonedDateTime convertFromString(String stringRepresentation)
{
for (String format : ACCEPTABLE_FORMATS)
{
try
{
return ZonedDateTime.parse(stringRepresentation,
DateTimeFormatter.ofPattern(format));
} catch (Exception e)
{
log.trace("Can not parse zoned datetime " + stringRepresentation
+ " using format: " + format, e);
}
}
throw new InternalException("Can not parse zoned datetime " + stringRepresentation
+ " using standard datetime formats");
}
@Override
public String convertToString(ZonedDateTime value)
{
return value.format(DateTimeFormatter.ISO_ZONED_DATE_TIME);
}
@Override
public boolean isEmailVerifiable()
{
return false;
}
@Override
public boolean isUserVerifiable()
{
return false;
}
@Component
public static class Factory extends AbstractAttributeValueSyntaxFactory
{
public Factory()
{
super(ZonedDateTimeAttributeSyntax.ID, ZonedDateTimeAttributeSyntax::new);
}
}
}