All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restheart.graphql.scalars.bsonCoercing.GraphQLBsonRegexCoercing Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*-
 * ========================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.util.Locale;

import org.bson.BsonNull;
import org.bson.BsonRegularExpression;
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 GraphQLBsonRegexCoercing implements Coercing {
    @Override
    public BsonRegularExpression serialize(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingSerializeException {
        if(input == null || input instanceof BsonNull) {
            return null;
        } else if (input instanceof BsonRegularExpression bsonRegularExpression){
            return bsonRegularExpression;
        } else {
            throw new CoercingSerializeException("Expected type 'BsonRegularExpression' but was '" + typeName(input) +"'.");
        }
    }

    @Override
    public BsonRegularExpression parseValue(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingParseValueException {
        if (input instanceof String string){
            return new BsonRegularExpression(string);
        } else {
            throw new CoercingParseValueException("Expected type 'BsonRegularExpression' but was '" + typeName(input) +"'.");
        }
    }

    @Override
    public BsonRegularExpression parseLiteral(Value input, CoercedVariables variables, GraphQLContext graphQLContext, Locale locale) throws CoercingParseLiteralException {
        if (input instanceof StringValue stringValue){
            return new BsonRegularExpression(stringValue.getValue());
        } else {
            throw new CoercingParseLiteralException("Expected input type 'StringValue' but was '" + typeName(input) + "'.");
        }
    }

    @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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy