@signalwire/compatibility-api
Version:
SignalWire Compatibility API
816 lines (732 loc) • 25.6 kB
JavaScript
'use strict';
/* jshint ignore:start */
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
/* jshint ignore:end */
var Q = require('q'); /* jshint ignore:line */
var _ = require('lodash'); /* jshint ignore:line */
var util = require('util'); /* jshint ignore:line */
var Page = require('../../../../../base/Page'); /* jshint ignore:line */
var deserialize = require(
'../../../../../base/deserialize'); /* jshint ignore:line */
var serialize = require(
'../../../../../base/serialize'); /* jshint ignore:line */
var values = require('../../../../../base/values'); /* jshint ignore:line */
var WebhookList;
var WebhookPage;
var WebhookInstance;
var WebhookContext;
/* jshint ignore:start */
/**
* Initialize the WebhookList
*
* @constructor Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList
*
* @param {Twilio.Conversations.V1} version - Version of the resource
* @param {string} chatServiceSid -
* The SID of the Conversation Service that the resource is associated with.
* @param {string} conversationSid -
* The unique ID of the Conversation for this webhook.
*/
/* jshint ignore:end */
WebhookList = function WebhookList(version, chatServiceSid, conversationSid) {
/* jshint ignore:start */
/**
* @function webhooks
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext#
*
* @param {string} sid - sid of instance
*
* @returns {Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext}
*/
/* jshint ignore:end */
function WebhookListInstance(sid) {
return WebhookListInstance.get(sid);
}
WebhookListInstance._version = version;
// Path Solution
WebhookListInstance._solution = {chatServiceSid: chatServiceSid, conversationSid: conversationSid};
WebhookListInstance._uri = `/Services/${chatServiceSid}/Conversations/${conversationSid}/Webhooks`;
/* jshint ignore:start */
/**
* create a WebhookInstance
*
* @function create
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {object} opts - Options for request
* @param {webhook.target} opts.target - The target of this webhook.
* @param {string} [opts.configuration.url] -
* The absolute url the webhook request should be sent to.
* @param {webhook.method} [opts.configuration.method] -
* The HTTP method to be used when sending a webhook request.
* @param {string|list} [opts.configuration.filters] -
* The list of events, firing webhook event for this Conversation.
* @param {string|list} [opts.configuration.triggers] -
* The list of keywords, firing webhook event for this Conversation.
* @param {string} [opts.configuration.flowSid] -
* The studio flow SID, where the webhook should be sent to.
* @param {number} [opts.configuration.replayAfter] -
* The message index for which and it's successors the webhook will be replayed.
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookListInstance.create = function create(opts, callback) {
if (_.isUndefined(opts)) {
throw new Error('Required parameter "opts" missing.');
}
if (_.isUndefined(opts['target'])) {
throw new Error('Required parameter "opts[\'target\']" missing.');
}
var deferred = Q.defer();
var data = values.of({
'Target': _.get(opts, 'target'),
'Configuration.Url': _.get(opts, 'configuration.url'),
'Configuration.Method': _.get(opts, 'configuration.method'),
'Configuration.Filters': serialize.map(_.get(opts, 'configuration.filters'), function(e) { return e; }),
'Configuration.Triggers': serialize.map(_.get(opts, 'configuration.triggers'), function(e) { return e; }),
'Configuration.FlowSid': _.get(opts, 'configuration.flowSid'),
'Configuration.ReplayAfter': _.get(opts, 'configuration.replayAfter')
});
var promise = this._version.create({uri: this._uri, method: 'POST', data: data});
promise = promise.then(function(payload) {
deferred.resolve(new WebhookInstance(
this._version,
payload,
this._solution.chatServiceSid,
this._solution.conversationSid,
this._solution.sid
));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* Streams WebhookInstance records from the API.
*
* This operation lazily loads records as efficiently as possible until the limit
* is reached.
*
* The results are passed into the callback function, so this operation is memory
* efficient.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @function each
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {object} [opts] - Options for request
* @param {number} [opts.limit] -
* Upper limit for the number of records to return.
* each() guarantees never to return more than limit.
* Default is no limit
* @param {number} [opts.pageSize] -
* Number of records to fetch per request,
* when not set will use the default value of 50 records.
* If no pageSize is defined but a limit is defined,
* each() will attempt to read the limit with the most efficient
* page size, i.e. min(limit, 1000)
* @param {Function} [opts.callback] -
* Function to process each record. If this and a positional
* callback are passed, this one will be used
* @param {Function} [opts.done] -
* Function to be called upon completion of streaming
* @param {Function} [callback] - Function to process each record
*/
/* jshint ignore:end */
WebhookListInstance.each = function each(opts, callback) {
if (_.isFunction(opts)) {
callback = opts;
opts = {};
}
opts = opts || {};
if (opts.callback) {
callback = opts.callback;
}
if (_.isUndefined(callback)) {
throw new Error('Callback function must be provided');
}
var done = false;
var currentPage = 1;
var currentResource = 0;
var limits = this._version.readLimits({
limit: opts.limit,
pageSize: opts.pageSize
});
function onComplete(error) {
done = true;
if (_.isFunction(opts.done)) {
opts.done(error);
}
}
function fetchNextPage(fn) {
var promise = fn();
if (_.isUndefined(promise)) {
onComplete();
return;
}
promise.then(function(page) {
_.each(page.instances, function(instance) {
if (done || (!_.isUndefined(opts.limit) && currentResource >= opts.limit)) {
done = true;
return false;
}
currentResource++;
callback(instance, onComplete);
});
if (!done) {
currentPage++;
fetchNextPage(_.bind(page.nextPage, page));
} else {
onComplete();
}
});
promise.catch(onComplete);
}
fetchNextPage(_.bind(this.page, this, _.merge(opts, limits)));
};
/* jshint ignore:start */
/**
* Lists WebhookInstance records from the API as a list.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @function list
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {object} [opts] - Options for request
* @param {number} [opts.limit] -
* Upper limit for the number of records to return.
* list() guarantees never to return more than limit.
* Default is no limit
* @param {number} [opts.pageSize] -
* Number of records to fetch per request,
* when not set will use the default value of 50 records.
* If no page_size is defined but a limit is defined,
* list() will attempt to read the limit with the most
* efficient page size, i.e. min(limit, 1000)
* @param {function} [callback] - Callback to handle list of records
*
* @returns {Promise} Resolves to a list of records
*/
/* jshint ignore:end */
WebhookListInstance.list = function list(opts, callback) {
if (_.isFunction(opts)) {
callback = opts;
opts = {};
}
opts = opts || {};
var deferred = Q.defer();
var allResources = [];
opts.callback = function(resource, done) {
allResources.push(resource);
if (!_.isUndefined(opts.limit) && allResources.length === opts.limit) {
done();
}
};
opts.done = function(error) {
if (_.isUndefined(error)) {
deferred.resolve(allResources);
} else {
deferred.reject(error);
}
};
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
this.each(opts);
return deferred.promise;
};
/* jshint ignore:start */
/**
* Retrieve a single page of WebhookInstance records from the API.
*
* The request is executed immediately.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @function page
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {object} [opts] - Options for request
* @param {string} [opts.pageToken] - PageToken provided by the API
* @param {number} [opts.pageNumber] -
* Page Number, this value is simply for client state
* @param {number} [opts.pageSize] - Number of records to return, defaults to 50
* @param {function} [callback] - Callback to handle list of records
*
* @returns {Promise} Resolves to a list of records
*/
/* jshint ignore:end */
WebhookListInstance.page = function page(opts, callback) {
if (_.isFunction(opts)) {
callback = opts;
opts = {};
}
opts = opts || {};
var deferred = Q.defer();
var data = values.of({
'PageToken': opts.pageToken,
'Page': opts.pageNumber,
'PageSize': opts.pageSize
});
var promise = this._version.page({uri: this._uri, method: 'GET', params: data});
promise = promise.then(function(payload) {
deferred.resolve(new WebhookPage(this._version, payload, this._solution));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* Retrieve a single target page of WebhookInstance records from the API.
*
* The request is executed immediately.
*
* If a function is passed as the first argument, it will be used as the callback
* function.
*
* @function getPage
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {string} [targetUrl] - API-generated URL for the requested results page
* @param {function} [callback] - Callback to handle list of records
*
* @returns {Promise} Resolves to a list of records
*/
/* jshint ignore:end */
WebhookListInstance.getPage = function getPage(targetUrl, callback) {
var deferred = Q.defer();
var promise = this._version._domain.twilio.request({method: 'GET', uri: targetUrl});
promise = promise.then(function(payload) {
deferred.resolve(new WebhookPage(this._version, payload, this._solution));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* Constructs a webhook
*
* @function get
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @param {string} sid -
* A 34 character string that uniquely identifies this resource.
*
* @returns {Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext}
*/
/* jshint ignore:end */
WebhookListInstance.get = function get(sid) {
return new WebhookContext(
this._version,
this._solution.chatServiceSid,
this._solution.conversationSid,
sid
);
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookList#
*
* @returns Object
*/
/* jshint ignore:end */
WebhookListInstance.toJSON = function toJSON() {
return this._solution;
};
WebhookListInstance[util.inspect.custom] = function inspect(depth, options) {
return util.inspect(this.toJSON(), options);
};
return WebhookListInstance;
};
/* jshint ignore:start */
/**
* Initialize the WebhookPage
*
* @constructor Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookPage
*
* @param {V1} version - Version of the resource
* @param {Response<string>} response - Response from the API
* @param {WebhookSolution} solution - Path solution
*
* @returns WebhookPage
*/
/* jshint ignore:end */
WebhookPage = function WebhookPage(version, response, solution) {
// Path Solution
this._solution = solution;
Page.prototype.constructor.call(this, version, response, this._solution);
};
_.extend(WebhookPage.prototype, Page.prototype);
WebhookPage.prototype.constructor = WebhookPage;
/* jshint ignore:start */
/**
* Build an instance of WebhookInstance
*
* @function getInstance
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookPage#
*
* @param {WebhookPayload} payload - Payload response from the API
*
* @returns WebhookInstance
*/
/* jshint ignore:end */
WebhookPage.prototype.getInstance = function getInstance(payload) {
return new WebhookInstance(
this._version,
payload,
this._solution.chatServiceSid,
this._solution.conversationSid
);
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookPage#
*
* @returns Object
*/
/* jshint ignore:end */
WebhookPage.prototype.toJSON = function toJSON() {
let clone = {};
_.forOwn(this, function(value, key) {
if (!_.startsWith(key, '_') && ! _.isFunction(value)) {
clone[key] = value;
}
});
return clone;
};
WebhookPage.prototype[util.inspect.custom] = function inspect(depth, options) {
return util.inspect(this.toJSON(), options);
};
/* jshint ignore:start */
/**
* Initialize the WebhookContext
*
* @constructor Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookInstance
*
* @property {string} sid -
* A 34 character string that uniquely identifies this resource.
* @property {string} accountSid -
* The unique ID of the Account responsible for this conversation.
* @property {string} chatServiceSid -
* The SID of the Conversation Service that the resource is associated with.
* @property {string} conversationSid -
* The unique ID of the Conversation for this webhook.
* @property {string} target - The target of this webhook.
* @property {string} url - An absolute URL for this webhook.
* @property {object} configuration - The configuration of this webhook.
* @property {Date} dateCreated - The date that this resource was created.
* @property {Date} dateUpdated - The date that this resource was last updated.
*
* @param {V1} version - Version of the resource
* @param {WebhookPayload} payload - The instance payload
* @param {sid} chatServiceSid -
* The SID of the Conversation Service that the resource is associated with.
* @param {sid} conversationSid -
* The unique ID of the Conversation for this webhook.
* @param {sid} sid - A 34 character string that uniquely identifies this resource.
*/
/* jshint ignore:end */
WebhookInstance = function WebhookInstance(version, payload, chatServiceSid,
conversationSid, sid) {
this._version = version;
// Marshaled Properties
this.sid = payload.sid; // jshint ignore:line
this.accountSid = payload.account_sid; // jshint ignore:line
this.chatServiceSid = payload.chat_service_sid; // jshint ignore:line
this.conversationSid = payload.conversation_sid; // jshint ignore:line
this.target = payload.target; // jshint ignore:line
this.url = payload.url; // jshint ignore:line
this.configuration = payload.configuration; // jshint ignore:line
this.dateCreated = deserialize.iso8601DateTime(payload.date_created); // jshint ignore:line
this.dateUpdated = deserialize.iso8601DateTime(payload.date_updated); // jshint ignore:line
// Context
this._context = undefined;
this._solution = {
chatServiceSid: chatServiceSid,
conversationSid: conversationSid,
sid: sid || this.sid,
};
};
Object.defineProperty(WebhookInstance.prototype,
'_proxy', {
get: function() {
if (!this._context) {
this._context = new WebhookContext(
this._version,
this._solution.chatServiceSid,
this._solution.conversationSid,
this._solution.sid
);
}
return this._context;
}
});
/* jshint ignore:start */
/**
* update a WebhookInstance
*
* @function update
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookInstance#
*
* @param {object} [opts] - Options for request
* @param {string} [opts.configuration.url] -
* The absolute url the webhook request should be sent to.
* @param {webhook.method} [opts.configuration.method] -
* The HTTP method to be used when sending a webhook request.
* @param {string|list} [opts.configuration.filters] -
* The list of events, firing webhook event for this Conversation.
* @param {string|list} [opts.configuration.triggers] -
* The list of keywords, firing webhook event for this Conversation.
* @param {string} [opts.configuration.flowSid] -
* The studio flow SID, where the webhook should be sent to.
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookInstance.prototype.update = function update(opts, callback) {
return this._proxy.update(opts, callback);
};
/* jshint ignore:start */
/**
* remove a WebhookInstance
*
* @function remove
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookInstance#
*
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookInstance.prototype.remove = function remove(callback) {
return this._proxy.remove(callback);
};
/* jshint ignore:start */
/**
* fetch a WebhookInstance
*
* @function fetch
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookInstance#
*
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookInstance.prototype.fetch = function fetch(callback) {
return this._proxy.fetch(callback);
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookInstance#
*
* @returns Object
*/
/* jshint ignore:end */
WebhookInstance.prototype.toJSON = function toJSON() {
let clone = {};
_.forOwn(this, function(value, key) {
if (!_.startsWith(key, '_') && ! _.isFunction(value)) {
clone[key] = value;
}
});
return clone;
};
WebhookInstance.prototype[util.inspect.custom] = function inspect(depth,
options) {
return util.inspect(this.toJSON(), options);
};
/* jshint ignore:start */
/**
* Initialize the WebhookContext
*
* @constructor Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext
*
* @param {V1} version - Version of the resource
* @param {sid} chatServiceSid -
* The SID of the Conversation Service that the resource is associated with.
* @param {sid_like} conversationSid -
* The unique ID of the Conversation for this webhook.
* @param {sid} sid - A 34 character string that uniquely identifies this resource.
*/
/* jshint ignore:end */
WebhookContext = function WebhookContext(version, chatServiceSid,
conversationSid, sid) {
this._version = version;
// Path Solution
this._solution = {chatServiceSid: chatServiceSid, conversationSid: conversationSid, sid: sid, };
this._uri = `/Services/${chatServiceSid}/Conversations/${conversationSid}/Webhooks/${sid}`;
};
/* jshint ignore:start */
/**
* update a WebhookInstance
*
* @function update
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext#
*
* @param {object} [opts] - Options for request
* @param {string} [opts.configuration.url] -
* The absolute url the webhook request should be sent to.
* @param {webhook.method} [opts.configuration.method] -
* The HTTP method to be used when sending a webhook request.
* @param {string|list} [opts.configuration.filters] -
* The list of events, firing webhook event for this Conversation.
* @param {string|list} [opts.configuration.triggers] -
* The list of keywords, firing webhook event for this Conversation.
* @param {string} [opts.configuration.flowSid] -
* The studio flow SID, where the webhook should be sent to.
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookContext.prototype.update = function update(opts, callback) {
if (_.isFunction(opts)) {
callback = opts;
opts = {};
}
opts = opts || {};
var deferred = Q.defer();
var data = values.of({
'Configuration.Url': _.get(opts, 'configuration.url'),
'Configuration.Method': _.get(opts, 'configuration.method'),
'Configuration.Filters': serialize.map(_.get(opts, 'configuration.filters'), function(e) { return e; }),
'Configuration.Triggers': serialize.map(_.get(opts, 'configuration.triggers'), function(e) { return e; }),
'Configuration.FlowSid': _.get(opts, 'configuration.flowSid')
});
var promise = this._version.update({uri: this._uri, method: 'POST', data: data});
promise = promise.then(function(payload) {
deferred.resolve(new WebhookInstance(
this._version,
payload,
this._solution.chatServiceSid,
this._solution.conversationSid,
this._solution.sid
));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* remove a WebhookInstance
*
* @function remove
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext#
*
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookContext.prototype.remove = function remove(callback) {
var deferred = Q.defer();
var promise = this._version.remove({uri: this._uri, method: 'DELETE'});
promise = promise.then(function(payload) {
deferred.resolve(payload);
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* fetch a WebhookInstance
*
* @function fetch
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext#
*
* @param {function} [callback] - Callback to handle processed record
*
* @returns {Promise} Resolves to processed WebhookInstance
*/
/* jshint ignore:end */
WebhookContext.prototype.fetch = function fetch(callback) {
var deferred = Q.defer();
var promise = this._version.fetch({uri: this._uri, method: 'GET'});
promise = promise.then(function(payload) {
deferred.resolve(new WebhookInstance(
this._version,
payload,
this._solution.chatServiceSid,
this._solution.conversationSid,
this._solution.sid
));
}.bind(this));
promise.catch(function(error) {
deferred.reject(error);
});
if (_.isFunction(callback)) {
deferred.promise.nodeify(callback);
}
return deferred.promise;
};
/* jshint ignore:start */
/**
* Provide a user-friendly representation
*
* @function toJSON
* @memberof Twilio.Conversations.V1.ServiceContext.ConversationContext.WebhookContext#
*
* @returns Object
*/
/* jshint ignore:end */
WebhookContext.prototype.toJSON = function toJSON() {
return this._solution;
};
WebhookContext.prototype[util.inspect.custom] = function inspect(depth, options)
{
return util.inspect(this.toJSON(), options);
};
module.exports = {
WebhookList: WebhookList,
WebhookPage: WebhookPage,
WebhookInstance: WebhookInstance,
WebhookContext: WebhookContext
};