use of eu.europa.ec.fisheries.uvms.rules.model.exception.RulesModelMapperException in project UVMS-ActivityModule-APP by UnionVMS.
the class ActivityRulesModuleServiceBean method composeAndSendTripUpdateFaQueryToRules.
@Override
public void composeAndSendTripUpdateFaQueryToRules(String tripId) throws ActivityModuleException {
String sendTo = fishingTripService.getOwnerFluxPartyFromTripId(tripId);
if (StringUtils.isEmpty(sendTo)) {
throw new ActivityModuleException("Owner for the provided Trip Id [ " + tripId + " ] was not found, so the Update Trip Query cannot be executed!");
}
// TODO : Ask cedric where to get this parameter from! or ask Greg
boolean consolidated = false;
FAQuery faQueryForTrip = FaQueryFactory.createFaQueryForTrip(tripId, sendTo, consolidated);
if (faQueryForTrip == null) {
throw new ActivityModuleException("Fa Query is null!! Check the [tripId, sendTo] parameters!");
}
try {
SubscriptionPermissionResponse subscriptionPermissionResponse = permissionChecker.checkPermissionForFaQuery(faQueryForTrip);
if (SubscriptionPermissionAnswer.YES.equals(subscriptionPermissionResponse.getSubscriptionCheck())) {
final List<SubscriptionParameter> parameters = subscriptionPermissionResponse.getParameters();
String dataFlow = extractParameterByName(parameters, "DF");
// TODO : mocking up df value untill subscription is ready
if (StringUtils.isEmpty(dataFlow)) {
dataFlow = "urn:un:unece:uncefact:fisheries:FLUX:FA:EU:2";
}
// TODO : END Mocking
if (StringUtils.isEmpty(dataFlow)) {
log.error("[ERROR] Subscription is missing the dataFlow parameter! Cannot send FaQuery! ");
throw new ActivityModuleException("Subscription is missing the dataFlow parameter! Cannot send FaQuery!");
}
String logId = faQueryForTrip.getID().getValue();
FLUXFAQueryMessage fluxfaQueryMessage = new FLUXFAQueryMessage(faQueryForTrip);
final String faqReqStr = JAXBMarshaller.marshallJaxBObjectToString(fluxfaQueryMessage);
// TODO : change this values (username, senderOrReceiver (Node name?)) when got answer from CEDRIC
// senderOrReceiver : From subscription
// FR : system parameter
// username : Mock to FLUX
rulesProducerBean.sendModuleMessage(RulesModuleRequestMapper.createSendFaQueryMessageRequest(faqReqStr, "FLUX", logId, dataFlow, "BEL"), activityConsumerBean.getDestination());
} else {
throw new ActivityModuleException("The FaQuery that was build with the following parameters [" + tripId + "," + sendTo + ",consolidated : " + consolidated + "] doesn't match to any subscription!");
}
} catch (MessageException | RulesModelMapperException | ActivityModelMarshallException e) {
log.error("[ERROR] Error while trying to ActivityRulesModuleService.composeAndSendTripUpdateFaQueryToRules(...)!", e);
throw new ActivityModuleException("JAXBException or MessageException!", e);
}
}
Aggregations