Skip to main content

Template for building an integration as a microservice with Azure Functions

This integration launchpad comes with full features set optimized to build agains Geins Management API.

The launchpad is built on top of Azure Functions. Azure Functions is a serverless compute service that enables you to run code on-demand without having to explicitly provision or manage infrastructure. Use Azure Functions to run a script or piece of code in response to a variety of events. Azure Functions supports triggers, which are ways to start execution of your code, and bindings, which are ways to simplify coding for input and output data.

GitHub Repository

The source code for this launchpad is available on GitHub lp-integration-serverless

Pre-requisites

Features

  • Authentication
  • Geins API Client
  • Logging in Azure Table Storage
  • Queue Storage
  • Queue Trigger
  • HTTP Trigger
  • Timer Trigger
  • Log search via http request and response

Getting started

Run the following command to install the dependencies:

npm install

Add the local.settings.json file to the root of the project. The local.settings.json file is used to store the credentials for the Azure Storage Account and Geins Management API. The local.settings.json file is not checked in to the repository.

{
"IsEncrypted": false,
"Values": {
"ENVIRONMENT" : "development",
"FUNCTIONS_WORKER_RUNTIME": "node",
"AZURE_ACCOUNT_NAME": "YOUR_ACCOUNT_NAME",
"AZURE_ACCOUNT_KEY": "YOUT_ACCOUNT_KEY",
"AZURE_TABLE_NAME": "log",
"AZURE_QUEUE_NAME": "queue-items",
"GEINS_MGMT_API_KEY": "YOUR_API_KEY",
"GEINS_MGMT_API_USERMAME": "YOUR_API_USERNAME",
"GEINS_MGMT_API_PASSWORD": "YOuR_API_PASSWORD",
"ENVIRONMENT" : "development",
"AzureWebJobsStorage": "AZURE_STORAGE_ACCOUNT_CONNECTION_STRING"
},
"Host": {
"CORS": "*"
}
}

Run the following command to start the function app:

func start

Authentication

@azure/core-auth is used for authentication. You can find more information here: https://www.npmjs.com/package/@azure/core-auth

  • For the table storage and queue storage, you can use the connection string or credentials.
  • For the Geins API, you use api-user credentialas and api-key. Read more at docs.geins.io.

Update the local.settings.json file with your credentials:

{
"IsEncrypted": false,
"Values": {
"ENVIRONMENT" : "development",
"FUNCTIONS_WORKER_RUNTIME": "node",
"AZURE_ACCOUNT_NAME": "YOUR_ACCOUNT_NAME",
"AZURE_ACCOUNT_KEY": "YOUT_ACCOUNT_KEY",
"AZURE_TABLE_NAME": "log",
"AZURE_QUEUE_NAME": "queue-items",
"GEINS_MGMT_API_KEY": "YOUR_API_KEY",
"GEINS_MGMT_API_USERMAME": "YOUR_API_USERNAME",
"GEINS_MGMT_API_PASSWORD": "YOuR_API_PASSWORD"
}
}

Logging

The logging is done via the Logger class that is exposed throug the util module as logger. The logger is configured to log to Azure Table Storage. The table name is configured in the local.settings.json file.

To log a message, use the saveLog method:

util.logger.saveLog(origin, action, payload);
ParameterInfoExample
originOrigin of requestPostmanRuntime/7.31.1 or IP
actionActionsyncUser
payloadPayload{ text: 'Hello World! '}

Queue Storage

The queue storage is configured to use the AZURE_QUEUE_NAME from the local.settings.json file. The queue storage is used to store the queue items that are used to trigger the queue trigger.

HTTP Trigger

Trigger to put action and payload in the queue. The queue item is a JSON object with the following structure:

{
"action": "syncUser",
"payload": {
"id": "1234567890",
"name": "John Doe"
}
}

Exposed throug an HTTP trigger. The log search is done via the fetchLogs class that is exposed throug the util module as logger.fetchLogs(filter). Filter is an object with the following structure:

{ 
origin: 'PostmanRuntime/7.31.1',
action: 'sendEmail',
}

Timer Trigger

Used to put a queue item in the queue. Schedule for the timer trigger is configured in the function.json file. Schedule is a cron expression see the documentation here: https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=csharp#ncrontab-expressions.

The queue item is a JSON object with the following structure:

{
"action": "syncUser",
"payload": {
"id": "1234567890",
"name": "John Doe"
}
}

Queue Trigger

Trigger to process the queue items. The queue item is a JSON object with the following structure:

{
"action": "syncUser",
"payload": {
"id": "1234567890",
"name": "John Doe"
}
}

Actions

An action is a function that is used to process the queue item. The action is a function that is exposed throug the actions module. The action is a function that is used in the queueTrigger function.

VariableInfoExample
originOrigin of requestqueue-trigger
actionActionsync
familyFamilyuser
outputOutputaction.output.push(new util.Output(util.OutputType.API_PUSH, new util.MyParser()));
payloadPayload{ text: 'Hello World! '}

Output

The Output class is used to output the result of the queue item. An Output object has the following structure:

new util.Output(util.OutputType.API_PUSH, new util.MyParser());
VariableInfoExample
typeType of outputAPI_PUSH
parserParsernew util.MyParser()

OutputType

The OutputType enum is used to define the type of output. The OutputType enum is exposed throug the util module as OutputType. The OutputType enum is used in the Output class.

Parsers

Parser is added to an Output object. The parser is used to parse the result of the queue item. Parser must implement the parse method. The parse method is used to parse the result of the queue item. The parse method is used in the queueTrigger function.