Your API implementation often needs to interact with REST APIs, SOAP WebServices, gRPC microservices, or other forms of APIs.
To facilitate calling other APIs or web services, we introduce@loopback/service-proxy
module to provide a common set of interfaces forinteracting with backend services. You can create a Service
class to provide acommon set of interfaces for interacting with backend services.
There are 3 major steps:
- Add a datasource: specify the service you’re trying to connect
- Add a service: define how the operations/methods in the external APIswill be mapped to the service methods.
- Add a controller: expose the REST APIs that will call the service methods
Add a datasource
Add a datasource using the Datasource generator andselect the corresponding connector.
Datasource for SOAP web service
For calling SOAP web services, you also need to know the URL of the SOAP webservice endpoint and its corresponding WSDL file.
$ lb4 datasource
? Datasource name: ds
? Select the connector for ds: SOAP webservices (supported by StrongLoop)
? URL to the SOAP web service endpoint: http://calculator-webservice.mybluemix.net/calculator
? HTTP URL or local file system path to the WSDL file: http://calculator-webservice.mybluemix.net/calculator?wsdl
? Expose operations as REST APIs: Yes
? Maps WSDL binding operations to Node.js methods:
For the last option Maps WSDL binding operations to Node.js methods
, specifythe JSON in the format of:
servicMethodName: {
"service": "<WSDL service name>",
"port": "<WSDL port name>",
"operation": "<WSDL operation name>"
}
If you have more than one operations to map, it might be easier to edit theDataSource JSON after it’s been created. See below for the example of themapping of the WSDL binding operations and Node.js methods.
{
"name": "ds",
"connector": "soap",
"url": "http://calculator-webservice.mybluemix.net/calculator",
"wsdl": "http://calculator-webservice.mybluemix.net/calculator?wsdl",
"remotingEnabled": true,
// ADD THIS SNIPPET
"operations": {
"add": {
"service": "CalculatorService", //WSDL service name
"port": "CalculatorPort", //WSDL port name
"operation": "add" //WSDL operation name
},
"subtract": {
"service": "CalculatorService",
"port": "CalculatorPort",
"operation": "subtract"
}
}
// END OF THE SNIPPET
}
For details, you can refer to the SOAP connector’s operations property:https://github.com/strongloop/loopback-connector-soap#operations-property
Datasource for REST service
When calling REST services, select REST services
for connector. We’ll leavethe default for the last 3 prompts.
$ lb4 datasource
? Datasource name: restds
? Select the connector for restds: REST services (supported by StrongLoop)
? Base URL for the REST service: https://swapi.co/api/
? Default options for the request:
? An array of operation templates:
? Use default CRUD mapping: No
The next step is to edit the DataSource JSON file for options
andoperations
.
The REST connector uses therequest module as the HTTP client. Youcan configure the same options as for the request()
function. See details inthis documentation page.
The template
object specifies the REST API invocation as a JSON template. Youcan find more details in theDefining a custom method using a template page.
{
"name": "restds",
"connector": "rest",
"baseURL": "https://swapi.co/api/",
"crud": false,
"options": {
"headers": {
"accept": "application/json",
"content-type": "application/json"
}
},
"operations": [
{
"template": {
"method": "GET",
"url": "https://swapi.co/api/people/{personId}"
},
"functions": {
"getCharacter": ["personId"]
}
}
]
}
Refer to the detailed information in [configure the options] and [templates].
Add a service
Add a service using the Service generator and specifythe DataSource that you just created.
Define the methods that map to the operations
In the Service interface, define the methods that map to the operations of yourexternal service.
To promote type safety, we recommend you to declare data types and serviceinterfaces in TypeScript and use them to access the service proxy.
export interface CalculatorService {
add(args: CalculatorParameters): Promise<AddResponse>;
subtract(args: CalculatorParameters): Promise<SubtractResponse>;
}
export interface AddResponse {
result: {
value: number;
};
}
export interface SubtractResponse {
result: {
value: number;
};
}
export interface CalculatorParameters {
intA: number;
intB: number;
}
Alternately, we also provide a weakly-typed generic service interface asfollows:
/**
* A generic service interface with any number of methods that return a promise
*/
export interface GenericService {
[methodName: string]: (...args: any[]) => Promise<any>;
}
Add a Controller
Add a controller using the Controller generator withthe Empty Controller
option.
Inject the Service in the constructor
constructor(
@inject('services.CalculatorService')
protected calculatorService: CalculatorService,
) {}
Add the REST endpoints
This will be similar to how you normally add a REST endpoint in a Controller.The only difference is you’ll be calling the methods that you’ve exposed in theService interface.
@get('/add/{intA}/{intB}')
async add(
@param.path.integer('intA') intA: number,
@param.path.integer('intB') intB: number,
): Promise<AddResponse> {
//Preconditions
return this.calculatorService.add(<CalculatorParameters>{
intA,
intB,
});
}
More examples
- SOAP web service tutorial:https://loopback.io/doc/en/lb4/soap-calculator-tutorial.html
- REST service tutorial:https://loopback.io/doc/en/lb4/todo-tutorial-geocoding-service.html
Testing your application
Make service proxies easier to test
While @serviceProxy
decorator makes it easy to use service proxies incontrollers, it makes it difficult to write integration tests to verify thatservice proxies are correctly configured/implemented in respect to the mostrecent API provided by the backend service implementation. To make serviceproxies easy to test, we recommend to write aProvider class that will allow bothcontrollers and integration tests to access the same service proxyimplementation.
import {getService, juggler} from '@loopback/service-proxy';
import {inject, Provider} from '@loopback/core';
import {GeocoderDataSource} from '../datasources/geocoder.datasource';
export class GeoServiceProvider implements Provider<GeoService> {
constructor(
@inject('datasources.geoService')
protected dataSource: juggler.DataSource = new GeocoderDataSource(),
) {}
value(): Promise<GeocoderService> {
return getService(this.dataSource);
}
}
Troubleshooting
If you get the error about theapp.serviceProvider() function is needed for ServiceBooter
, make sure youapplyServiceMixinto your Application class in the application.ts
.
export class MyLoopBackApplication extends BootMixin(
ServiceMixin(RepositoryMixin(RestApplication)),
)
Please refer toTesting Your Applicationfor guidelines on integration testing.