@teamviewer/teamviewer-iot-mqtt-sdk

1.0.6 • Public • Published

TeamViewer IoT SDK for Node.js

This documentation describes the use of TeamViewer IoT SDK for connecting and publishing data to TeamViewer Iot Agent using Node.js.


Getting started

Minimum requirements

  • Node version >= 6.14.0, suggesting version >= 8.3.0

To check your Node version please run the following command:

node --version
sudo apt-get update
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs

Alternatively, for Node.js 10:

sudo apt-get update
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs  

Installation

Download and install Node.js SDK

npm install @teamviewer/teamviewer-iot-mqtt-sdk

Examples

You can download examples from here.


Use the SDK

Client

The client is the main class used to establish an asynchronous connection with TeamViewer IoT Agent, as well as to put data in the agent.


Constructor

TVCMI_client()

new TvIoT(TV_IOT_CONFIG)

The constructor takes the following arguments:

// connection parameters
const TV_IOT_CONFIG = {
    'MqttHost': 'localhost',
    'MqttPort': 18884,
    'MqttProvisionPort': 18883,
    'CaFile': '/var/lib/teamviewer-iot-agent/certs/TeamViewerAuthority.crt',
    'CertFolder': path.resolve(process.cwd(), 'cert'),
    'logFile' : 'your log file path.log', 
    'logLevel' : 'info' 
};


// Creating a new client to connect to TeamViewer IoT Agent
clientConnector = new TvIoT(TV_IOT_CONFIG);

The constructor takes the following arguments:

parameters

For both of the options the following fields must be initialized.

  • MqttHost - the host name.
  • MqttPort - Port for certificate exchange.
  • MqttProvisionPort - Secure port for establishing a TLS connection.
  • CaFile - CA provided by TeamViewer Iot Agent. Default location: /var/lib/teamviewer-iot-agent/certs/TeamViewerAuthority.crt.
  • CertFolder - Folder where the certificate signing request, private key and authorized certificates will be stored.
  • logFile - Optional. Log file location for SDK. Default location: /var/log/teamviewer-iot-agent/iot-nodejs-sdk.log.
  • logLevel - Optional. Level for logging. Possible values: error, debug, info(default), warn, all, fatal, off( disable logging )

on('connected', callback)

on('connected', callback);
clientConnector.on('connected', () => {
    console.log('Secure connection is established.');
});

on('error', callback)

on('error', callback);
clientConnector.on('error', (msg) => {
    console.log(msg);
});

Called instead of initialized callback when TeamViewer IoT Agent replies with an error.


Provisioning / Deprovisioning

provision()

clientConnector.provision();
const TV_IOT_CONFIG = {
    'MqttHost': 'localhost',
    'MqttPort': 18884,
    'MqttProvisionPort': 18883,
    'CaFile': '/var/lib/teamviewer-iot-agent/certs/TeamViewerAuthority.crt',
    'CertFolder': path.resolve(process.cwd(), 'cert')
};

clientConnector = new TvIoT(TV_IOT_CONFIG);

clientConnector.provision();

Checks for a private key and an authorized certificate in the CertFolder location passed to the constructor. If not found, creates a private key, certificate signing request and insecurely connects to TeamViewer IoT Agent to obtain an authorized certificate.

on('clientCreated', callback) - on success provision

clientConnector.on('clientCreated', function(connectorId) {
    console.log('created client with id: ' + connectorId);
});

on('errorCreatingClient', callback) - on fail provision

clientConnector.on('clientCreated', function(connectorId) {
    console.log('created client with id: ' + connectorId);
});

deprovision()

clientConnector.provision(clientId, callback, errorCallback);

Deprovisions the client and deletes all the data associated with it. After this step any updates cannot be made to the client.


Connecting / Disconnecting

connect_api()

clientConnector.connect_api( clientConnector.clientCertFile(connectorId), clientConnector.clientKeyFile(connectorId) );

connect_api()

clientConnector.disconnect_api();

Preparing data for publishing

Before the data can be published to TeamViewer IoT Agent, it needs to be formated according to the data model used by TeamViewer IoT Agent . A sensor and a metric must be created to respectively group and describe the data pushed to TeamViewer IoT Agent.


Sensor

Sensor is a logical unit that allows to group one or more metrics for putting data to TeamViewer IoT. It is recommended to update all metrics that belong to the same sensor simultaneously to ensure that the data arrives with the same timestamp, so that it is better processed by rule engines.

create_sensor()

clientConnector.create_sensor(sensor_name, callback);

