A lovely little Node.js module to perform batch requests with the Google REST API. Simply does it.
This is a project to solve a need for a missing feature in the wonderfully epic and useful google/google-api-nodejs-client. Currently, this cannot be used to post media and has not been tested with posting anything but JSON.
In theory this library could be used with other APIs, but has only been tested with Google's APIs as that's what we need it for.
Feel free to get involved in development.
This has been created for an internal project of wapisasa so it might not fit everyone's requirements. It might also be buggy as it's an alpha release. Any issues, feature requests or bugs that need attention please let us know.
batch.run(...)
now takes a node style callback, with an error as the first parameter and the result as the second.
INCORRECT (old, v1.0-style):
batch.run(function(result){});
CORRECT (new, v2.0-style):
batch.run(function(err, result){});
The API was changed in 1.0 to move from a singleton instance to a constructor. So before where you used Batchelor
directly:
var Batchelor = require('batchelor')
Batchelor.init(...)
Batchelor.add(...)
Batchelor.run(...)
You now need to create an instance of Batchelor:
var Batchelor = require('batchelor')
var batch = new Batchelor(...)
batch.add(...)
batch.run(...)
See mixmaxhq#4 for why this change was made.
This library has also been distributed on npm
. Install it with the following command:
$ npm install batchelor --save
var Batchelor = require('batchelor');
Once the module has been included, we initialise it with all our default options:
var batch = new Batchelor({
'uri':'https://www.googleapis.com/batch',
'method':'POST',
'auth': {
'bearer': [... Google API Token ...]
},
'headers': {
'Content-Type': 'multipart/mixed'
}
});
We can then start adding requests to our batch. This can be done 2 ways:
As a one-off object:
batch.add({
'method':'GET',
'path':'/plusDomains/v1/people/me/activities/user'
})
Or an Array of objects:
batch.add([
{
'method':'GET',
'path':'/plusDomains/v1/people/me/activities/user'
},
{
'method':'GET',
'path':'/plusDomains/v1/people/me/circles'
},
{
'method':'GET',
'path':'/plusDomains/v1/people/me/people/circled'
}
]);
Once you have added all of the requests you need, call .run()
:
batch.run(function(err, response){
if (err){
console.log("Error: " + err.toString());
} else {
res.json(response);
}
});
The above examples show GET
requests. To perform a POST
requires a few more settings:
batch.add({
'method':'POST',
'path':'/plusDomains/v1/people/me/activities',
'parameters':{
'Content-Type':'application/json;',
'body':{'object':{'originalContent': 'A wonderful batch post!'},'access': {'items': [{'type': 'domain'}],'domainRestricted': true}}
}
});
By default, all responses are returned through the callback function in the batch.run()
call. Alternatively, a callback can be supplied for each individual calls:
batch.add({
'method':'POST',
'path':'/plusDomains/v1/people/me/activities',
'parameters':{
'Content-Type':'application/json;',
'body':{'object':{'originalContent': 'Another wonderful batch post with callback!'},'access': {'items': [{'type': 'domain'}],'domainRestricted': true}}
},
'callback':function(response){
console.log(response);
}
});
The module will assign a request a randomly generated unique Content-ID
by default, but this can be supplied as part of the options to supply batch.add()
:
batch.add({
'method':'GET',
'path':'/plusDomains/v1/people/me/activities/user',
'requestId':'Batch_UniqueID_1'
})
All methods return the Batchelor
instance. So you can chain calls together.
batch.add([
...
]).run(function(err, data){
...
});
When passing options to the .add()
you can include an Object called extend
. In the case of providing a callback, this will be passed back as a second parameter. When using the default callback on the .run()
call, an array of all data passed through will be added as a second parameter with the requestId as the key:
batch.add({
...
'extend':{
...
},
'callback':function(response, extendObj){
console.log(response, extendObj);
}
});
This could be required, for example, when making multiple requests with different Auth data and then needing to make further requests with the same Auth data.
Once Batchelor has been run, there are certain use-cases for running futher batch requests on response. This requires the variables in the instance to be reset. This can be done using the .reset()
call:
batch.run(function(err, response){
// Reset Batchelor for further use
batch.reset();
...
});
These might get done if we end up needing them/have time:
- Limit requests per batch request
- Handle Media in API calls (no need for it here, feel free to write it)
- 2.0.2 Added error handler and made
headers
optional - 2.0.1 Include response status code in error
- 2.0.0 Bug Fixes and Improvements
- 1.0.0 The API was changed in 1.0 to move from a singleton instance to a constructor (Thanks again to @bradvogel)
- 0.0.8 Added support for DELETE requests (Thanks to @bradvogel)
- 0.0.7 Reset function for when you are using batchelor more than once in a script (ability for nested requests too)
- 0.0.6 Bug fixes introduced in the last update and clean up was happening too soon. Moved it.
- 0.0.5 Added the ability to passthrough specific information from the
.add()
options to the response object - 0.0.4 Authorization can now be set on each request (currently Bearer [...] only)
- 0.0.3 More bug fixes: New contentId for every request
- 0.0.2 Bug fixes
- 0.0.1 Initial release
Built on the clock by @jamesmhaley as an internal project of wapisasa C.I.C.