A SDK for corbel compatible with browsers and node.
- Quickstart
- Installation
- What is corbel-sdk-js ?
- Usage
- Instance a new driver
- Driver options (with client/secret)
- Driver options (with accessToken)
- Driver options (with custom API endpoints)
- API
- IAM
- Create a token
- Client token
- User token (IAM Basic)
- Token refresh token
- Create a token
- Resources
- Collection
- Relations
- Relation model
- Resources
- Assets
- Domains
- Chainable API
- IAM
- library static methods
- Examples
-
browser
bower install corbel-sdk-js --save # for environments without promises support bower install es6-promise --save
-
node
npm install corbel-sdk-js --save
Corbel-sdk-js is a SDK for working with the Corbel backend.
Using corbel-sdk-js SDK would allow you to :
- Create collections and resources
- CRUD operations for your models
- Authenticate users
- ...(much more)
var corbelDriver = corbel.getDriver(options);
var options = {
'clientId': 'clientId',
'clientSecret': 'clientSecret',
'audience': 'audience',
'urlBase': 'http://localhost:8080/{{module}}',
'scopes': 'scopes',
'device_id' : 'device_id'
}
var options = {
'iamToken': {
accessToken: 'token',
expiresAt: 1442837305000, // optional
refreshToken: 'token', // optional
},
'domain': 'app:domain'
'urlBase': 'http://localhost:8080/{{module}}'
}
var options = {
/* ... */
'oauthEndpoint': 'http://localhost:8084/v1.0/',
'resourcesEndpoint': 'http://localhost:8080/v1.0/',
'iamEndpoint': 'http://localhost:8082/v1.0/',
'evciEndpoint': 'http://localhost:8086/v1.0/',
'ecEndpoint': 'http://localhost:8088/v1.0/',
'assetsEndpoint': 'http://localhost:8092/v1.0/',
'notificationsEndpoint': 'http://localhost:8094/v1.0/',
'bqponEndpoint': 'http://localhost:8090/v1.0/',
'webfsEndpoint': 'http://localhost:8096/v1.0/',
'schedulerEndpoint': 'http://localhost:8098/v1.0/',
'borrowEndpoint': 'http://localhost:8100/v1.0/',
'composrEndpoint': 'http://localhost:3000/'
};
IAM is the corbel module to handle with client and user autentication, in order to access to the rest of corbel API, you should generate a client/user token first
There is 2 types of tokens, client token for applications, and user token, for autenticated users
var corbelDriver = corbel.getDriver(options);
corbelDriver.iam.token).create().then(...);
var corbelDriver = corbel.getDriver(options);
corbelDriver.iam.token().create({
claims: {
'basic_auth.username': username,
'basic_auth.password': password
}
}).then(...);
When a driver is authenticated as a user, its tries to refresh token automatically when a 401
response is detected.
If your application needs to add some behavior when a token is updated with tokenRefresh
(update localStorage for example), you can do it with:
var corbelDriver = corbel.getDriver(options);
corbelDriver.iam.token().create({
claims: {
'basic_auth.username': username,
'basic_auth.password': password
}
}).then(...);
corbelDriver.on('token:refresh', yourTokenRefreshHandler);
The Resources API is a flexible programming interface for retrieval of resource's representations. Using the patterns described by this API we can deploy any kind of resource in our Corbel ecosystem with minimal impact on clients and server code. A request can contain URL parameters which can modify the content of representation returned or its transmission to the client. Parameter names must be specified on using its canonical form.
More info: http://docs.corbelresources.apiary.io/
http://corbel.io/docs/resources.html
Resources API
Resources is exposed to corbelDriver instance and It has static methods and variables inside corbel namespace:
-
Statics properties and methods in corbel.Resources:
-
create: Factory method for instantiating a Resources object
-
sort: Sort constants object
corbel.Resources.sort.ASC corbel.Resources.sort.DESC
-
ALL: Constant for use to specify all resources wildcard
corbel.Resources.ALL
-
-
Instance methods
-
collection: Collection factory method collection('collectionName')
corbelDriver.resources .collection('collectionName')
-
resource: Resource factory method resource('resourceName',id)
corbelDriver.resources .resource('resourceName',id)
-
relation: Relation factory method relation('sourceResourceName', sourceResourceId, 'destResourceName')
corbelDriver.resources .relation('sourceResourceName', sourceResourceId, 'destResourceName')
A collection is a container of resources that share the same type. For instance:
/resource/music:Album => All resources of type music:Album
/resource/book:Book => All resources of type book:Book
/resource/music:Artist => All resources of type music:Artist
Collection API
-
Factory method
corbelDriver.resources .collection('collectionName')
-
get: Gets a collection of elements, filtered, paginated or sorted (requestOptionsObject)
corbelDriver.resources .collection('collectionName') .get(requestOptionsObject)
-
add: Adds a new element to a collection (objectData,requestOptionsObject)
corbelDriver.resources .collection('collectionName') .add(objectData,requestOptionsObject) .then(function(resourceCreatedId){ // });
-
update: Updates the elements of a collection (objectData,requestOptionsObject)
corbelDriver.resources .collection('collectionName') .update(objectData,requestOptionsObject) .then(function(){ // });
Examples:
** Adding an item to a collection **
collection.add({
//related data
name: 'New model name',
lastName: 'New model last name'
},{
//request options
}).then(function(idNewModel){ });
** Updating a collection **
collection.update({
//related data
name: 'Update model name',
lastName: 'Update model last name'
},{
condition: [{
$eq: {}
} ]
}).then(function(){ });
Collection request params API
Following params can be passed both as request options object and as chainable methods:
-
Conditions (only for update, updates a set of items that match a certain condition, same sintaxis than query):
{ condition: [{$eq: {} } ] } { conditions: [{ condition: [{$eq: {} } ] }, { condition: [{$eq: {} } ] } ] }
-
Pagination:
{ pagination: { page: 1, pageSize: 5 } }
-
Aggregations:
{ aggregation: { $count: '*' } }
-
Sort:
{ sort: { title: corbel.Resources.order.sort } }
-
Query:
{ query: [{$like: {} } ] } { queries: [{ query: [{$like: {} } ] }, { query: [{$like: {} } ] } ] }
-
Custom query parameters:
{ customQueryParams: {myParam: 'myValue', ... } }
-
Search (ElasticSearch):
{ search: {text: 'This is the text i want to search'} } { search: 'This is the text i want to search'}
Examples:
var collection = corbelDriver.resources
.collection('books:book');
collection.get({
//request options
query: [{
'$like': {
'name': 'Default name'
}
}]).then(function(response){
//response.data => [ ..., ..., ...]
});
var collection = corbelDriver.resources
.collection('books:book');
collection.get({
//request options
queries: [{
query: [{
'$eq': {
intField: 100
}
}]
}, {
query: [{
'$eq': {
intField: 200
}
}]
}]
}]).then(function(response){
//response.data => [ ..., ..., ...]
});
collection.get({
//request options
dataType: 'application/json',
pagination: {
page: 1,
pageSize: 7
},
{
sort: {
title: corbel.Resources.order.sort
}
}
}]).then(function(response){
//response.data => [ ..., ..., ...]
});
A relation is a model that creates a relation between two different sets of resources or one resource and arbitrary data. The registers on the relation may have aditional information.
For example: Having 2 different resources, a set of car models and a set of car sellers.
If you want to populate the car sellers with some relations to the models available at the store, and also allowing to specify a different set of data for each car in each shop, you could use a relation.
.....CarModels..............Relation.................Sellers..
+---------------+ +----------------------+ +------------+
| | | | | |
| carModels | | carSellers_carModels | | carSellers |
| | | | | |
+---------------+ +----------------------+ +------------+
var sellerId = 'test-seller';
var carModelId = 'nexus-alpha-1';
//Extra information on the relation
var data = {
priceDiscount : 0.2,
amount : 10
};
corbelDriver.resources
.relation('carSellers', sellerId , 'carModels')
.add(carModelId, data, requestOptionsObject)
.then(function(){
//Done;
});
The mandatory fields that define the relation are _src_id
and _dst_id
.
{
_src_id: "carSeller_id",
_dst_id: "car-model-001",
sendedAtAddress : 'street test'
}
Relation API
-
Factory method
corbelDriver.resources .relation('resourceName', srcId, 'relationName')
-
get: List elements of a resource's relation (destId, requestOptionsObject)
corbelDriver.resources .relation('resourceName',15,'relationName') .get(destId, requestOptionsObject)
-
add: Add new relation (destId, relationData, requestOptionsObject)
To some specific item on another resource:
var sourceId = 15;
corbelDriver.resources
.relation('resourceName', sourceId, 'relationName')
.add(destId, relationData, requestOptionsObject)
Not using other resources on the relation
var sourceId = 15;
corbelDriver.resources
.relation('resourceName', sourceId, 'relationName')
.add(null, relationData, requestOptionsObject)
-
move: Move a relation (destId, pos, requestOptionsObject)
var sourceId = 'id1'; corbelDriver.resources .relation('resourceName', sourceId, 'relatio nName') .move(destId, pos, requestOptionsObject)
-
delete: Delete a relation (destId, requestOptionsObject)
corbelDriver.resources .relation('resourceName',15,'relationName') .delete(destId, requestOptionsObject)
Examples:
var relation = corbelDriver.resources
.relation('books:book','id1','id2');
relation.get('destId', {
//request options
}).then(function(collectionData){ });
relation.add('15658', {
//related data
name: 'New model name',
lastName: 'New model last name'
}, {
//request options
query: [{
$eq:{
'name': 'Juanfran'
}
}]
}).then(function(data){ });
relation.move('15658','pos', {
//request options
}).then(function(){ });
relation.delete('15658', {
//request options
}).then(function(){ });
Relation request params API
The same request params previously listed in the collection API.
A resource is a single object in a collection. For instance
/resource/music:Album/123 => The representation of a single object of type music:Album whose identifier is 123
Resources API
-
Factory method
corbelDriver.resources .resource('resourceName', resourceId)
-
get: Get a resource representation (requestOptionsObject)
corbelDriver.resources .resource('resourceName',resourceId) .get(requestOptionsObject)
-
update: Update a resource (resourceData, requestOptionsObject)
corbelDriver.resources .resource('resourceName',resourceId) .update(resourceData, requestOptionsObject)
-
delete: Delete a resource (requestOptionsObject)
corbelDriver.resources .resource('resourceName',resourceId) .delete(requestOptionsObject)
Examples:
var resource = corbelDriver.resources
.resource('books:book', 15);
resource.get({
//request options
}).then(function(resourceData){ });
resource.update('resource', {
//related data
name: 'Update model name',
lastName: 'Update model last name'
}, {
//request options
}).then(function(data){ });
resource.delete('resourceId', {
//request options
}).then(function(){ });
Images
The Resources API is capable to handle images and perform operations over it.
-
update: Update an image (resourceData, requestOptionsObject)
/*requestOptionsObject example*/ requestOptionsObject : { dataType: 'image/png', })
-
get: Get an image (requestOptionsObject)
/*requestOptionsObject example*/ requestOptionsObject : { dataType: 'image/png', query: 'image:operations=resize=(100,20)&image:format=gif', responseType: 'blob' /*arraybuffer is supported as well*/ })
-
delete: Delete an image (requestOptionsObject)
/*requestOptionsObject example*/ requestOptionsObject : { dataType: 'image/png', })
For more information, visit: http://docs.corbelimage.apiary.io/
Assets are dynamic groups of scopes that a user can have for a certain period of time.
This is an example of an asset:
{
_id: "0b2dff5c39934c210d80056a94eb27bc6c6d6378",
userId: "fooid",
name: "assettest13",
productId: "producttest13",
expire: ISODate("2025-01-01T00:01:00Z"),
active: true,
scopes: [
"ec:purchase:user"
]
}
Imagine assets as a group of items that extend the user permissions. For example, a user buys a digital good, then an asset is created with the permission for accessing that digital book.
When you login a user, you may want to load the assets of the user (by default they are not loaded because we try to mantain each service isolated).
For doing that, you can access corbel
assets with corbelDriver
this way:
var corbelDriver = corbel.getDriver({
iamToken : {
'accessToken' : 'USERACCESSTOKEN'
},
baseUrl : 'CORBELURL'
});
//Enable the user permissions for that accessToken
corbelDriver.assets.asset().access();
You can also request all the user assets if you want, for example, listing al the goods that a user has purchased:
corbelDriver.assets.asset('all').get();
Assets API
-
Factory method
corbelDriver.assets.asset('all')
-
get: Get all the assets (requestOptionsObject)
corbelDriver.assets.asset('all') .get(requestOptionsObject)
-
create: Create an asset (assetData)
corbelDriver.assets.asset() .create(assetdata)
-
delete: Delete an asset (assetId)
corbelDriver.assets.asset(assetId) .delete();
Corbel-sdk-js provides a mechanism for doing requests from a child domain to it's parents by using the .domain
method.
corbelDriver.domain('myParentDomain').resources.resource /*...*/
This will redirect the request from the client domain to myParentDomain
, doing this will allow the client to access it's parents collections (if it has permissions).
You can use a chainable api to set defaults parameters over any kind of resource:
Example:
var collection = corbelDriver.resources
.collection('books:book');
collection
.like('name','default name')
.page(5)
.pageSize(7)
.get();
The parameters specified with the chainable api will be removed when a corbel-request is maden.
var collection = corbelDriver.resources
.collection('books:book');
collection
.like('name','default name')
.page(5)
.pageSize(7)
.get();
//Collection doesn't have the defaults chainable params
//this get request will not use any request params previously defined
collection.get();
corbel.jwt.generate(claimsObject, secret);
corbel.request.send(params);
corbel.Resources
// ... more
Get an application token, add an item to a collection, then retrieve it
corbelDriver.iam.token().create().then(function() {
return corbelDriver.resources.collection(collectionName).add('application/json', params);
}).then(function(resourceId) {
return corbelDriver.resources.resource(collectionName, resourceId).get();
}).then(function(response) {
console.log('resource', response.data);
}).catch(function(error) {
console.error('some.error', error);
});