org.restheart.graphql.scalars.bsonCoercing.GraphQLBsonDateCoercing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restheart-graphql Show documentation
Show all versions of restheart-graphql Show documentation
RESTHeart MongoDB - GraphQL plugin
/*-
* ========================LICENSE_START=================================
* restheart-graphql
* %%
* Copyright (C) 2020 - 2024 SoftInstigate
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* =========================LICENSE_END==================================
*/
package org.restheart.graphql.scalars.bsonCoercing;
import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.util.Locale;
import org.bson.BsonDateTime;
import org.bson.BsonNull;
import static org.restheart.graphql.scalars.bsonCoercing.CoercingUtils.typeName;
import org.restheart.utils.BsonUtils;
import graphql.GraphQLContext;
import graphql.execution.CoercedVariables;
import graphql.language.StringValue;
import graphql.language.Value;
import graphql.schema.Coercing;
import graphql.schema.CoercingParseLiteralException;
import graphql.schema.CoercingParseValueException;
import graphql.schema.CoercingSerializeException;
public class GraphQLBsonDateCoercing implements Coercing {
@Override
public BsonDateTime serialize(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingSerializeException {
if(input == null || input instanceof BsonNull) {
return null;
} else if (input instanceof BsonDateTime bsonDateTime){
return bsonDateTime;
} else {
throw new CoercingSerializeException("Expected type 'BsonDateTime' but was '" + typeName(input) +"'.");
}
}
@Override
public BsonDateTime parseValue(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingParseValueException {
var possibleDate = convertImpl(input);
if (possibleDate == null){
throw new CoercingParseValueException("Expected type 'Long' or 'String' (with a valid OffsetDateTime) but was '" + typeName(input) +"'.");
} else {
return new BsonDateTime(possibleDate);
}
}
@Override
public BsonDateTime parseLiteral(Value> input, CoercedVariables variables, GraphQLContext graphQLContext, Locale locale) throws CoercingParseLiteralException {
if (input instanceof StringValue stringValue) {
var possibleDate = stringValue.getValue();
try {
var ofsDate = OffsetDateTime.parse(possibleDate, DateTimeFormatter.ISO_OFFSET_DATE_TIME);
return new BsonDateTime(ofsDate.toInstant().toEpochMilli());
} catch (DateTimeParseException dtpe) {
try {
return new BsonDateTime(Long.parseLong(possibleDate));
} catch (NumberFormatException e2){
throw new CoercingParseLiteralException("Input string is not a valid date.");
}
}
} else {
throw new CoercingParseLiteralException("Expected input type 'StringValue' but was '" + typeName(input) + "'.");
}
}
private Long convertImpl(Object input){
if (input instanceof Long _long){
return _long;
} else if (input instanceof String string){
try {
var ofsDate = OffsetDateTime.parse(string, DateTimeFormatter.ISO_OFFSET_DATE_TIME);
return ofsDate.toInstant().toEpochMilli();
} catch (DateTimeParseException dtpe){
try {
return Long.valueOf(string);
} catch (NumberFormatException nfe) {
return null;
}
}
} else if (input instanceof OffsetDateTime offsetDateTime){
return offsetDateTime.toInstant().toEpochMilli();
}
return null;
}
@Override
public Value> valueToLiteral(Object input, GraphQLContext graphQLContext, Locale locale) {
var value = serialize(input, graphQLContext, locale);
var s = BsonUtils.toJson(value);
return StringValue.newStringValue(s).build();
}
}