use of com.redhat.service.bridge.manager.models.Processor in project sandbox by 5733d9e2be6485d52ffa08870cabdee0.
the class ProcessorServiceImpl method createProcessor.
@Override
public Processor createProcessor(String bridgeId, String customerId, ProcessorRequest processorRequest) {
/* We cannot deploy Processors to a Bridge that is not Available */
Bridge bridge = bridgesService.getReadyBridge(bridgeId, customerId);
if (processorDAO.findByBridgeIdAndName(bridgeId, processorRequest.getName()) != null) {
throw new AlreadyExistingItemException("Processor with name '" + processorRequest.getName() + "' already exists for bridge with id '" + bridgeId + "' for customer '" + customerId + "'");
}
Processor newProcessor = new Processor();
Set<BaseFilter> requestedFilters = processorRequest.getFilters();
String requestedTransformationTemplate = processorRequest.getTransformationTemplate();
BaseAction requestedAction = processorRequest.getAction();
ActionProvider actionProvider = actionProviderFactory.getActionProvider(requestedAction.getType());
BaseAction resolvedAction = actionProviderFactory.resolve(requestedAction, bridge.getId(), customerId, newProcessor.getId());
newProcessor.setName(processorRequest.getName());
newProcessor.setSubmittedAt(ZonedDateTime.now());
newProcessor.setStatus(ManagedResourceStatus.ACCEPTED);
newProcessor.setBridge(bridge);
newProcessor.setShardId(shardService.getAssignedShardId(newProcessor.getId()));
ProcessorDefinition definition = new ProcessorDefinition(requestedFilters, requestedTransformationTemplate, requestedAction, resolvedAction);
newProcessor.setDefinition(definitionToJsonNode(definition));
LOGGER.info("Processor with id '{}' for customer '{}' on bridge '{}' has been marked for creation", newProcessor.getId(), newProcessor.getBridge().getCustomerId(), newProcessor.getBridge().getId());
createProcessorConnectorEntity(newProcessor, actionProvider, resolvedAction);
workManager.schedule(newProcessor);
return newProcessor;
}
use of com.redhat.service.bridge.manager.models.Processor in project sandbox by 5733d9e2be6485d52ffa08870cabdee0.
the class ProcessorsAPI method addProcessorToBridge.
@POST
@Path("{bridgeId}/processors")
public Response addProcessorToBridge(@PathParam("bridgeId") @NotEmpty String bridgeId, @ValidActionParams @Valid ProcessorRequest processorRequest) {
String customerId = identityResolver.resolve(jwt);
Processor processor = processorService.createProcessor(bridgeId, customerId, processorRequest);
return Response.status(Response.Status.CREATED).entity(processorService.toResponse(processor)).build();
}
Aggregations