UNPKG

@signalwire/compatibility-api

Version:
591 lines (542 loc) 22.3 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 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 VoipList; var VoipPage; var VoipInstance; /* jshint ignore:start */ /** * Initialize the VoipList * * @constructor Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipList * * @param {Twilio.Api.V2010} version - Version of the resource * @param {string} accountSid - The account_sid * @param {string} countryCode - The ISO-3166-1 country code of the country. */ /* jshint ignore:end */ VoipList = function VoipList(version, accountSid, countryCode) { /* jshint ignore:start */ /** * @function voip * @memberof Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext# * * @param {string} sid - sid of instance * * @returns {Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipContext} */ /* jshint ignore:end */ function VoipListInstance(sid) { return VoipListInstance.get(sid); } VoipListInstance._version = version; // Path Solution VoipListInstance._solution = {accountSid: accountSid, countryCode: countryCode}; VoipListInstance._uri = `/Accounts/${accountSid}/AvailablePhoneNumbers/${countryCode}/Voip.json`; /* jshint ignore:start */ /** * Streams VoipInstance 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.AvailablePhoneNumberCountryContext.VoipList# * * @param {object} [opts] - Options for request * @param {number} [opts.areaCode] - The area code of the phone numbers to read * @param {string} [opts.contains] - The pattern on which to match phone numbers * @param {boolean} [opts.smsEnabled] - * Whether the phone numbers can receive text messages * @param {boolean} [opts.mmsEnabled] - * Whether the phone numbers can receive MMS messages * @param {boolean} [opts.voiceEnabled] - * Whether the phone numbers can receive calls. * @param {boolean} [opts.excludeAllAddressRequired] - * Whether to exclude phone numbers that require an Address * @param {boolean} [opts.excludeLocalAddressRequired] - * Whether to exclude phone numbers that require a local address * @param {boolean} [opts.excludeForeignAddressRequired] - * Whether to exclude phone numbers that require a foreign address * @param {boolean} [opts.beta] - * Whether to read phone numbers new to the Twilio platform * @param {string} [opts.nearNumber] - * Given a phone number, find a geographically close number within distance miles. (US/Canada only) * @param {string} [opts.nearLatLong] - * Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only) * @param {number} [opts.distance] - * The search radius, in miles, for a near_ query. (US/Canada only) * @param {string} [opts.inPostalCode] - * Limit results to a particular postal code. (US/Canada only) * @param {string} [opts.inRegion] - * Limit results to a particular region. (US/Canada only) * @param {string} [opts.inRateCenter] - * Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only) * @param {string} [opts.inLata] - * Limit results to a specific local access and transport area. (US/Canada only) * @param {string} [opts.inLocality] - Limit results to a particular locality * @param {boolean} [opts.faxEnabled] - Whether the phone numbers can receive faxes * @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 */ VoipListInstance.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 VoipInstance 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.AvailablePhoneNumberCountryContext.VoipList# * * @param {object} [opts] - Options for request * @param {number} [opts.areaCode] - The area code of the phone numbers to read * @param {string} [opts.contains] - The pattern on which to match phone numbers * @param {boolean} [opts.smsEnabled] - * Whether the phone numbers can receive text messages * @param {boolean} [opts.mmsEnabled] - * Whether the phone numbers can receive MMS messages * @param {boolean} [opts.voiceEnabled] - * Whether the phone numbers can receive calls. * @param {boolean} [opts.excludeAllAddressRequired] - * Whether to exclude phone numbers that require an Address * @param {boolean} [opts.excludeLocalAddressRequired] - * Whether to exclude phone numbers that require a local address * @param {boolean} [opts.excludeForeignAddressRequired] - * Whether to exclude phone numbers that require a foreign address * @param {boolean} [opts.beta] - * Whether to read phone numbers new to the Twilio platform * @param {string} [opts.nearNumber] - * Given a phone number, find a geographically close number within distance miles. (US/Canada only) * @param {string} [opts.nearLatLong] - * Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only) * @param {number} [opts.distance] - * The search radius, in miles, for a near_ query. (US/Canada only) * @param {string} [opts.inPostalCode] - * Limit results to a particular postal code. (US/Canada only) * @param {string} [opts.inRegion] - * Limit results to a particular region. (US/Canada only) * @param {string} [opts.inRateCenter] - * Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only) * @param {string} [opts.inLata] - * Limit results to a specific local access and transport area. (US/Canada only) * @param {string} [opts.inLocality] - Limit results to a particular locality * @param {boolean} [opts.faxEnabled] - Whether the phone numbers can receive faxes * @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 */ VoipListInstance.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 VoipInstance 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.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipList# * * @param {object} [opts] - Options for request * @param {number} [opts.areaCode] - The area code of the phone numbers to read * @param {string} [opts.contains] - The pattern on which to match phone numbers * @param {boolean} [opts.smsEnabled] - * Whether the phone numbers can receive text messages * @param {boolean} [opts.mmsEnabled] - * Whether the phone numbers can receive MMS messages * @param {boolean} [opts.voiceEnabled] - * Whether the phone numbers can receive calls. * @param {boolean} [opts.excludeAllAddressRequired] - * Whether to exclude phone numbers that require an Address * @param {boolean} [opts.excludeLocalAddressRequired] - * Whether to exclude phone numbers that require a local address * @param {boolean} [opts.excludeForeignAddressRequired] - * Whether to exclude phone numbers that require a foreign address * @param {boolean} [opts.beta] - * Whether to read phone numbers new to the Twilio platform * @param {string} [opts.nearNumber] - * Given a phone number, find a geographically close number within distance miles. (US/Canada only) * @param {string} [opts.nearLatLong] - * Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only) * @param {number} [opts.distance] - * The search radius, in miles, for a near_ query. (US/Canada only) * @param {string} [opts.inPostalCode] - * Limit results to a particular postal code. (US/Canada only) * @param {string} [opts.inRegion] - * Limit results to a particular region. (US/Canada only) * @param {string} [opts.inRateCenter] - * Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only) * @param {string} [opts.inLata] - * Limit results to a specific local access and transport area. (US/Canada only) * @param {string} [opts.inLocality] - Limit results to a particular locality * @param {boolean} [opts.faxEnabled] - Whether the phone numbers can receive faxes * @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 */ VoipListInstance.page = function page(opts, callback) { if (_.isFunction(opts)) { callback = opts; opts = {}; } opts = opts || {}; var deferred = Q.defer(); var data = values.of({ 'AreaCode': _.get(opts, 'areaCode'), 'Contains': _.get(opts, 'contains'), 'SmsEnabled': serialize.bool(_.get(opts, 'smsEnabled')), 'MmsEnabled': serialize.bool(_.get(opts, 'mmsEnabled')), 'VoiceEnabled': serialize.bool(_.get(opts, 'voiceEnabled')), 'ExcludeAllAddressRequired': serialize.bool(_.get(opts, 'excludeAllAddressRequired')), 'ExcludeLocalAddressRequired': serialize.bool(_.get(opts, 'excludeLocalAddressRequired')), 'ExcludeForeignAddressRequired': serialize.bool(_.get(opts, 'excludeForeignAddressRequired')), 'Beta': serialize.bool(_.get(opts, 'beta')), 'NearNumber': _.get(opts, 'nearNumber'), 'NearLatLong': _.get(opts, 'nearLatLong'), 'Distance': _.get(opts, 'distance'), 'InPostalCode': _.get(opts, 'inPostalCode'), 'InRegion': _.get(opts, 'inRegion'), 'InRateCenter': _.get(opts, 'inRateCenter'), 'InLata': _.get(opts, 'inLata'), 'InLocality': _.get(opts, 'inLocality'), 'FaxEnabled': serialize.bool(_.get(opts, 'faxEnabled')), '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 VoipPage(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 VoipInstance 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.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipList# * * @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 */ VoipListInstance.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 VoipPage(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 */ /** * Provide a user-friendly representation * * @function toJSON * @memberof Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipList# * * @returns Object */ /* jshint ignore:end */ VoipListInstance.toJSON = function toJSON() { return this._solution; }; VoipListInstance[util.inspect.custom] = function inspect(depth, options) { return util.inspect(this.toJSON(), options); }; return VoipListInstance; }; /* jshint ignore:start */ /** * Initialize the VoipPage * * @constructor Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipPage * * @param {V2010} version - Version of the resource * @param {Response<string>} response - Response from the API * @param {VoipSolution} solution - Path solution * * @returns VoipPage */ /* jshint ignore:end */ VoipPage = function VoipPage(version, response, solution) { // Path Solution this._solution = solution; Page.prototype.constructor.call(this, version, response, this._solution); }; _.extend(VoipPage.prototype, Page.prototype); VoipPage.prototype.constructor = VoipPage; /* jshint ignore:start */ /** * Build an instance of VoipInstance * * @function getInstance * @memberof Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipPage# * * @param {VoipPayload} payload - Payload response from the API * * @returns VoipInstance */ /* jshint ignore:end */ VoipPage.prototype.getInstance = function getInstance(payload) { return new VoipInstance( this._version, payload, this._solution.accountSid, this._solution.countryCode ); }; /* jshint ignore:start */ /** * Provide a user-friendly representation * * @function toJSON * @memberof Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipPage# * * @returns Object */ /* jshint ignore:end */ VoipPage.prototype.toJSON = function toJSON() { let clone = {}; _.forOwn(this, function(value, key) { if (!_.startsWith(key, '_') && ! _.isFunction(value)) { clone[key] = value; } }); return clone; }; VoipPage.prototype[util.inspect.custom] = function inspect(depth, options) { return util.inspect(this.toJSON(), options); }; /* jshint ignore:start */ /** * Initialize the VoipContext * * @constructor Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipInstance * * @property {string} friendlyName - A formatted version of the phone number * @property {string} phoneNumber - The phone number in E.164 format * @property {string} lata - The LATA of this phone number * @property {string} locality - * The locality or city of this phone number's location * @property {string} rateCenter - The rate center of this phone number * @property {number} latitude - The latitude of this phone number's location * @property {number} longitude - The longitude of this phone number's location * @property {string} region - * The two-letter state or province abbreviation of this phone number's location * @property {string} postalCode - * The postal or ZIP code of this phone number's location * @property {string} isoCountry - The ISO country code of this phone number * @property {string} addressRequirements - * The type of Address resource the phone number requires * @property {boolean} beta - * Whether the phone number is new to the Twilio platform * @property {PhoneNumberCapabilities} capabilities - * Whether a phone number can receive calls or messages * * @param {V2010} version - Version of the resource * @param {VoipPayload} payload - The instance payload * @param {account_sid} accountSid - The account_sid * @param {iso_country_code} countryCode - * The ISO-3166-1 country code of the country. */ /* jshint ignore:end */ VoipInstance = function VoipInstance(version, payload, accountSid, countryCode) { this._version = version; // Marshaled Properties this.friendlyName = payload.friendly_name; // jshint ignore:line this.phoneNumber = payload.phone_number; // jshint ignore:line this.lata = payload.lata; // jshint ignore:line this.locality = payload.locality; // jshint ignore:line this.rateCenter = payload.rate_center; // jshint ignore:line this.latitude = deserialize.decimal(payload.latitude); // jshint ignore:line this.longitude = deserialize.decimal(payload.longitude); // jshint ignore:line this.region = payload.region; // jshint ignore:line this.postalCode = payload.postal_code; // jshint ignore:line this.isoCountry = payload.iso_country; // jshint ignore:line this.addressRequirements = payload.address_requirements; // jshint ignore:line this.beta = payload.beta; // jshint ignore:line this.capabilities = payload.capabilities; // jshint ignore:line // Context this._context = undefined; this._solution = {accountSid: accountSid, countryCode: countryCode, }; }; /* jshint ignore:start */ /** * Provide a user-friendly representation * * @function toJSON * @memberof Twilio.Api.V2010.AccountContext.AvailablePhoneNumberCountryContext.VoipInstance# * * @returns Object */ /* jshint ignore:end */ VoipInstance.prototype.toJSON = function toJSON() { let clone = {}; _.forOwn(this, function(value, key) { if (!_.startsWith(key, '_') && ! _.isFunction(value)) { clone[key] = value; } }); return clone; }; VoipInstance.prototype[util.inspect.custom] = function inspect(depth, options) { return util.inspect(this.toJSON(), options); }; module.exports = { VoipList: VoipList, VoipPage: VoipPage, VoipInstance: VoipInstance };