UNPKG

twilio

Version:
780 lines (703 loc) 26.2 kB
'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 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 ParticipantList; var ParticipantPage; var ParticipantInstance; var ParticipantContext; /* jshint ignore:start */ /** * @constructor Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @description Initialize the ParticipantList * * @param {Twilio.Api.V2010} version - Version of the resource * @param {string} accountSid - The unique sid that identifies this account * @param {string} conferenceSid - * A string that uniquely identifies this conference */ /* jshint ignore:end */ ParticipantList = function ParticipantList(version, accountSid, conferenceSid) { /* jshint ignore:start */ /** * @function participants * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext * @instance * * @param {string} sid - sid of instance * * @returns {Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext} */ /* jshint ignore:end */ function ParticipantListInstance(sid) { return ParticipantListInstance.get(sid); } ParticipantListInstance._version = version; // Path Solution ParticipantListInstance._solution = {accountSid: accountSid, conferenceSid: conferenceSid}; ParticipantListInstance._uri = _.template( '/Accounts/<%= accountSid %>/Conferences/<%= conferenceSid %>/Participants.json' // jshint ignore:line )(ParticipantListInstance._solution); /* jshint ignore:start */ /** * create a ParticipantInstance * * @function create * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {object} opts - ... * @param {string} opts.from - The from * @param {string} opts.to - The to * @param {string} [opts.statusCallback] - The status_callback * @param {string} [opts.statusCallbackMethod] - The status_callback_method * @param {string|list} [opts.statusCallbackEvent] - The status_callback_event * @param {number} [opts.timeout] - The timeout * @param {boolean} [opts.record] - The record * @param {boolean} [opts.muted] - The muted * @param {string} [opts.beep] - The beep * @param {boolean} [opts.startConferenceOnEnter] - The start_conference_on_enter * @param {boolean} [opts.endConferenceOnExit] - The end_conference_on_exit * @param {string} [opts.waitUrl] - The wait_url * @param {string} [opts.waitMethod] - The wait_method * @param {boolean} [opts.earlyMedia] - The early_media * @param {number} [opts.maxParticipants] - The max_participants * @param {string} [opts.conferenceRecord] - The conference_record * @param {string} [opts.conferenceTrim] - The conference_trim * @param {string} [opts.conferenceStatusCallback] - The conference_status_callback * @param {string} [opts.conferenceStatusCallbackMethod] - * The conference_status_callback_method * @param {string|list} [opts.conferenceStatusCallbackEvent] - * The conference_status_callback_event * @param {string} [opts.recordingChannels] - The recording_channels * @param {string} [opts.recordingStatusCallback] - The recording_status_callback * @param {string} [opts.recordingStatusCallbackMethod] - * The recording_status_callback_method * @param {string} [opts.sipAuthUsername] - The sip_auth_username * @param {string} [opts.sipAuthPassword] - The sip_auth_password * @param {string} [opts.region] - The region * @param {string} [opts.conferenceRecordingStatusCallback] - * The conference_recording_status_callback * @param {string} [opts.conferenceRecordingStatusCallbackMethod] - * The conference_recording_status_callback_method * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantListInstance.create = function create(opts, callback) { if (_.isUndefined(opts)) { throw new Error('Required parameter "opts" missing.'); } if (_.isUndefined(opts.from)) { throw new Error('Required parameter "opts.from" missing.'); } if (_.isUndefined(opts.to)) { throw new Error('Required parameter "opts.to" missing.'); } var deferred = Q.defer(); var data = values.of({ 'From': _.get(opts, 'from'), 'To': _.get(opts, 'to'), 'StatusCallback': _.get(opts, 'statusCallback'), 'StatusCallbackMethod': _.get(opts, 'statusCallbackMethod'), 'StatusCallbackEvent': _.get(opts, 'statusCallbackEvent'), 'Timeout': _.get(opts, 'timeout'), 'Record': serialize.bool(_.get(opts, 'record')), 'Muted': serialize.bool(_.get(opts, 'muted')), 'Beep': _.get(opts, 'beep'), 'StartConferenceOnEnter': serialize.bool(_.get(opts, 'startConferenceOnEnter')), 'EndConferenceOnExit': serialize.bool(_.get(opts, 'endConferenceOnExit')), 'WaitUrl': _.get(opts, 'waitUrl'), 'WaitMethod': _.get(opts, 'waitMethod'), 'EarlyMedia': serialize.bool(_.get(opts, 'earlyMedia')), 'MaxParticipants': _.get(opts, 'maxParticipants'), 'ConferenceRecord': _.get(opts, 'conferenceRecord'), 'ConferenceTrim': _.get(opts, 'conferenceTrim'), 'ConferenceStatusCallback': _.get(opts, 'conferenceStatusCallback'), 'ConferenceStatusCallbackMethod': _.get(opts, 'conferenceStatusCallbackMethod'), 'ConferenceStatusCallbackEvent': _.get(opts, 'conferenceStatusCallbackEvent'), 'RecordingChannels': _.get(opts, 'recordingChannels'), 'RecordingStatusCallback': _.get(opts, 'recordingStatusCallback'), 'RecordingStatusCallbackMethod': _.get(opts, 'recordingStatusCallbackMethod'), 'SipAuthUsername': _.get(opts, 'sipAuthUsername'), 'SipAuthPassword': _.get(opts, 'sipAuthPassword'), 'Region': _.get(opts, 'region'), 'ConferenceRecordingStatusCallback': _.get(opts, 'conferenceRecordingStatusCallback'), 'ConferenceRecordingStatusCallbackMethod': _.get(opts, 'conferenceRecordingStatusCallbackMethod') }); var promise = this._version.create({uri: this._uri, method: 'POST', data: data}); promise = promise.then(function(payload) { deferred.resolve(new ParticipantInstance( this._version, payload, this._solution.accountSid, this._solution.conferenceSid, this._solution.callSid )); }.bind(this)); promise.catch(function(error) { deferred.reject(error); }); if (_.isFunction(callback)) { deferred.promise.nodeify(callback); } return deferred.promise; }; /* jshint ignore:start */ /** * Streams ParticipantInstance 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.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {object|function} opts - ... * @param {boolean} [opts.muted] - Filter by muted participants * @param {boolean} [opts.hold] - The hold * @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=50] - * 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 */ ParticipantListInstance.each = function each(opts, callback) { opts = opts || {}; if (_.isFunction(opts)) { opts = { callback: opts }; } else if (_.isFunction(callback) && !_.isFunction(opts.callback)) { opts.callback = callback; } if (_.isUndefined(opts.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++; opts.callback(instance, onComplete); }); if ((limits.pageLimit && limits.pageLimit <= currentPage)) { onComplete(); } else if (!done) { currentPage++; fetchNextPage(_.bind(page.nextPage, page)); } }); promise.catch(onComplete); } fetchNextPage(_.bind(this.page, this, _.merge(opts, limits))); }; /* jshint ignore:start */ /** * @description Lists ParticipantInstance 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.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {object|function} opts - ... * @param {boolean} [opts.muted] - Filter by muted participants * @param {boolean} [opts.hold] - The hold * @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 */ ParticipantListInstance.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 ParticipantInstance records from the API. * 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.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {object|function} opts - ... * @param {boolean} [opts.muted] - Filter by muted participants * @param {boolean} [opts.hold] - The hold * @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 */ ParticipantListInstance.page = function page(opts, callback) { if (_.isFunction(opts)) { callback = opts; opts = {}; } opts = opts || {}; var deferred = Q.defer(); var data = values.of({ 'Muted': serialize.bool(_.get(opts, 'muted')), 'Hold': serialize.bool(_.get(opts, 'hold')), '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 ParticipantPage(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 ParticipantInstance records from the API. * 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.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {boolean} [opts.muted] - Filter by muted participants * @param {boolean} [opts.hold] - The hold * @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 */ ParticipantListInstance.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 ParticipantPage(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 participant * * @function get * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantList * @instance * * @param {string} callSid - The call_sid * * @returns {Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext} */ /* jshint ignore:end */ ParticipantListInstance.get = function get(callSid) { return new ParticipantContext( this._version, this._solution.accountSid, this._solution.conferenceSid, callSid ); }; return ParticipantListInstance; }; /* jshint ignore:start */ /** * @constructor Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantPage * @augments Page * @description Initialize the ParticipantPage * * @param {Twilio.Api.V2010} version - Version of the resource * @param {object} response - Response from the API * @param {object} solution - Path solution * * @returns ParticipantPage */ /* jshint ignore:end */ ParticipantPage = function ParticipantPage(version, response, solution) { // Path Solution this._solution = solution; Page.prototype.constructor.call(this, version, response, this._solution); }; _.extend(ParticipantPage.prototype, Page.prototype); ParticipantPage.prototype.constructor = ParticipantPage; /* jshint ignore:start */ /** * Build an instance of ParticipantInstance * * @function getInstance * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantPage * @instance * * @param {object} payload - Payload response from the API * * @returns ParticipantInstance */ /* jshint ignore:end */ ParticipantPage.prototype.getInstance = function getInstance(payload) { return new ParticipantInstance( this._version, payload, this._solution.accountSid, this._solution.conferenceSid ); }; /* jshint ignore:start */ /** * @constructor Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantInstance * @description Initialize the ParticipantContext * * @property {string} accountSid - The unique sid that identifies this account * @property {string} callSid - A string that uniquely identifies this call * @property {string} conferenceSid - * A string that uniquely identifies this conference * @property {Date} dateCreated - The date this resource was created * @property {Date} dateUpdated - The date this resource was last updated * @property {boolean} endConferenceOnExit - * Indicates if the endConferenceOnExit was set * @property {boolean} muted - Indicates if the participant is muted * @property {boolean} hold - The hold * @property {boolean} startConferenceOnEnter - * Indicates if the startConferenceOnEnter attribute was set * @property {participant.status} status - The status * @property {string} uri - The URI for this resource * * @param {Twilio.Api.V2010} version - Version of the resource * @param {object} payload - The instance payload * @param {sid} accountSid - The account_sid * @param {sid} conferenceSid - The string that uniquely identifies this conference * @param {sid} callSid - The call_sid */ /* jshint ignore:end */ ParticipantInstance = function ParticipantInstance(version, payload, accountSid, conferenceSid, callSid) { this._version = version; // Marshaled Properties this.accountSid = payload.account_sid; // jshint ignore:line this.callSid = payload.call_sid; // jshint ignore:line this.conferenceSid = payload.conference_sid; // jshint ignore:line this.dateCreated = deserialize.rfc2822DateTime(payload.date_created); // jshint ignore:line this.dateUpdated = deserialize.rfc2822DateTime(payload.date_updated); // jshint ignore:line this.endConferenceOnExit = payload.end_conference_on_exit; // jshint ignore:line this.muted = payload.muted; // jshint ignore:line this.hold = payload.hold; // jshint ignore:line this.startConferenceOnEnter = payload.start_conference_on_enter; // jshint ignore:line this.status = payload.status; // jshint ignore:line this.uri = payload.uri; // jshint ignore:line // Context this._context = undefined; this._solution = { accountSid: accountSid, conferenceSid: conferenceSid, callSid: callSid || this.callSid, }; }; Object.defineProperty(ParticipantInstance.prototype, '_proxy', { get: function() { if (!this._context) { this._context = new ParticipantContext( this._version, this._solution.accountSid, this._solution.conferenceSid, this._solution.callSid ); } return this._context; } }); /* jshint ignore:start */ /** * fetch a ParticipantInstance * * @function fetch * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantInstance * @instance * * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantInstance.prototype.fetch = function fetch(callback) { return this._proxy.fetch(callback); }; /* jshint ignore:start */ /** * update a ParticipantInstance * * @function update * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantInstance * @instance * * @param {object|function} opts - ... * @param {boolean} [opts.muted] - Indicates if the participant should be muted * @param {boolean} [opts.hold] - The hold * @param {string} [opts.holdUrl] - The hold_url * @param {string} [opts.holdMethod] - The hold_method * @param {string} [opts.announceUrl] - The announce_url * @param {string} [opts.announceMethod] - The announce_method * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantInstance.prototype.update = function update(opts, callback) { return this._proxy.update(opts, callback); }; /* jshint ignore:start */ /** * remove a ParticipantInstance * * @function remove * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantInstance * @instance * * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantInstance.prototype.remove = function remove(callback) { return this._proxy.remove(callback); }; /* jshint ignore:start */ /** * @constructor Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext * @description Initialize the ParticipantContext * * @param {Twilio.Api.V2010} version - Version of the resource * @param {sid} accountSid - The account_sid * @param {sid} conferenceSid - The string that uniquely identifies this conference * @param {sid} callSid - The call_sid */ /* jshint ignore:end */ ParticipantContext = function ParticipantContext(version, accountSid, conferenceSid, callSid) { this._version = version; // Path Solution this._solution = {accountSid: accountSid, conferenceSid: conferenceSid, callSid: callSid,}; this._uri = _.template( '/Accounts/<%= accountSid %>/Conferences/<%= conferenceSid %>/Participants/<%= callSid %>.json' // jshint ignore:line )(this._solution); }; /* jshint ignore:start */ /** * fetch a ParticipantInstance * * @function fetch * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext * @instance * * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantContext.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 ParticipantInstance( this._version, payload, this._solution.accountSid, this._solution.conferenceSid, this._solution.callSid )); }.bind(this)); promise.catch(function(error) { deferred.reject(error); }); if (_.isFunction(callback)) { deferred.promise.nodeify(callback); } return deferred.promise; }; /* jshint ignore:start */ /** * update a ParticipantInstance * * @function update * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext * @instance * * @param {object|function} opts - ... * @param {boolean} [opts.muted] - Indicates if the participant should be muted * @param {boolean} [opts.hold] - The hold * @param {string} [opts.holdUrl] - The hold_url * @param {string} [opts.holdMethod] - The hold_method * @param {string} [opts.announceUrl] - The announce_url * @param {string} [opts.announceMethod] - The announce_method * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantContext.prototype.update = function update(opts, callback) { if (_.isFunction(opts)) { callback = opts; opts = {}; } opts = opts || {}; var deferred = Q.defer(); var data = values.of({ 'Muted': serialize.bool(_.get(opts, 'muted')), 'Hold': serialize.bool(_.get(opts, 'hold')), 'HoldUrl': _.get(opts, 'holdUrl'), 'HoldMethod': _.get(opts, 'holdMethod'), 'AnnounceUrl': _.get(opts, 'announceUrl'), 'AnnounceMethod': _.get(opts, 'announceMethod') }); var promise = this._version.update({uri: this._uri, method: 'POST', data: data}); promise = promise.then(function(payload) { deferred.resolve(new ParticipantInstance( this._version, payload, this._solution.accountSid, this._solution.conferenceSid, this._solution.callSid )); }.bind(this)); promise.catch(function(error) { deferred.reject(error); }); if (_.isFunction(callback)) { deferred.promise.nodeify(callback); } return deferred.promise; }; /* jshint ignore:start */ /** * remove a ParticipantInstance * * @function remove * @memberof Twilio.Api.V2010.AccountContext.ConferenceContext.ParticipantContext * @instance * * @param {function} [callback] - Callback to handle processed record * * @returns {Promise} Resolves to processed ParticipantInstance */ /* jshint ignore:end */ ParticipantContext.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; }; module.exports = { ParticipantList: ParticipantList, ParticipantPage: ParticipantPage, ParticipantInstance: ParticipantInstance, ParticipantContext: ParticipantContext };