use of org.wso2.carbon.apimgt.core.models.WSDLInfo in project carbon-apimgt by wso2.
the class WSDL20ProcessorImpl method getWsdlInfo.
@Override
public WSDLInfo getWsdlInfo() throws APIMgtWSDLException {
Map<String, String> endpointsMap = getEndpoints();
WSDLInfo wsdlInfo = new WSDLInfo();
wsdlInfo.setEndpoints(endpointsMap);
wsdlInfo.setVersion(APIMgtConstants.WSDLConstants.WSDL_VERSION_20);
return wsdlInfo;
}
use of org.wso2.carbon.apimgt.core.models.WSDLInfo in project carbon-apimgt by wso2.
the class WSDL11ProcessorImpl method getWsdlInfo.
@Override
public WSDLInfo getWsdlInfo() throws APIMgtWSDLException {
WSDLInfo wsdlInfo = new WSDLInfo();
Map<String, String> endpointsMap = getEndpoints();
Set<WSDLOperation> operations = getHttpBindingOperations();
wsdlInfo.setEndpoints(endpointsMap);
wsdlInfo.setVersion(APIMgtConstants.WSDLConstants.WSDL_VERSION_11);
if (!operations.isEmpty()) {
wsdlInfo.setHasHttpBindingOperations(true);
wsdlInfo.setHttpBindingOperations(operations);
} else {
wsdlInfo.setHasHttpBindingOperations(false);
}
wsdlInfo.setHasSoapBindingOperations(hasSoapBindingOperations());
return wsdlInfo;
}
use of org.wso2.carbon.apimgt.core.models.WSDLInfo in project carbon-apimgt by wso2.
the class SOAPOperationBindingUtils method getSoapOperationMapping.
/**
* Gets soap operations to rest resources mapping for a wsdl archive path
*
* @param path Path of the extracted WSDL archive
* @return swagger json string with the soap operation mapping
* @throws APIManagementException if an error occurs when generating swagger
*/
public static String getSoapOperationMapping(String path) throws APIManagementException {
APIMWSDLReader wsdlReader = new APIMWSDLReader(path);
WSDL11SOAPOperationExtractor processor = APIMWSDLReader.getWSDLSOAPOperationExtractor(path, wsdlReader);
WSDLInfo wsdlInfo = processor.getWsdlInfo();
return getGeneratedSwaggerFromWSDL(wsdlInfo);
}
use of org.wso2.carbon.apimgt.core.models.WSDLInfo in project carbon-apimgt by wso2.
the class SOAPOperationBindingUtils method getGeneratedSwaggerFromWSDL.
/**
* Generate the swagger from the WSDL info
*
* @param wsdlInfo WSDLInfo object which has parsed WSDL data
* @return Generated the swagger from the WSDL info
* @throws APIManagementException if an error occurs when generating swagger
*/
private static String getGeneratedSwaggerFromWSDL(WSDLInfo wsdlInfo) throws APIManagementException {
Set<WSDLSOAPOperation> operations;
Map<String, ModelImpl> paramModelMap;
String swaggerStr = SOAPToRESTConstants.EMPTY_STRING;
operations = wsdlInfo.getSoapBindingOperations();
paramModelMap = wsdlInfo.getParameterModelMap();
populateSoapOperationParameters(operations);
Swagger swaggerDoc = new Swagger();
for (WSDLSOAPOperation operation : operations) {
Path path = new Path();
Operation op = new Operation();
List<ModelImpl> inputParameterModel = operation.getInputParameterModel();
List<ModelImpl> outputParameterModel = operation.getOutputParameterModel();
if (HTTPConstants.HTTP_METHOD_GET.equals(operation.getHttpVerb())) {
for (ModelImpl input : inputParameterModel) {
if (input != null && operation.getName().equalsIgnoreCase(input.getName())) {
Map<String, Property> properties = input.getProperties();
if (properties != null) {
for (String property : properties.keySet()) {
QueryParameter param = new QueryParameter();
param.setName(property);
param.setType(properties.get(property).getType());
op.addParameter(param);
}
}
inputParameterModel.remove(input);
break;
}
}
} else {
// adding body parameter
BodyParameter param = new BodyParameter();
param.setName(APIConstants.OperationParameter.PAYLOAD_PARAM_NAME);
param.setIn(APIConstants.OperationParameter.PAYLOAD_PARAM_TYPE);
param.setRequired(true);
RefModel model = new RefModel();
model.set$ref(SOAPToRESTConstants.Swagger.DEFINITIONS_ROOT + operation.getName() + SOAPToRESTConstants.Swagger.INPUT_POSTFIX);
param.setSchema(model);
op.addParameter(param);
}
// adding response
Response response = new Response();
RefProperty refProperty = new RefProperty();
refProperty.set$ref(SOAPToRESTConstants.Swagger.DEFINITIONS_ROOT + operation.getName() + SOAPToRESTConstants.Swagger.OUTPUT_POSTFIX);
response.setSchema(refProperty);
response.setDescription(SOAPToRESTConstants.EMPTY_STRING);
op.addResponse("default", response);
op.setOperationId(operation.getSoapBindingOpName());
// setting vendor extensions
Map<String, String> extensions = new HashMap<>();
extensions.put(SOAPToRESTConstants.Swagger.SOAP_ACTION, operation.getSoapAction());
extensions.put(SOAPToRESTConstants.Swagger.SOAP_OPERATION, operation.getSoapBindingOpName());
extensions.put(SOAPToRESTConstants.Swagger.NAMESPACE, operation.getTargetNamespace());
if (wsdlInfo.isHasSoap12BindingOperations()) {
extensions.put(SOAPToRESTConstants.Swagger.SOAP_VERSION, SOAPToRESTConstants.SOAP_VERSION_12);
} else if (wsdlInfo.hasSoapBindingOperations()) {
extensions.put(SOAPToRESTConstants.Swagger.SOAP_VERSION, SOAPToRESTConstants.SOAP_VERSION_11);
}
extensions.put(SOAPToRESTConstants.Swagger.SOAP_STYLE, operation.getStyle());
extensions.put(SOAPToRESTConstants.Swagger.SOAP_MESSAGE_TYPE, operation.getMessageType());
op.setVendorExtension(SOAPToRESTConstants.Swagger.WSO2_SOAP, extensions);
if (!HTTPConstants.HTTP_METHOD_GET.equals(operation.getHttpVerb())) {
ModelImpl inputModel = new ModelImpl();
inputModel.setName(operation.getName() + SOAPToRESTConstants.Swagger.INPUT_POSTFIX);
inputModel.setType(ObjectProperty.TYPE);
Map<String, Property> inputPropertyMap = new HashMap<>();
for (ModelImpl input : inputParameterModel) {
if (input != null && input.getProperties() != null) {
RefProperty inputRefProp;
if (input.getProperties().containsKey(input.getName())) {
inputRefProp = (RefProperty) input.getProperties().get(input.getName());
} else {
inputRefProp = new RefProperty();
inputRefProp.set$ref(SOAPToRESTConstants.Swagger.DEFINITIONS_ROOT + input.getName());
}
inputPropertyMap.put(input.getName(), inputRefProp);
}
}
inputModel.setProperties(inputPropertyMap);
swaggerDoc.addDefinition(operation.getName() + SOAPToRESTConstants.Swagger.INPUT_POSTFIX, inputModel);
}
ModelImpl outputModel = new ModelImpl();
outputModel.setName(operation.getName() + SOAPToRESTConstants.Swagger.OUTPUT_POSTFIX);
outputModel.setType(ObjectProperty.TYPE);
Map<String, Property> outputPropertyMap = new HashMap<>();
for (ModelImpl output : outputParameterModel) {
if (output != null && output.getProperties() != null) {
RefProperty outputRefProp;
if (output.getProperties().containsKey(output.getName())) {
outputRefProp = (RefProperty) output.getProperties().get(output.getName());
} else {
outputRefProp = new RefProperty();
outputRefProp.set$ref(SOAPToRESTConstants.Swagger.DEFINITIONS_ROOT + output.getName());
}
outputPropertyMap.put(output.getName(), outputRefProp);
}
}
outputModel.setProperties(outputPropertyMap);
swaggerDoc.addDefinition(operation.getName() + SOAPToRESTConstants.Swagger.OUTPUT_POSTFIX, outputModel);
path.set(operation.getHttpVerb().toLowerCase(), op);
swaggerDoc.path("/" + operation.getName(), path);
Info info = new Info();
info.setVersion(SOAPToRESTConstants.EMPTY_STRING);
info.setTitle(SOAPToRESTConstants.EMPTY_STRING);
swaggerDoc.info(info);
}
if (paramModelMap != null) {
for (String propertyName : paramModelMap.keySet()) {
swaggerDoc.addDefinition(propertyName, paramModelMap.get(propertyName));
}
}
try {
swaggerStr = Json.pretty(swaggerDoc);
} catch (Exception e) {
String msg = "Error occurred while deserialize swagger model.";
handleException(msg, e);
}
if (log.isDebugEnabled()) {
log.debug(swaggerStr);
}
return swaggerStr;
}
use of org.wso2.carbon.apimgt.core.models.WSDLInfo in project carbon-apimgt by wso2.
the class SOAPOperationBindingUtils method getSoapOperationMappingForUrl.
/**
* Gets soap operations to rest resources mapping for a WSDL url
*
* @param url WSDL URL
* @return swagger json string with the soap operation mapping
* @throws APIManagementException if an error occurs when generating swagger
*/
public static String getSoapOperationMappingForUrl(String url) throws APIManagementException {
URL wsdlUrl = APIMWSDLReader.getURL(url);
WSDL11SOAPOperationExtractor processor = APIMWSDLReader.getWSDLSOAPOperationExtractorForUrl(wsdlUrl);
WSDLInfo wsdlInfo = processor.getWsdlInfo();
return getGeneratedSwaggerFromWSDL(wsdlInfo);
}
Aggregations