sensor_name | the name of the sensor callback | the callback function which takes response as function parameter (response Message: {"name": "SensorName", "sensorId”:"d4170d999b9240a5863df622aad9fc4a"})

function errorCallback(error) {
    console.log(error);
    clientConnector.disconnect_api();
}       

clientConnector.create_sensor('my_sensor', (response) =>{
        console .log('SENSOR -------- ', response);
    },
    errorCallback);

update_sensor()

clientConnector.update_sensor(sensorId, sensorName, callback);      

Updates the description of the sensor. The function parameters are: sensorId | The sensor ID obtained when creating the sensor. sensorName | The name of the sensor. callback | the callback function which takes response as function parameter

list_sensors()

clientConnector.list_sensors(connecterId, callback);        

Through the message field of the callback returns a JSON object listing the metadata of all registered sensors and their metric IDs of the specific client.

// Callback response
[
   {
     "metrics" :
     [
        {
          "link" : "/v1.0/f695c80fc5f74f6c9ee08229c2b3bd3a/sensor/ba3a8a1807c141d9b4f224cc0cd8da66/metric/021b47f4268b4cc3982ce2d9cb2b8693/inventory",
          "metricId" : "021b47f4268b4cc3982ce2d9cb2b8693"
        },
        { 
          "link" : "/v1.0/f695c80fc5f74f6c9ee08229c2b3bd3a/sensor/ba3a8a1807c141d9b4f224cc0cd8da66/metric/5f27b1c2487a4c759af81b05397945f2/inventory",
          "metricId" : "5f27b1c2487a4c759af81b05397945f2"
        }
     ],
     "name" : "my_sensor",
     "sensorId" : "ba3a8a1807c141d9b4f224cc0cd8da66",
     "store" : true
   }
]

delete_sensor()

clientConnector.delete_sensors(connecterId, callback);

sensorId | The sensor ID obtained when creating the sensor.


Metric

Metric is the container for the actual value which is pushed to TeamViewer IoT. Metrics must belong to a sensor and can’t exist independently.

create_metric()

clientConnector.create_metrics(sensorId, metricDefinition, callback, errorCallback);
const metricsList = [{
                    'matchingId': '1',
                    'valueType': 'string',
                    'name': 'metric1_name',
                    'valueAnnotation': 'unit1'
                },
                {
                    'matchingId': '2',
                    'valueType': 'integer',
                    'name': 'metric2_name',
                    'valueAnnotation': 'unit2'
                }];

function errorCallback(error) {
    console.log(error);
    clientConnector.disconnect_api();
}


clientConnector.create_metrics(sensorId, JSON.stringify({metrics: metricsList}), (metric) => {
    console.log('METRICS ------- ', metric);
    clientConnector.disconnect_api();
},
errorCallback);

Creates a metric describing the data to be published to TeamViewer IoT Agent. You must wait for the callback to obtain and save the metric ID. The metric ID will be used to later identify the metric. One or more metrics can be created simultaneously. The parameters for the function are:

metricDefinition

The message definition must contain the necessary metadata for the metrics in JSON format, the following fields must be present in the JSON message: matchingId, valueType, name and valueAnnotation. This way of defining a metric gives a complete flexibility in what kind of data you want to push to TeamViewer IoT.

metrics: Array - Lists the definitions of all metric objects to be registered. matchingId: String - Used to match the ID-s with metrics.

name: String - Name of the metric.

valueAnnotation: String - Optional field to define a custom unit for metric values.

valueType: String - Defines the type of the custom defined unit. Valid entries are: | bool | string | double | integer

// Callback response
[
   {
     "matchingId" : "1",
     "metricId" : "5f27b1c2487a4c759af81b05397945f2"
   },
   {
     "matchingId" : "2",
     "metricId" : "021b47f4268b4cc3982ce2d9cb2b8693"
   }
]

describe_metric()

clientConnector.describe_metric(sensorId, metricId, callback)

delete_metric()

clientConnector.delete_metrics(sensorId, metrics, callback) 

Pushing data to TeamViewer IoT Agent

put_metric()

clientConnector.put_metric(sensorId, metricData, callback, errorCallback);

Puts metric data in TeamViewer IoT Agent.

sensorId: the sensor ID obtained when creating the sensor. metricData: JSON containing metric values.


License

This SDK is distributed under the MIT License - see the LICENSE file for details.


Support

Bugs and issues can be reported through issues section at https://github.com/teamviewer/teamviewer-iot-mqtt-sdk-nodejs/issues.

Readme

Keywords

Package Sidebar

Install

npm i @teamviewer/teamviewer-iot-mqtt-sdk

Weekly Downloads

5

Version

1.0.6

License

MIT

Unpacked Size

29.6 kB

Total Files

4

Last publish

Collaborators

  • anush.mirzoyan
  • kristine.gevorgyan
  • karensimonyan
  • simonyankaren