org.apache.streampipes.rest.impl.RdfEndpoint Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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 org.apache.streampipes.rest.impl;
import org.apache.streampipes.manager.endpoint.EndpointFetcher;
import org.apache.streampipes.manager.operations.Operations;
import org.apache.streampipes.model.client.endpoint.RdfEndpointItem;
import org.apache.streampipes.rest.api.IRdfEndpoint;
import org.apache.streampipes.rest.shared.annotation.GsonWithIds;
import org.apache.streampipes.storage.api.IRdfEndpointStorage;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.ArrayList;
import java.util.List;
@Path("/v2/users/{username}/rdfendpoints")
public class RdfEndpoint extends AbstractRestInterface implements IRdfEndpoint {
@GET
@Produces(MediaType.APPLICATION_JSON)
@GsonWithIds
@Override
public Response getAllEndpoints() {
//TODO: return the endpoint of passing services
return ok(getEndpoints());
}
@POST
@Produces(MediaType.APPLICATION_JSON)
@GsonWithIds
@Override
public Response addRdfEndpoint(org.apache.streampipes.model.client.endpoint.RdfEndpoint rdfEndpoint) {
getRdfEndpointStorage()
.addRdfEndpoint(rdfEndpoint);
return Response.status(Response.Status.OK).build();
}
@DELETE
@Path("/{rdfEndpointId}")
@Produces(MediaType.APPLICATION_JSON)
@GsonWithIds
@Override
public Response removeRdfEndpoint(@PathParam("rdfEndpointId") String rdfEndpointId) {
getRdfEndpointStorage()
.removeRdfEndpoint(rdfEndpointId);
return Response.status(Response.Status.OK).build();
}
@GET
@Path("/items")
@Produces(MediaType.APPLICATION_JSON)
@GsonWithIds
@Override
public Response getEndpointContents(@PathParam("username") String username) {
List endpoints = getEndpoints();
List items = Operations.getEndpointUriContents(endpoints);
items.forEach(item -> item.setInstalled(isInstalled(item.getUri(), username)));
return ok(items);
}
private List getEndpoints() {
return new EndpointFetcher().getEndpoints();
}
private boolean isInstalled(String elementUri, String username) {
return getAllUserElements(username)
.stream()
.anyMatch(e -> e.equals(elementUri));
}
private List getAllUserElements(String username) {
List elementUris = new ArrayList<>();
elementUris.addAll(getUserService().getOwnSourceUris(username));
elementUris.addAll(getUserService().getOwnActionUris(username));
elementUris.addAll(getUserService().getOwnSepaUris(username));
return elementUris;
}
private IRdfEndpointStorage getRdfEndpointStorage() {
return getNoSqlStorage().getRdfEndpointStorage();
}
}