graphql.solon.support.DefaultGraphQlRequest Maven / Gradle / Ivy
/*
* Copyright 2002-2022 the original author or authors.
*
* 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
*
* https://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.
*/
package graphql.solon.support;
import graphql.solon.util.Assert;
import graphql.solon.util.ObjectUtils;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import org.apache.commons.collections.MapUtils;
import org.noear.solon.lang.Nullable;
/**
* Default implementation of {@link GraphQlRequest}.
*
* @author Rossen Stoyanchev
* @author Brian Clozel
* @since 1.0.0
*/
public class DefaultGraphQlRequest implements GraphQlRequest {
private final String document;
@Nullable
private final String operationName;
private final Map variables;
private final Map extensions;
/**
* Create a request.
*
* @param document textual representation of the operation(s)
*/
public DefaultGraphQlRequest(String document) {
this(document, null, null, null);
}
/**
* Create a request with a complete set of inputs.
*
* @param document textual representation of the operation(s)
* @param operationName optionally, the name of the operation to execute
* @param variables variables by which the operation is parameterized
* @param extensions implementor specific, protocol extensions
*/
public DefaultGraphQlRequest(
String document, @Nullable String operationName,
@Nullable Map variables, @Nullable Map extensions) {
Assert.notNull(document, "'document' is required");
this.document = document;
this.operationName = operationName;
this.variables = (variables != null ? variables : Collections.emptyMap());
this.extensions = (extensions != null ? extensions : Collections.emptyMap());
}
@Override
public String getDocument() {
return this.document;
}
@Override
@Nullable
public String getOperationName() {
return this.operationName;
}
@Override
public Map getVariables() {
return this.variables;
}
@Override
public Map getExtensions() {
return this.extensions;
}
@Override
public Map toMap() {
Map map = new LinkedHashMap<>(3);
map.put("query", getDocument());
if (getOperationName() != null) {
map.put("operationName", getOperationName());
}
if (!MapUtils.isEmpty(getVariables())) {
map.put("variables", new LinkedHashMap<>(getVariables()));
}
if (!MapUtils.isEmpty(getExtensions())) {
map.put("extensions", new LinkedHashMap<>(getExtensions()));
}
return map;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof DefaultGraphQlRequest)) {
return false;
}
DefaultGraphQlRequest other = (DefaultGraphQlRequest) o;
return (getDocument().equals(other.getDocument()) &&
ObjectUtils.nullSafeEquals(getOperationName(), other.getOperationName()) &&
ObjectUtils.nullSafeEquals(getVariables(), other.getVariables()) &&
ObjectUtils.nullSafeEquals(getExtensions(), other.getExtensions()));
}
@Override
public int hashCode() {
return this.document.hashCode() +
31 * ObjectUtils.nullSafeHashCode(this.operationName) +
31 * this.variables.hashCode() +
31 * this.extensions.hashCode();
}
@Override
public String toString() {
return "document='" + getDocument() + "'" +
((getOperationName() != null) ? ", operationName='" + getOperationName() + "'" : "") +
(!MapUtils.isEmpty(getVariables()) ? ", variables=" + getVariables() : "" +
(!MapUtils.isEmpty(getExtensions()) ? ", extensions=" + getExtensions()
: ""));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy