UNPKG

dialogflow

Version:
782 lines (734 loc) 28.8 kB
// Copyright 2020 Google LLC // // 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. 'use strict'; const gapicConfig = require('./session_entity_types_client_config.json'); const gax = require('google-gax'); const path = require('path'); const VERSION = require('../../package.json').version; /** * Entities are extracted from user input and represent parameters that are * meaningful to your application. For example, a date range, a proper name * such as a geographic location or landmark, and so on. Entities represent * actionable data for your application. * * Session entity types are referred to as **User** entity types and are * entities that are built for an individual user such as * favorites, preferences, playlists, and so on. You can redefine a session * entity type at the session level. * * Session entity methods do not work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * For more information about entity types, see the * [Dialogflow * documentation](https://cloud.google.com/dialogflow/docs/entities-overview). * * @class * @memberof v2 */ class SessionEntityTypesClient { /** * Construct an instance of SessionEntityTypesClient. * * @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 {function} [options.promise] - Custom promise module to use instead * of native Promises. * @param {string} [options.apiEndpoint] - The domain name of the * API remote host. */ constructor(opts) { opts = opts || {}; this._descriptors = {}; if (global.isBrowser) { // If we're in browser, we use gRPC fallback. opts.fallback = true; } // If we are in browser, we are already using fallback because of the // "browser" field in package.json. // But if we were explicitly requested to use fallback, let's do it now. const gaxModule = !global.isBrowser && opts.fallback ? gax.fallback : gax; const servicePath = opts.servicePath || opts.apiEndpoint || this.constructor.servicePath; // Ensure that options include the service address and port. opts = Object.assign( { clientConfig: {}, port: this.constructor.port, servicePath, }, opts ); // Create a `gaxGrpc` object, with any grpc-specific options // sent to the client. opts.scopes = this.constructor.scopes; const gaxGrpc = new gaxModule.GrpcClient(opts); // Save the auth object to the client, for use by other methods. this.auth = gaxGrpc.auth; // Determine the client header string. const clientHeader = []; if (typeof process !== 'undefined' && 'versions' in process) { clientHeader.push(`gl-node/${process.versions.node}`); } clientHeader.push(`gax/${gaxModule.version}`); if (opts.fallback) { clientHeader.push(`gl-web/${gaxModule.version}`); } else { clientHeader.push(`grpc/${gaxGrpc.grpcVersion}`); } clientHeader.push(`gapic/${VERSION}`); 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' ); const protos = gaxGrpc.loadProto( opts.fallback ? 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 = { sessionPathTemplate: new gaxModule.PathTemplate( 'projects/{project}/agent/sessions/{session}' ), sessionEntityTypePathTemplate: new gaxModule.PathTemplate( 'projects/{project}/agent/sessions/{session}/entityTypes/{entity_type}' ), }; // 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 = { listSessionEntityTypes: new gaxModule.PageDescriptor( 'pageToken', 'nextPageToken', 'sessionEntityTypes' ), }; // Put together the default options sent with requests. const defaults = gaxGrpc.constructSettings( 'google.cloud.dialogflow.v2.SessionEntityTypes', 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 = {}; // Put together the "service stub" for // google.cloud.dialogflow.v2.SessionEntityTypes. const sessionEntityTypesStub = gaxGrpc.createStub( opts.fallback ? protos.lookupService('google.cloud.dialogflow.v2.SessionEntityTypes') : protos.google.cloud.dialogflow.v2.SessionEntityTypes, opts ); // Iterate over each of the methods that the service provides // and create an API call method for each. const sessionEntityTypesStubMethods = [ 'listSessionEntityTypes', 'getSessionEntityType', 'createSessionEntityType', 'updateSessionEntityType', 'deleteSessionEntityType', ]; for (const methodName of sessionEntityTypesStubMethods) { const innerCallPromise = sessionEntityTypesStub.then( stub => (...args) => { return stub[methodName].apply(stub, args); }, err => () => { throw err; } ); this._innerApiCalls[methodName] = gaxModule.createApiCall( innerCallPromise, defaults[methodName], this._descriptors.page[methodName] ); } } /** * The DNS address for this API service. */ static get servicePath() { return 'dialogflow.googleapis.com'; } /** * The DNS address for this API service - same as servicePath(), * exists for compatibility reasons. */ static get apiEndpoint() { return 'dialogflow.googleapis.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://www.googleapis.com/auth/cloud-platform', 'https://www.googleapis.com/auth/dialogflow', ]; } /** * 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) { return this.auth.getProjectId(callback); } // ------------------- // -- Service calls -- // ------------------- /** * Returns the list of all session entity types in the specified session. * * This method doesn't work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * @param {Object} request * The request object that will be sent. * @param {string} request.parent * Required. The session to list all session entity types from. * Format: `projects/<Project ID>/agent/sessions/<Session ID>`. * @param {number} [request.pageSize] * The maximum number of resources contained in the underlying API * response. If page streaming is performed per-resource, this * parameter does not affect the return value. If page streaming is * performed per-page, this determines the maximum number of * resources in a page. * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @param {function(?Error, ?Array, ?Object, ?Object)} [callback] * The function which will be called with the result of the API call. * * The second parameter to the callback is Array of [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * * When autoPaginate: false is specified through options, it contains the result * in a single response. If the response indicates the next page exists, the third * parameter is set to be used for the next request object. The fourth parameter keeps * the raw response object of an object representing [ListSessionEntityTypesResponse]{@link google.cloud.dialogflow.v2.ListSessionEntityTypesResponse}. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is Array of [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * * When autoPaginate: false is specified through options, the array has three elements. * The first element is Array of [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType} in a single response. * The second element is the next request object if the response * indicates the next page exists, or null. The third element is * an object representing [ListSessionEntityTypesResponse]{@link google.cloud.dialogflow.v2.ListSessionEntityTypesResponse}. * * The promise has a method named "cancel" which cancels the ongoing API call. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * // Iterate over all elements. * const formattedParent = client.sessionPath('[PROJECT]', '[SESSION]'); * * client.listSessionEntityTypes({parent: formattedParent}) * .then(responses => { * const resources = responses[0]; * for (const resource of resources) { * // doThingsWith(resource) * } * }) * .catch(err => { * console.error(err); * }); * * // Or obtain the paged response. * const formattedParent = client.sessionPath('[PROJECT]', '[SESSION]'); * * * const options = {autoPaginate: false}; * const callback = responses => { * // The actual resources in a response. * const resources = responses[0]; * // The next request if the response shows that there are more responses. * const nextRequest = responses[1]; * // The actual response object, if necessary. * // const rawResponse = responses[2]; * for (const resource of resources) { * // doThingsWith(resource); * } * if (nextRequest) { * // Fetch the next page. * return client.listSessionEntityTypes(nextRequest, options).then(callback); * } * } * client.listSessionEntityTypes({parent: formattedParent}, options) * .then(callback) * .catch(err => { * console.error(err); * }); */ listSessionEntityTypes(request, options, callback) { if (options instanceof Function && callback === undefined) { callback = options; 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, }); return this._innerApiCalls.listSessionEntityTypes( request, options, callback ); } /** * Equivalent to {@link listSessionEntityTypes}, but returns a NodeJS Stream object. * * This fetches the paged responses for {@link listSessionEntityTypes} 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 * Required. The session to list all session entity types from. * Format: `projects/<Project ID>/agent/sessions/<Session ID>`. * @param {number} [request.pageSize] * The maximum number of resources contained in the underlying API * response. If page streaming is performed per-resource, this * parameter does not affect the return value. If page streaming is * performed per-page, this determines the maximum number of * resources in a page. * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @returns {Stream} * An object stream which emits an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType} on 'data' event. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * const formattedParent = client.sessionPath('[PROJECT]', '[SESSION]'); * client.listSessionEntityTypesStream({parent: formattedParent}) * .on('data', element => { * // doThingsWith(element) * }).on('error', err => { * console.log(err); * }); */ listSessionEntityTypesStream(request, options) { options = options || {}; return this._descriptors.page.listSessionEntityTypes.createStream( this._innerApiCalls.listSessionEntityTypes, request, options ); } /** * Retrieves the specified session entity type. * * This method doesn't work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * @param {Object} request * The request object that will be sent. * @param {string} request.name * Required. The name of the session entity type. Format: * `projects/<Project ID>/agent/sessions/<Session ID>/entityTypes/<Entity Type * Display Name>`. * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @param {function(?Error, ?Object)} [callback] * The function which will be called with the result of the API call. * * The second parameter to the callback is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * The promise has a method named "cancel" which cancels the ongoing API call. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * const formattedName = client.sessionEntityTypePath('[PROJECT]', '[SESSION]', '[ENTITY_TYPE]'); * client.getSessionEntityType({name: formattedName}) * .then(responses => { * const response = responses[0]; * // doThingsWith(response) * }) * .catch(err => { * console.error(err); * }); */ getSessionEntityType(request, options, callback) { if (options instanceof Function && callback === undefined) { callback = options; 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({ name: request.name, }); return this._innerApiCalls.getSessionEntityType(request, options, callback); } /** * Creates a session entity type. * * If the specified session entity type already exists, overrides the session * entity type. * * This method doesn't work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * @param {Object} request * The request object that will be sent. * @param {string} request.parent * Required. The session to create a session entity type for. * Format: `projects/<Project ID>/agent/sessions/<Session ID>`. * @param {Object} request.sessionEntityType * Required. The session entity type to create. * * This object should have the same structure as [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType} * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @param {function(?Error, ?Object)} [callback] * The function which will be called with the result of the API call. * * The second parameter to the callback is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * The promise has a method named "cancel" which cancels the ongoing API call. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * const formattedParent = client.sessionPath('[PROJECT]', '[SESSION]'); * const sessionEntityType = {}; * const request = { * parent: formattedParent, * sessionEntityType: sessionEntityType, * }; * client.createSessionEntityType(request) * .then(responses => { * const response = responses[0]; * // doThingsWith(response) * }) * .catch(err => { * console.error(err); * }); */ createSessionEntityType(request, options, callback) { if (options instanceof Function && callback === undefined) { callback = options; 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, }); return this._innerApiCalls.createSessionEntityType( request, options, callback ); } /** * Updates the specified session entity type. * * This method doesn't work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * @param {Object} request * The request object that will be sent. * @param {Object} request.sessionEntityType * Required. The entity type to update. Format: * `projects/<Project ID>/agent/sessions/<Session ID>/entityTypes/<Entity Type * Display Name>`. * * This object should have the same structure as [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType} * @param {Object} [request.updateMask] * Optional. The mask to control which fields get updated. * * This object should have the same structure as [FieldMask]{@link google.protobuf.FieldMask} * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @param {function(?Error, ?Object)} [callback] * The function which will be called with the result of the API call. * * The second parameter to the callback is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * @returns {Promise} - The promise which resolves to an array. * The first element of the array is an object representing [SessionEntityType]{@link google.cloud.dialogflow.v2.SessionEntityType}. * The promise has a method named "cancel" which cancels the ongoing API call. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * const sessionEntityType = {}; * client.updateSessionEntityType({sessionEntityType: sessionEntityType}) * .then(responses => { * const response = responses[0]; * // doThingsWith(response) * }) * .catch(err => { * console.error(err); * }); */ updateSessionEntityType(request, options, callback) { if (options instanceof Function && callback === undefined) { callback = options; 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({ 'session_entity_type.name': request.sessionEntityType.name, }); return this._innerApiCalls.updateSessionEntityType( request, options, callback ); } /** * Deletes the specified session entity type. * * This method doesn't work with Google Assistant integration. * Contact Dialogflow support if you need to use session entities * with Google Assistant integration. * * @param {Object} request * The request object that will be sent. * @param {string} request.name * Required. The name of the entity type to delete. Format: * `projects/<Project ID>/agent/sessions/<Session ID>/entityTypes/<Entity Type * Display Name>`. * @param {Object} [options] * Optional parameters. You can override the default settings for this call, e.g, timeout, * retries, paginations, etc. See [gax.CallOptions]{@link https://googleapis.github.io/gax-nodejs/interfaces/CallOptions.html} for the details. * @param {function(?Error)} [callback] * The function which will be called with the result of the API call. * @returns {Promise} - The promise which resolves when API call finishes. * The promise has a method named "cancel" which cancels the ongoing API call. * * @example * * const dialogflow = require('dialogflow'); * * const client = new dialogflow.v2.SessionEntityTypesClient({ * // optional auth parameters. * }); * * const formattedName = client.sessionEntityTypePath('[PROJECT]', '[SESSION]', '[ENTITY_TYPE]'); * client.deleteSessionEntityType({name: formattedName}).catch(err => { * console.error(err); * }); */ deleteSessionEntityType(request, options, callback) { if (options instanceof Function && callback === undefined) { callback = options; 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({ name: request.name, }); return this._innerApiCalls.deleteSessionEntityType( request, options, callback ); } // -------------------- // -- Path templates -- // -------------------- /** * Return a fully-qualified session resource name string. * * @param {String} project * @param {String} session * @returns {String} */ sessionPath(project, session) { return this._pathTemplates.sessionPathTemplate.render({ project: project, session: session, }); } /** * Return a fully-qualified session_entity_type resource name string. * * @param {String} project * @param {String} session * @param {String} entityType * @returns {String} */ sessionEntityTypePath(project, session, entityType) { return this._pathTemplates.sessionEntityTypePathTemplate.render({ project: project, session: session, entity_type: entityType, }); } /** * Parse the sessionName from a session resource. * * @param {String} sessionName * A fully-qualified path representing a session resources. * @returns {String} - A string representing the project. */ matchProjectFromSessionName(sessionName) { return this._pathTemplates.sessionPathTemplate.match(sessionName).project; } /** * Parse the sessionName from a session resource. * * @param {String} sessionName * A fully-qualified path representing a session resources. * @returns {String} - A string representing the session. */ matchSessionFromSessionName(sessionName) { return this._pathTemplates.sessionPathTemplate.match(sessionName).session; } /** * Parse the sessionEntityTypeName from a session_entity_type resource. * * @param {String} sessionEntityTypeName * A fully-qualified path representing a session_entity_type resources. * @returns {String} - A string representing the project. */ matchProjectFromSessionEntityTypeName(sessionEntityTypeName) { return this._pathTemplates.sessionEntityTypePathTemplate.match( sessionEntityTypeName ).project; } /** * Parse the sessionEntityTypeName from a session_entity_type resource. * * @param {String} sessionEntityTypeName * A fully-qualified path representing a session_entity_type resources. * @returns {String} - A string representing the session. */ matchSessionFromSessionEntityTypeName(sessionEntityTypeName) { return this._pathTemplates.sessionEntityTypePathTemplate.match( sessionEntityTypeName ).session; } /** * Parse the sessionEntityTypeName from a session_entity_type resource. * * @param {String} sessionEntityTypeName * A fully-qualified path representing a session_entity_type resources. * @returns {String} - A string representing the entity_type. */ matchEntityTypeFromSessionEntityTypeName(sessionEntityTypeName) { return this._pathTemplates.sessionEntityTypePathTemplate.match( sessionEntityTypeName ).entity_type; } } module.exports = SessionEntityTypesClient;