Difference between revisions of "IoT Restful API"

From AMTech WikiDocs
Jump to: navigation, search
(Thing instances)
(typos, grammar, and clarifications.)
Line 1: Line 1:
 
== Restful API ==
 
== Restful API ==
 
*Access control (See [[Access control|Access control]] and [[Access control#Actors|Actors]])  
 
*Access control (See [[Access control|Access control]] and [[Access control#Actors|Actors]])  
**Restful API requires a username and password to authenticate at client side.
+
**Restful API requires a username and password to authenticate at the client side.
*Result formats are json depending of the success of the request
+
*Result formats are json of a type that depends on the success of the request
*If an error occurred a jsonld "@type":"/amtech/linkeddata/types/composite/outputMsg"
+
*If an error occurred, the result has a jsonld of "@type":"/amtech/linkeddata/types/composite/outputMsg"
  
 
<syntaxhighlight lang="jsonld">
 
<syntaxhighlight lang="jsonld">
Line 16: Line 16:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
*If the request is successful a jsonld representation of the resource will be return depending of the requested CRUD operation  
+
*If the request is successful, the result is a jsonld representation of the resource, with details depending of the requested CRUD operation  
  
 
===Observation instances===
 
===Observation instances===
Line 57: Line 57:
 
===Commands ===
 
===Commands ===
 
Asynchronous consumption of commands using websocket’s pushing mechanisms (WIP)
 
Asynchronous consumption of commands using websocket’s pushing mechanisms (WIP)
Same as asynchronous consumption of observations. The command received, which is also an observation instance, will have the target type and target uri into the targetthings property. (See [[Sensor's network|targetthings]])
+
Same as asynchronous consumption of observations. The command received, which is also an observation instance, will have the target type and target URI into the targetthings property. (See [[Sensor's network|targetthings]])
 
*(See [[Actions#Send command|Send command]])
 
*(See [[Actions#Send command|Send command]])
  
Line 85: Line 85:
  
 
===Get resources with links (self contained)===
 
===Get resources with links (self contained)===
The API supports url parameters to retrieving resources resolving its link. There are 2 parameters : selfContained, and fullSelfContained
+
The API supports URI parameters to retrieving resources resolving its link. There are 2 parameters : selfContained, and fullSelfContained
*selfContained parameter will resolve all embedded links (links whose uris are direct children of the resource), including for example embedded collections and its members.
+
*selfContained parameter will resolve all embedded links (links whose URIs are direct children of the resource), including for example embedded collections and its members.
 
*fullSelfContained will resolve all links, embedded and external
 
*fullSelfContained will resolve all links, embedded and external
In both cases, once a link is resolved, it will not be resolved again, so if it appears a second time in the resource, the link uri will be left unresolved
+
In both cases, once a link is resolved, it will not be resolved again, so if it appears a second time in the resource, the link URI will be left unresolved
  
 
==Asynchronous==  
 
==Asynchronous==  
Line 109: Line 109:
  
 
===Things===
 
===Things===
*Consumption through websocket of promise execution results:
+
*Consumption through websockets of promise execution results:
 
**/promise/amtech/results?client=<client_id>&thingtype=<thingtype>[&thinguri=<thinguri>]
 
**/promise/amtech/results?client=<client_id>&thingtype=<thingtype>[&thinguri=<thinguri>]
  
Line 144: Line 144:
  
 
==Clone==
 
==Clone==
Endpoint for cloning resources :  
+
There are two endpoints for cloning resources :  
 
* /amtech/clone/resourceandlinks<resourceToCloneUri>?newname=<nameForClone>  
 
* /amtech/clone/resourceandlinks<resourceToCloneUri>?newname=<nameForClone>  
GET on this endpoint to clone the specified resource without persisting it, generating clones for all the links referenced in the resource. Ex. If called with a resource LLRPReader1, that has 2 anntenas, it will generate a clone for the each of the antennas and the LLRPReader.
+
A GET on this endpoint will clone the specified resource without persisting it, generating clones for all the links referenced in the resource. Ex. If called with a resource LLRPReader1, that has 2 anntenas, it will generate a clone for the each of the antennas and the LLRPReader.
 
* /amtech/clone/resourceflat<resourceToCloneUri>?newname=<nameForClone>
 
* /amtech/clone/resourceflat<resourceToCloneUri>?newname=<nameForClone>
GET on this endpoint to clone the specified resource without persisting it and without cloning the links referenced in the resource.
+
A GET on this endpoint will clone the specified resource without persisting it and without cloning the links referenced in the resource.
  
POST on both endpoint will clone the resource and persist it
+
A POST on either endpoint will clone the resource and persist it
  
The are entities' properties such as "proximity area" and "activity for observation production" whose values are always copied to the new resource as a reference, instead of cloning them.
+
There are entities' properties such as "proximity area" and "activity for observation production" whose values are always copied to the new resource as a reference, instead of cloning them.
  
 
Cloning is supported for :
 
Cloning is supported for :
Entity type
+
* Entity type
Observation type
+
* Observation type
Supported properties
+
* Supported properties
Entity instances
+
* Entity instances
Observation instances
+
* Observation instances
 
==CRUD promises==
 
==CRUD promises==
  
CRUD promises are like any other CRUD operation on things except that they are asynchronously executed. When you executes a PUT, POST or DELETE on the promises endpoint, the corresponding thing will be asynchronously created, updated or deleted by an engine that executes operations sequentially over the same thing instance.
+
CRUD promises are like any other CRUD operation on things except that they are asynchronously executed. When you execute a PUT, POST or DELETE on the promises endpoint, the corresponding thing will be asynchronously created, updated or deleted by an engine that executes operations sequentially over the same thing instance.

Revision as of 21:00, 10 October 2016

Restful API

  • Access control (See Access control and Actors)
    • Restful API requires a username and password to authenticate at the client side.
  • Result formats are json of a type that depends on the success of the request
  • If an error occurred, the result has a jsonld of "@type":"/amtech/linkeddata/types/composite/outputMsg"
{   
    "message":"Resource /amtech/things/entities/gpsDevice/gpsDeviceParkingDemo already exists",
    "targetResourceType":"/amtech/linkeddata/types/composite/entity/gpsDevice",
    "errorType":"amtech.utils.model.ResourceAlreadyExistException",
    "@type":"/amtech/linkeddata/types/composite/outputMsg",
    "resource":"/amtech/things/entities/gpsDevice/gpsDeviceParkingDemo",
    "success":false,
    "messagedetail":""
}
  • If the request is successful, the result is a jsonld representation of the resource, with details depending of the requested CRUD operation

Observation instances

  • Getting observation types with property _blankinstancepublished return a blank jsonld ready to be filled and send
    • /amtech/linkeddata/types/composite/observation
  • Sending observations
    • /amtech/things/events
  • (See Observations and observation types)
rest.postJson(self.dapUrl + '/amtech/things/events', observation, options).on(
    'complete', function(data, response) {
                    if (response && response.statusCode && response.statusCode !== 200) {
                        complete(self.buildError(response, "Sending observation"), data);
                    } else if (data instanceof Error) {
                        complete(data);
                    } else if (data['success'] === false) {
                        complete(self.buildDapError(data, 'At DapClient sendObservation'), data);
                    } else {
                        complete();
                    }
                });
  • Synchronous consumption of observation instances in topics
    • /amtech/things/events?client=<client id>&topic=<topic uri>[&obstype=<obs type>]
  • topic (See Topics)
  • targetthings (See Target things)
  • proximityarea (See Location)
  • location (See Location)
  • producer (See [[Sensor's network#Observations)

Thing instances

  • CRUD operations
    • /crud
  • CRUD operation promises:
    • /promise/amtech/things/entities
  • (See Thing types)

Commands

Asynchronous consumption of commands using websocket’s pushing mechanisms (WIP) Same as asynchronous consumption of observations. The command received, which is also an observation instance, will have the target type and target URI into the targetthings property. (See targetthings)

Get observation production configuration

  • Get observation configurations for a tenant/user tacking into account registered services and access control (See Actors)
    • '/amtech/system/queries/observationconfigfromactivities'
  • (See Observation production configuration)

Get instances by thing type

  • Get things instances by type for a tenant/user taking into account registered services and access control (See Actors)
    • '/amtech/things/entities/<thingType>'
rest.get(self.dapUrl + '/amtech/things/entities/gpsDevice', options).on(
    'complete', function (data, response) {
                    if (response && response.statusCode && response.statusCode !== 200) {
                        complete(self.buildError(response, "Getting plugins instances"), data);
                    } else if (data instanceof Error) {
                        complete(data);
                    } else if ('success' in data && !data['success']) {
                        complete(self.buildDapError(data, 'At DapClient getPluginsInstances'), data);
                    } else {
                        complete(null, data.members);
                    }
                });

Get resources with links (self contained)

The API supports URI parameters to retrieving resources resolving its link. There are 2 parameters : selfContained, and fullSelfContained

  • selfContained parameter will resolve all embedded links (links whose URIs are direct children of the resource), including for example embedded collections and its members.
  • fullSelfContained will resolve all links, embedded and external

In both cases, once a link is resolved, it will not be resolved again, so if it appears a second time in the resource, the link URI will be left unresolved

Asynchronous

  • In order to authenticate the request from a web browser using window.WebSocket object you can put the authentication credentials in the URL as:
    • wss://<user>:<pass>@<host>/amtech/push/things/events?client...
  • (web sockets)

Observations

  • Asynchronous consumption of observation instances in topics using websocket’s pushing mechanisms (WIP)
    • wss://dap.amtech.mx/amtech/push/things/events?client=<client id>&topic=<topic uri>[&obstype=<obs type>]
  • (See CRUD observations)

Commands

  • Asynchronous consumption of commands using websocket’s pushing mechanisms (WIP)
    • wss://dap.amtech.mx/amtech/push/things/commands?client=<client id>&thingtype=<thing type>&[&obstype=<obs type>]

Notifications

  • Asynchronous consumption of notifications using websockets:
    • wss://dap.amtech.mx/amtech/push/notifications[?clientid=<client id>]
  • (See Notifications)

Things

  • Consumption through websockets of promise execution results:
    • /promise/amtech/results?client=<client_id>&thingtype=<thingtype>[&thinguri=<thinguri>]

Example

   "use strict";
   var websocket = require("websocket");
   var wsclient = new websocket.client();
   wsclient.on("connectFailed", function (error) {
       console.log("Connect error: " + error.toString());
   });
   wsclient.on("connect", function (connection) {
       console.log("WebSocket client connected");
       connection.on("error", function (error) {
           console.log("Connection error: " + error.toString());
       });
       connection.on("close", function () {
           console.log("Connection closed");
       });
       connection.on("message", function (message) {
           if (message.type === "utf8") {
               console.log("Received: '" + message.utf8Data + "'");
           }
       });
       process.on('SIGINT', function () {
           console.log("Closing connection...");
           connection.close();
           setTimeout(function () { console.log("Closed"); }, 5000);
       });
   });
   var token = new Buffer("user/tenant:password").toString("Base64");
   wsclient.connect("wss://dap.amtech.mx/amtech/push/notifications", null, null, {
       Authorization: "Basic " + token
   });

Clone

There are two endpoints for cloning resources :

  • /amtech/clone/resourceandlinks<resourceToCloneUri>?newname=<nameForClone>

A GET on this endpoint will clone the specified resource without persisting it, generating clones for all the links referenced in the resource. Ex. If called with a resource LLRPReader1, that has 2 anntenas, it will generate a clone for the each of the antennas and the LLRPReader.

  • /amtech/clone/resourceflat<resourceToCloneUri>?newname=<nameForClone>

A GET on this endpoint will clone the specified resource without persisting it and without cloning the links referenced in the resource.

A POST on either endpoint will clone the resource and persist it

There are entities' properties such as "proximity area" and "activity for observation production" whose values are always copied to the new resource as a reference, instead of cloning them.

Cloning is supported for :

  • Entity type
  • Observation type
  • Supported properties
  • Entity instances
  • Observation instances

CRUD promises

CRUD promises are like any other CRUD operation on things except that they are asynchronously executed. When you execute a PUT, POST or DELETE on the promises endpoint, the corresponding thing will be asynchronously created, updated or deleted by an engine that executes operations sequentially over the same thing instance.