blob: 4f3787c1fb777822677965302e131e3fb189fb1e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.services.graphql.internal.schema.query.user;
import java.util.Optional;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.sirius.services.graphql.workspace.api.WorkspaceSchemaConstants;
import graphql.Scalars;
import graphql.schema.DataFetcher;
import graphql.schema.GraphQLArgument;
import graphql.schema.GraphQLFieldDefinition;
import graphql.schema.GraphQLNonNull;
import graphql.schema.GraphQLTypeReference;
/**
* The project field of the user.
*
* @author sbegaudeau
*/
public final class UserProjectField {
/**
* The name of the project field.
*/
private static final String PROJECT_FIELD = "project"; //$NON-NLS-1$
/**
* The name of the argument name of the field project.
*/
private static final String PROJECT_NAME_ARG = "name"; //$NON-NLS-1$
/**
* The constructor.
*/
private UserProjectField() {
// Prevent instantiation
}
/**
* Returns the project field.
*
* @return The project field
*/
public static GraphQLFieldDefinition build() {
// @formatter:off
return GraphQLFieldDefinition.newFieldDefinition()
.name(PROJECT_FIELD)
.type(new GraphQLTypeReference(WorkspaceSchemaConstants.PROJECT_TYPE))
.argument(UserProjectField.getProjectFieldNameArg())
.dataFetcher(UserProjectField.getProjectDataFetcher())
.build();
// @formatter:on
}
/**
* Returns the name argument of the project field.
*
* @return The name argument of the project field
*/
private static GraphQLArgument getProjectFieldNameArg() {
// @formatter:off
return GraphQLArgument.newArgument()
.name(PROJECT_NAME_ARG)
.type(new GraphQLNonNull(Scalars.GraphQLString))
.build();
// @formatter:on
}
/**
* Returns the project data fetcher.
*
* @return The project data fetcher
*/
private static DataFetcher<IProject> getProjectDataFetcher() {
// @formatter:off
return environment -> {
Optional<String> optionalProjectName = Optional.of(environment.getArgument(PROJECT_NAME_ARG))
.filter(String.class::isInstance)
.map(String.class::cast);
Optional<IProject> optionalProject = optionalProjectName.map(ResourcesPlugin.getWorkspace().getRoot()::getProject);
return optionalProject.orElse(null);
};
// @formatter:on
}
}