blob: aaa5507864f7370cf227029b55935176c889bd20 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.businessobjects.boundary;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.ENTITYATTRIBUTE_NAME;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.REQUESTPARAM_CONTEXTTYPE;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.REQUESTPARAM_ID;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.REQUESTPARAM_ID2;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.REQUESTPARAM_ID3;
import static org.eclipse.mdm.businessobjects.boundary.ResourceConstants.REQUESTPARAM_SOURCENAME;
import static org.eclipse.mdm.businessobjects.service.EntityService.L;
import static org.eclipse.mdm.businessobjects.service.EntityService.SL;
import static org.eclipse.mdm.businessobjects.service.EntityService.V;
import javax.ejb.EJB;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import org.eclipse.mdm.api.base.model.ContextType;
import org.eclipse.mdm.api.base.model.Environment;
import org.eclipse.mdm.api.dflt.model.TemplateAttribute;
import org.eclipse.mdm.api.dflt.model.TemplateComponent;
import org.eclipse.mdm.businessobjects.entity.SearchAttribute;
import org.eclipse.mdm.businessobjects.service.EntityService;
import org.eclipse.mdm.businessobjects.utils.RequestBody;
import org.eclipse.mdm.businessobjects.utils.ServiceUtils;
import io.swagger.v3.oas.annotations.tags.Tag;
import io.vavr.collection.List;
/**
* {@link TemplateAttribute} resource handling REST requests
*
* @author Alexander Nehmer, science+computing AG Tuebingen (Atos SE)
*
*/
@Tag(name = "Template")
@Path("/environments/{" + REQUESTPARAM_SOURCENAME + "}/tplroots/{" + REQUESTPARAM_CONTEXTTYPE + "}/{" + REQUESTPARAM_ID
+ "}/tplcomps/{" + REQUESTPARAM_ID2 + "}/tplattrs")
public class TemplateAttributeResource {
@EJB
private EntityService entityService;
/**
* Returns the found {@link TemplateAttribute}.
*
* @param sourceName name of the source (MDM {@link Environment} name)
* @param contextType {@link ContextType} of the {@link TemplateAttribute} to
* load
* @param id id of the {@link TemplateAttribute}
* @return the found {@link TemplateAttribute} as {@link Response}
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/{" + REQUESTPARAM_ID3 + "}")
public Response find(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName,
@PathParam(REQUESTPARAM_CONTEXTTYPE) String contextTypeParam, @PathParam(REQUESTPARAM_ID) String tplRootId,
@PathParam(REQUESTPARAM_ID2) String tplCompId, @PathParam(REQUESTPARAM_ID3) String id) {
return entityService
.find(V(sourceName), TemplateAttribute.class, V(id),
ServiceUtils.getContextTypeSupplier(contextTypeParam), SL(tplRootId, tplCompId))
.map(e -> ServiceUtils.buildEntityResponse(e, Status.OK)).recover(ServiceUtils.ERROR_RESPONSE_SUPPLIER)
.getOrElse(ServiceUtils.SERVER_ERROR_RESPONSE);
}
/**
* Returns the (filtered) {@link TemplateAttribute}s.
*
* @param sourceName name of the source (MDM {@link Environment} name)
* @param contextType {@link ContextType} of the {@link TemplateAttribute} to
* load
* @param filter filter string to filter the {@link TemplateAttribute}
* result
* @return the (filtered) {@link TemplateAttribute}s as {@link Response}
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response findAll(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName,
@PathParam(REQUESTPARAM_CONTEXTTYPE) String contextTypeParam, @PathParam(REQUESTPARAM_ID) String tplRootId,
@PathParam(REQUESTPARAM_ID2) String tplCompId, @QueryParam("filter") String filter) {
return entityService
.find(V(sourceName), TemplateComponent.class, V(tplCompId),
ServiceUtils.getContextTypeSupplier(contextTypeParam), SL(tplRootId))
.map(tplComp -> List.ofAll(tplComp.getTemplateAttributes()))
.map(e -> ServiceUtils.buildEntityResponse(e, Status.OK)).recover(ServiceUtils.ERROR_RESPONSE_SUPPLIER)
.getOrElse(ServiceUtils.SERVER_ERROR_RESPONSE);
}
/**
* Returns the created {@link TemplateAttributeValue}.
*
* @param body The {@link TemplateAttribute} to create.
* @return the created {@link TemplateAttribute} as {@link Response}.
*/
@POST
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Response create(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName,
@PathParam(REQUESTPARAM_CONTEXTTYPE) String contextTypeParam, @PathParam(REQUESTPARAM_ID) String tplRootId,
@PathParam(REQUESTPARAM_ID2) String tplCompId, String body) {
RequestBody requestBody = RequestBody.create(body);
return entityService
.create(V(sourceName), TemplateAttribute.class,
L(requestBody.getStringValueSupplier(ENTITYATTRIBUTE_NAME),
entityService.find(V(sourceName), TemplateComponent.class, V(tplCompId),
ServiceUtils.getContextTypeSupplier(contextTypeParam), SL(tplRootId))))
.map(e -> ServiceUtils.buildEntityResponse(e, Status.CREATED))
.recover(ServiceUtils.ERROR_RESPONSE_SUPPLIER).getOrElse(ServiceUtils.SERVER_ERROR_RESPONSE);
}
/**
* Updates the {@link TemplateAttribute} with all parameters set in the given
* JSON body of the request
*
* @param sourceName name of the source (MDM {@link Environment} name)
* @param id the identifier of the {@link TemplateAttribute} to delete.
* @param body the body of the request containing the attributes to update
* @return the updated {@link TemplateAttribute}
*/
@PUT
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Path("/{" + REQUESTPARAM_ID3 + "}")
public Response update(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName,
@PathParam(REQUESTPARAM_CONTEXTTYPE) String contextTypeParam, @PathParam(REQUESTPARAM_ID) String tplRootId,
@PathParam(REQUESTPARAM_ID2) String tplCompId, @PathParam(REQUESTPARAM_ID3) String id, String body) {
RequestBody requestBody = RequestBody.create(body);
return entityService
.update(V(sourceName),
entityService.find(V(sourceName), TemplateAttribute.class, V(id),
ServiceUtils.getContextTypeSupplier(contextTypeParam), SL(tplRootId, tplCompId)),
requestBody.getValueMapSupplier())
.map(e -> ServiceUtils.buildEntityResponse(e, Status.OK)).recover(ServiceUtils.ERROR_RESPONSE_SUPPLIER)
.getOrElse(ServiceUtils.SERVER_ERROR_RESPONSE);
}
/**
* Deletes and returns the deleted {@link TemplateAttribute}.
*
* @param id The identifier of the {@link TemplateAttribute} to delete.
* @return the deleted {@link TemplateAttribute }s as {@link Response}
*/
@DELETE
@Produces(MediaType.APPLICATION_JSON)
@Path("/{" + REQUESTPARAM_ID3 + "}")
public Response delete(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName,
@PathParam(REQUESTPARAM_CONTEXTTYPE) String contextTypeParam, @PathParam(REQUESTPARAM_ID) String tplRootId,
@PathParam(REQUESTPARAM_ID2) String tplCompId, @PathParam(REQUESTPARAM_ID3) String id) {
return entityService
.delete(V(sourceName),
entityService.find(V(sourceName), TemplateAttribute.class, V(id),
ServiceUtils.getContextTypeSupplier(contextTypeParam), SL(tplRootId, tplCompId)))
.map(e -> ServiceUtils.buildEntityResponse(e, Status.OK)).recover(ServiceUtils.ERROR_RESPONSE_SUPPLIER)
.getOrElse(ServiceUtils.SERVER_ERROR_RESPONSE);
}
/**
* Returns the search attributes for the {@link TemplateAttribute} type.
*
* @param sourceName name of the source (MDM {@link Environment} name)
* @return the {@link SearchAttribute}s as {@link Response}
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/searchattributes")
public Response getSearchAttributes(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName) {
return ServiceUtils.buildSearchAttributesResponse(V(sourceName), TemplateAttribute.class, entityService);
}
/**
* Returns a map of localization for the entity type and the attributes.
*
* @param sourceName name of the source (MDM {@link Environment} name)
* @return the I18N as {@link Response}
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/localizations")
public Response localize(@PathParam(REQUESTPARAM_SOURCENAME) String sourceName) {
return ServiceUtils.buildLocalizationResponse(V(sourceName), TemplateAttribute.class, entityService);
}
}