UNPKG

@enfonica/voice

Version:

Enfonica Numbering SDK for Node.js

711 lines 30.6 kB
"use strict"; // Copyright 2023 Enfonica Pty Ltd // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // ** This file is automatically generated by gapic-generator-typescript. ** // ** https://github.com/googleapis/gapic-generator-typescript ** // ** All changes to this file may be overwritten. ** Object.defineProperty(exports, "__esModule", { value: true }); exports.RecordingsClient = void 0; const gax = require("google-gax"); const localAuth = require("@enfonica/auth-library"); const path = require("path"); const gapicConfig = require("./recordings_client_config.json"); const version = require('../../../package.json').version; /** * Manages Recordings. * @class * @memberof v1beta1 */ class RecordingsClient { /** * Construct an instance of RecordingsClient. * * @param {object} [options] - The configuration object. See the subsequent * parameters for more details. * @param {object} [options.credentials] - Credentials object. * @param {string} [options.credentials.client_email] * @param {string} [options.credentials.private_key] * @param {string} [options.email] - Account email address. Required when * using a .pem or .p12 keyFilename. * @param {string} [options.keyFilename] - Full path to the a .json, .pem, or * .p12 key downloaded from the Google Developers Console. If you provide * a path to a JSON file, the projectId option below is not necessary. * NOTE: .pem and .p12 require you to specify options.email as well. * @param {number} [options.port] - The port on which to connect to * the remote host. * @param {string} [options.projectId] - The project ID from the Google * Developer's Console, e.g. 'grape-spaceship-123'. We will also check * the environment variable GCLOUD_PROJECT for your project ID. If your * app is running in an environment which supports * {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials}, * your project ID will be detected automatically. * @param {string} [options.apiEndpoint] - The domain name of the * API remote host. */ constructor(opts) { this._terminated = false; this.descriptors = { page: {}, stream: {}, longrunning: {}, batching: {}, }; // Ensure that options include the service address and port. const staticMembers = this.constructor; const servicePath = opts && opts.servicePath ? opts.servicePath : opts && opts.apiEndpoint ? opts.apiEndpoint : staticMembers.servicePath; const port = opts && opts.port ? opts.port : staticMembers.port; if (!opts) { opts = { servicePath, port }; } opts.servicePath = opts.servicePath || servicePath; opts.port = opts.port || port; opts.auth = new localAuth.GoogleAuth({ keyFilename: opts.keyFile }); // users can override the config from client side, like retry codes name. // The detailed structure of the clientConfig can be found here: https://github.com/googleapis/gax-nodejs/blob/master/src/gax.ts#L546 // The way to override client config for Showcase API: // // const customConfig = {"interfaces": {"google.showcase.v1beta1.Echo": {"methods": {"Echo": {"retry_codes_name": "idempotent", "retry_params_name": "default"}}}}} // const showcaseClient = new showcaseClient({ projectId, customConfig }); opts.clientConfig = opts.clientConfig || {}; // If we're running in browser, it's OK to omit `fallback` since // google-gax has `browser` field in its `package.json`. // For Electron (which does not respect `browser` field), // pass `{fallback: true}` to the RecordingsClient constructor. this._gaxModule = opts.fallback ? gax.fallback : gax; // Create a `gaxGrpc` object, with any grpc-specific options // sent to the client. opts.scopes = this.constructor.scopes; this._gaxGrpc = new this._gaxModule.GrpcClient(opts); // Save options to use in initialize() method. this._opts = opts; // Save the auth object to the client, for use by other methods. this.auth = this._gaxGrpc.auth; // Determine the client header string. const clientHeader = [`gax/${this._gaxModule.version}`, `gapic/${version}`]; if (typeof process !== 'undefined' && 'versions' in process) { clientHeader.push(`gl-node/${process.versions.node}`); } else { clientHeader.push(`gl-web/${this._gaxModule.version}`); } if (!opts.fallback) { clientHeader.push(`grpc/${this._gaxGrpc.grpcVersion}`); } if (opts.libName && opts.libVersion) { clientHeader.push(`${opts.libName}/${opts.libVersion}`); } // Load the applicable protos. // For Node.js, pass the path to JSON proto file. // For browsers, pass the JSON content. const nodejsProtoPath = path.join(__dirname, '..', '..', 'protos', 'protos.json'); this._protos = this._gaxGrpc.loadProto(opts.fallback ? // eslint-disable-next-line @typescript-eslint/no-var-requires require('../../protos/protos.json') : nodejsProtoPath); // This API contains "path templates"; forward-slash-separated // identifiers to uniquely identify resources within the API. // Create useful helper objects for these. this.pathTemplates = { aliasPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/sipDomains/{sip_domain}/aliases/{alias}'), callPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}'), recordingPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/recordings/{recording}'), sipDomainPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/sipDomains/{sip_domain}'), sipInfoPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/sipInfo'), transcriptionPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/calls/{call}/transcriptions/{transcription}'), }; // Some of the methods on this service return "paged" results, // (e.g. 50 results at a time, with tokens to get subsequent // pages). Denote the keys used for pagination and results. this.descriptors.page = { listRecordings: new this._gaxModule.PageDescriptor('pageToken', 'nextPageToken', 'recordings'), }; // Put together the default options sent with requests. this._defaults = this._gaxGrpc.constructSettings('enfonica.voice.v1beta1.Recordings', gapicConfig, opts.clientConfig || {}, { 'x-goog-api-client': clientHeader.join(' ') }); // Set up a dictionary of "inner API calls"; the core implementation // of calling the API is handled in `google-gax`, with this code // merely providing the destination and request information. this.innerApiCalls = {}; } /** * Initialize the client. * Performs asynchronous operations (such as authentication) and prepares the client. * This function will be called automatically when any class method is called for the * first time, but if you need to initialize it before calling an actual method, * feel free to call initialize() directly. * * You can await on this method if you want to make sure the client is initialized. * * @returns {Promise} A promise that resolves to an authenticated service stub. */ initialize() { // If the client stub promise is already initialized, return immediately. if (this.recordingsStub) { return this.recordingsStub; } // Put together the "service stub" for // enfonica.voice.v1beta1.Recordings. this.recordingsStub = this._gaxGrpc.createStub(this._opts.fallback ? this._protos.lookupService('enfonica.voice.v1beta1.Recordings') : // eslint-disable-next-line @typescript-eslint/no-explicit-any this._protos.enfonica.voice.v1beta1.Recordings, this._opts); // Iterate over each of the methods that the service provides // and create an API call method for each. const recordingsStubMethods = [ 'getRecording', 'listRecordings', 'deleteRecording', ]; for (const methodName of recordingsStubMethods) { const callPromise = this.recordingsStub.then(stub => (...args) => { if (this._terminated) { return Promise.reject('The client has already been closed.'); } const func = stub[methodName]; return func.apply(stub, args); }, (err) => () => { throw err; }); const descriptor = this.descriptors.page[methodName] || undefined; const apiCall = this._gaxModule.createApiCall(callPromise, this._defaults[methodName], descriptor); this.innerApiCalls[methodName] = apiCall; } return this.recordingsStub; } /** * The DNS address for this API service. */ static get servicePath() { return 'voice.api.enfonica.com'; } /** * The DNS address for this API service - same as servicePath(), * exists for compatibility reasons. */ static get apiEndpoint() { return 'voice.api.enfonica.com'; } /** * The port for this API service. */ static get port() { return 443; } /** * The scopes needed to make gRPC calls for every method defined * in this service. */ static get scopes() { return ['https://api.enfonica.com/auth/voice']; } /** * Return the project ID used by this class. * @param {function(Error, string)} callback - the callback to * be called with the current project Id. */ getProjectId(callback) { if (callback) { this.auth.getProjectId(callback); return; } return this.auth.getProjectId(); } /** * Retrieves a Recording identified by the supplied resource name. * * The caller must have `voice.recordings.get` permission on the project. * * @param {Object} request * The request object that will be sent. * @param {string} request.name * The resource name of the Recording to retrieve. * Must be of the form `projects/* /calls/* /recordings/*`. * @param {enfonica.voice.v1beta1.RecordingView} request.view * Configuration of partial responses. * Defaults to FULL. * @param {object} [options] * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is an object representing [Recording]{@link enfonica.voice.v1beta1.Recording}. * The promise has a method named "cancel" which cancels the ongoing API call. */ getRecording(request, optionsOrCallback, callback) { request = request || {}; let options; if (typeof optionsOrCallback === 'function' && callback === undefined) { callback = optionsOrCallback; options = {}; } else { options = optionsOrCallback; } options = options || {}; options.otherArgs = options.otherArgs || {}; options.otherArgs.headers = options.otherArgs.headers || {}; options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ name: request.name || '', }); this.initialize(); return this.innerApiCalls.getRecording(request, options, callback); } /** * Deletes a recording. * * The caller must have `voice.recordings.delete` permission on the project. * * @param {Object} request * The request object that will be sent. * @param {string} request.name * The resource name of the Recording to be deleted. * Must be of the form `projects/* /calls/* /recording/*`. * @param {object} [options] * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is an object representing [Recording]{@link enfonica.voice.v1beta1.Recording}. * The promise has a method named "cancel" which cancels the ongoing API call. */ deleteRecording(request, optionsOrCallback, callback) { request = request || {}; let options; if (typeof optionsOrCallback === 'function' && callback === undefined) { callback = optionsOrCallback; options = {}; } else { options = optionsOrCallback; } options = options || {}; options.otherArgs = options.otherArgs || {}; options.otherArgs.headers = options.otherArgs.headers || {}; options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ name: request.name || '', }); this.initialize(); return this.innerApiCalls.deleteRecording(request, options, callback); } /** * Lists the Recordings of the specified project. * List returns Recordings sorted by create_time descending. * * The caller must have `voice.recordings.list` permission on the project. * * @param {Object} request * The request object that will be sent. * @param {string} request.parent * The resource name of the parent of which to list recordings. * May be of the form `projects/* /calls/*` to list the recordings of that * specific call, or `projects/*` to list recordings across the entire project, * which maps to `projects/* /calls/-`. * @param {number} request.pageSize * The maximum number of Recordings to return in the response. * Default value of 10 and maximum value of 100. * @param {string} request.pageToken * A pagination token returned from a previous recording to `ListRecordings` * that indicates where this listing should continue from. * @param {enfonica.voice.v1beta1.RecordingView} request.view * Configuration of partial responses. * Defaults to BASIC. * @param {object} [options] * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is Array of [Recording]{@link enfonica.voice.v1beta1.Recording}. * The client library support auto-pagination by default: it will call the API as many * times as needed and will merge results from all the pages into this array. * * When autoPaginate: false is specified through options, the array has three elements. * The first element is Array of [Recording]{@link enfonica.voice.v1beta1.Recording} that corresponds to * the one page received from the API server. * If the second element is not null it contains the request object of type [ListRecordingsRequest]{@link enfonica.voice.v1beta1.ListRecordingsRequest} * that can be used to obtain the next page of the results. * If it is null, the next page does not exist. * The third element contains the raw response received from the API server. Its type is * [ListRecordingsResponse]{@link enfonica.voice.v1beta1.ListRecordingsResponse}. * * The promise has a method named "cancel" which cancels the ongoing API call. */ listRecordings(request, optionsOrCallback, callback) { request = request || {}; let options; if (typeof optionsOrCallback === 'function' && callback === undefined) { callback = optionsOrCallback; options = {}; } else { options = optionsOrCallback; } options = options || {}; options.otherArgs = options.otherArgs || {}; options.otherArgs.headers = options.otherArgs.headers || {}; options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ parent: request.parent || '', }); this.initialize(); return this.innerApiCalls.listRecordings(request, options, callback); } /** * Equivalent to {@link listRecordings}, but returns a NodeJS Stream object. * * This fetches the paged responses for {@link listRecordings} continuously * and invokes the callback registered for 'data' event for each element in the * responses. * * The returned object has 'end' method when no more elements are required. * * autoPaginate option will be ignored. * * @see {@link https://nodejs.org/api/stream.html} * * @param {Object} request * The request object that will be sent. * @param {string} request.parent * The resource name of the parent of which to list recordings. * May be of the form `projects/* /calls/*` to list the recordings of that * specific call, or `projects/*` to list recordings across the entire project, * which maps to `projects/* /calls/-`. * @param {number} request.pageSize * The maximum number of Recordings to return in the response. * Default value of 10 and maximum value of 100. * @param {string} request.pageToken * A pagination token returned from a previous recording to `ListRecordings` * that indicates where this listing should continue from. * @param {enfonica.voice.v1beta1.RecordingView} request.view * Configuration of partial responses. * Defaults to BASIC. * @param {object} [options] * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details. * @returns {Stream} * An object stream which emits an object representing [Recording]{@link enfonica.voice.v1beta1.Recording} on 'data' event. */ listRecordingsStream(request, options) { request = request || {}; options = options || {}; options.otherArgs = options.otherArgs || {}; options.otherArgs.headers = options.otherArgs.headers || {}; options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ parent: request.parent || '', }); const callSettings = new gax.CallSettings(options); this.initialize(); return this.descriptors.page.listRecordings.createStream(this.innerApiCalls.listRecordings, request, callSettings); } /** * Equivalent to {@link listRecordings}, but returns an iterable object. * * for-await-of syntax is used with the iterable to recursively get response element on-demand. * * @param {Object} request * The request object that will be sent. * @param {string} request.parent * The resource name of the parent of which to list recordings. * May be of the form `projects/* /calls/*` to list the recordings of that * specific call, or `projects/*` to list recordings across the entire project, * which maps to `projects/* /calls/-`. * @param {number} request.pageSize * The maximum number of Recordings to return in the response. * Default value of 10 and maximum value of 100. * @param {string} request.pageToken * A pagination token returned from a previous recording to `ListRecordings` * that indicates where this listing should continue from. * @param {enfonica.voice.v1beta1.RecordingView} request.view * Configuration of partial responses. * Defaults to BASIC. * @param {object} [options] * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details. * @returns {Object} * An iterable Object that conforms to @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols. */ listRecordingsAsync(request, options) { request = request || {}; options = options || {}; options.otherArgs = options.otherArgs || {}; options.otherArgs.headers = options.otherArgs.headers || {}; options.otherArgs.headers['x-goog-request-params'] = gax.routingHeader.fromParams({ parent: request.parent || '', }); options = options || {}; const callSettings = new gax.CallSettings(options); this.initialize(); return this.descriptors.page.listRecordings.asyncIterate(this.innerApiCalls['listRecordings'], request, callSettings); } // -------------------- // -- Path templates -- // -------------------- /** * Return a fully-qualified alias resource name string. * * @param {string} project * @param {string} sip_domain * @param {string} alias * @returns {string} Resource name string. */ aliasPath(project, sipDomain, alias) { return this.pathTemplates.aliasPathTemplate.render({ project: project, sip_domain: sipDomain, alias: alias, }); } /** * Parse the project from Alias resource. * * @param {string} aliasName * A fully-qualified path representing Alias resource. * @returns {string} A string representing the project. */ matchProjectFromAliasName(aliasName) { return this.pathTemplates.aliasPathTemplate.match(aliasName).project; } /** * Parse the sip_domain from Alias resource. * * @param {string} aliasName * A fully-qualified path representing Alias resource. * @returns {string} A string representing the sip_domain. */ matchSipDomainFromAliasName(aliasName) { return this.pathTemplates.aliasPathTemplate.match(aliasName).sip_domain; } /** * Parse the alias from Alias resource. * * @param {string} aliasName * A fully-qualified path representing Alias resource. * @returns {string} A string representing the alias. */ matchAliasFromAliasName(aliasName) { return this.pathTemplates.aliasPathTemplate.match(aliasName).alias; } /** * Return a fully-qualified call resource name string. * * @param {string} project * @param {string} call * @returns {string} Resource name string. */ callPath(project, call) { return this.pathTemplates.callPathTemplate.render({ project: project, call: call, }); } /** * Parse the project from Call resource. * * @param {string} callName * A fully-qualified path representing Call resource. * @returns {string} A string representing the project. */ matchProjectFromCallName(callName) { return this.pathTemplates.callPathTemplate.match(callName).project; } /** * Parse the call from Call resource. * * @param {string} callName * A fully-qualified path representing Call resource. * @returns {string} A string representing the call. */ matchCallFromCallName(callName) { return this.pathTemplates.callPathTemplate.match(callName).call; } /** * Return a fully-qualified recording resource name string. * * @param {string} project * @param {string} call * @param {string} recording * @returns {string} Resource name string. */ recordingPath(project, call, recording) { return this.pathTemplates.recordingPathTemplate.render({ project: project, call: call, recording: recording, }); } /** * Parse the project from Recording resource. * * @param {string} recordingName * A fully-qualified path representing Recording resource. * @returns {string} A string representing the project. */ matchProjectFromRecordingName(recordingName) { return this.pathTemplates.recordingPathTemplate.match(recordingName) .project; } /** * Parse the call from Recording resource. * * @param {string} recordingName * A fully-qualified path representing Recording resource. * @returns {string} A string representing the call. */ matchCallFromRecordingName(recordingName) { return this.pathTemplates.recordingPathTemplate.match(recordingName).call; } /** * Parse the recording from Recording resource. * * @param {string} recordingName * A fully-qualified path representing Recording resource. * @returns {string} A string representing the recording. */ matchRecordingFromRecordingName(recordingName) { return this.pathTemplates.recordingPathTemplate.match(recordingName) .recording; } /** * Return a fully-qualified sipDomain resource name string. * * @param {string} project * @param {string} sip_domain * @returns {string} Resource name string. */ sipDomainPath(project, sipDomain) { return this.pathTemplates.sipDomainPathTemplate.render({ project: project, sip_domain: sipDomain, }); } /** * Parse the project from SipDomain resource. * * @param {string} sipDomainName * A fully-qualified path representing SipDomain resource. * @returns {string} A string representing the project. */ matchProjectFromSipDomainName(sipDomainName) { return this.pathTemplates.sipDomainPathTemplate.match(sipDomainName) .project; } /** * Parse the sip_domain from SipDomain resource. * * @param {string} sipDomainName * A fully-qualified path representing SipDomain resource. * @returns {string} A string representing the sip_domain. */ matchSipDomainFromSipDomainName(sipDomainName) { return this.pathTemplates.sipDomainPathTemplate.match(sipDomainName) .sip_domain; } /** * Return a fully-qualified sipInfo resource name string. * * @param {string} project * @param {string} call * @returns {string} Resource name string. */ sipInfoPath(project, call) { return this.pathTemplates.sipInfoPathTemplate.render({ project: project, call: call, }); } /** * Parse the project from SipInfo resource. * * @param {string} sipInfoName * A fully-qualified path representing SipInfo resource. * @returns {string} A string representing the project. */ matchProjectFromSipInfoName(sipInfoName) { return this.pathTemplates.sipInfoPathTemplate.match(sipInfoName).project; } /** * Parse the call from SipInfo resource. * * @param {string} sipInfoName * A fully-qualified path representing SipInfo resource. * @returns {string} A string representing the call. */ matchCallFromSipInfoName(sipInfoName) { return this.pathTemplates.sipInfoPathTemplate.match(sipInfoName).call; } /** * Return a fully-qualified transcription resource name string. * * @param {string} project * @param {string} call * @param {string} transcription * @returns {string} Resource name string. */ transcriptionPath(project, call, transcription) { return this.pathTemplates.transcriptionPathTemplate.render({ project: project, call: call, transcription: transcription, }); } /** * Parse the project from Transcription resource. * * @param {string} transcriptionName * A fully-qualified path representing Transcription resource. * @returns {string} A string representing the project. */ matchProjectFromTranscriptionName(transcriptionName) { return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName) .project; } /** * Parse the call from Transcription resource. * * @param {string} transcriptionName * A fully-qualified path representing Transcription resource. * @returns {string} A string representing the call. */ matchCallFromTranscriptionName(transcriptionName) { return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName) .call; } /** * Parse the transcription from Transcription resource. * * @param {string} transcriptionName * A fully-qualified path representing Transcription resource. * @returns {string} A string representing the transcription. */ matchTranscriptionFromTranscriptionName(transcriptionName) { return this.pathTemplates.transcriptionPathTemplate.match(transcriptionName) .transcription; } /** * Terminate the GRPC channel and close the client. * * The client will no longer be usable and all future behavior is undefined. */ close() { this.initialize(); if (!this._terminated) { return this.recordingsStub.then(stub => { this._terminated = true; stub.close(); }); } return Promise.resolve(); } } exports.RecordingsClient = RecordingsClient; //# sourceMappingURL=recordings_client.js.map