-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3537 from GoogleCloudPlatform/search
feat: add search document sample code
- Loading branch information
Showing
2 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** Copyright 2023 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 | ||
* | ||
* http://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'; | ||
async function main( | ||
projectNumber = 'YOUR_PROJECT_NUMBER', | ||
location = 'YOUR_PROJECT_LOCATION', | ||
userId = 'user:[email protected]', | ||
documentQueryText = 'YOUR_DOCUMENT_QUERY' | ||
) { | ||
// [START contentwarehouse_search_documents] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
* const projectNumber = 'YOUR_PROJECT_NUMBER'; | ||
* const location = 'YOUR_PROJECT_LOCATION'; // Format is 'us' or 'eu' | ||
* const userId = 'user:[email protected]'; // Format is "user:[email protected]" | ||
* const documentQueryText = 'YOUR_DOCUMENT_QUERY' | ||
*/ | ||
|
||
// Import from google cloud | ||
const {DocumentServiceClient} = require('@google-cloud/contentwarehouse').v1; | ||
|
||
// Create service client | ||
const serviceClient = new DocumentServiceClient(); | ||
|
||
// Get Document Schema | ||
async function searchDocuments() { | ||
// Initialize request argument(s) | ||
const searchRequest = { | ||
// The full resource name of the location, e.g.: | ||
// projects/{project_number}/locations/{location} | ||
parent: `projects/${projectNumber}/locations/${location}`, | ||
|
||
// Document Text Query | ||
documentQuery: { | ||
query: documentQueryText, | ||
// File Type Filter | ||
fileTypeFilter: { | ||
fileType: 'DOCUMENT', | ||
}, | ||
}, | ||
|
||
// Histogram Query | ||
histogramQueries: [ | ||
{ | ||
histogramQuery: 'count("DocumentSchemaId")', | ||
}, | ||
], | ||
requestMetadata: {userInfo: {id: userId}}, | ||
}; | ||
|
||
// Make Request | ||
const response = serviceClient.searchDocuments(searchRequest); | ||
|
||
// Print out response | ||
response.then( | ||
result => console.log(`Document Found: ${JSON.stringify(result)}`), | ||
error => console.log(`${error}`) | ||
); | ||
} | ||
|
||
// [END contentwarehouse_search_documents] | ||
await searchDocuments(); | ||
} | ||
|
||
main(...process.argv.slice(2)).catch(err => { | ||
console.error(err); | ||
process.exitCode = 1; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ const iamClient = new PoliciesClient(); | |
const projectClient = new ProjectsClient(); | ||
|
||
const confirmationCreate = 'Document Created'; | ||
const confirmationFound = 'Document Found'; | ||
|
||
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'}); | ||
|
||
|
@@ -32,6 +33,7 @@ describe('Document tests', () => { | |
const location = 'us'; | ||
const userId = | ||
'user:[email protected]'; | ||
const queryText = 'sample'; | ||
|
||
async function getProjectNumber() { | ||
const projectId = await iamClient.getProjectId(); | ||
|
@@ -53,4 +55,12 @@ describe('Document tests', () => { | |
|
||
assert(output.startsWith(confirmationCreate)); | ||
}); | ||
|
||
it('should search and find a document', async () => { | ||
const output = execSync( | ||
`node search-document.js ${projectNumber} ${location} ${userId} ${queryText}` | ||
); | ||
|
||
assert(output.startsWith(confirmationFound)); | ||
}); | ||
}); |