Skip to content

Commit

Permalink
Merge pull request #3537 from GoogleCloudPlatform/search
Browse files Browse the repository at this point in the history
feat: add search document sample code
  • Loading branch information
paulinawins authored Oct 10, 2023
2 parents 4549a3e + 26b1e5d commit 04b4247
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 0 deletions.
81 changes: 81 additions & 0 deletions document-warehouse/search-document.js
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;
});
10 changes: 10 additions & 0 deletions document-warehouse/test/document.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'});

Expand All @@ -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();
Expand All @@ -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));
});
});

0 comments on commit 04b4247

Please sign in to comment.