slack-client
Version:
A library for creating a Slack client
53 lines (39 loc) • 1.21 kB
JavaScript
/**
*
*/
var bind = require('lodash').bind;
var forEach = require('lodash').forEach;
var inherits = require('inherits');
var BaseAPIClient = require('../client');
var facets = require('./facets/index');
/**
* Slack Web API client.
*
* @param token The Slack API token to use with this client.
* @param {Object=} opts
* @param {Object} opts.retryConfig The configuration to use for the retry operation,
* {@see https://github.com/SEAPUNK/node-retry}
* @constructor
*/
function WebAPIClient(token, opts) {
var clientOpts = opts || {};
BaseAPIClient.call(this, token, clientOpts);
// Attempts 5 retries within 5 minutes, with exponential backoff
this.retryConfig = clientOpts.retryConfig || {
retries: 5,
factor: 3.9,
};
}
inherits(WebAPIClient, BaseAPIClient);
/** @inheritDocs **/
WebAPIClient.prototype._createFacets = function _createFacets() {
var newFacet;
var makeAPICall;
WebAPIClient.super_.prototype._createFacets.call(this);
makeAPICall = bind(this.makeAPICall, this);
forEach(facets, function registerWebClientFacet(Facet) {
newFacet = new Facet(makeAPICall);
this[newFacet.name] = newFacet;
}, this);
};
module.exports = WebAPIClient;