Skip to content

DLP: Added sample for inspect string with exclusion dict #3200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 127 additions & 0 deletions dlp/inspectStringWithExclusionDict.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
// 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';

// sample-metadata:
// title: Inspects strings omit overlapping.
// description: Inspect a string for sensitive data excluding a list of words.
// usage: node inspectStringWithExclusionDict.js my-project string infoTypes excludedWords

function main(projectId, string, infoTypes, excludedWords) {
[infoTypes, excludedWords] = transformCLI(infoTypes, excludedWords);
// [START dlp_inspect_string_with_exclusion_dict]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');

// Instantiates a client
const dlp = new DLP.DlpServiceClient();

// The project ID to run the API call under
// const projectId = 'my-project';

// The string to inspect
// const string = 'Some email addresses: [email protected], [email protected]';

// The infoTypes of information to match
// const infoTypes = [{ name: 'EMAIL_ADDRESS' }];

// Words to exclude
// const excludedWords = ['[email protected]'];

async function inspectStringWithExclusionDict() {
// Specify the type and content to be inspected.
const item = {
byteItem: {
type: DLP.protos.google.privacy.dlp.v2.ByteContentItem.BytesType
.TEXT_UTF8,
data: Buffer.from(string, 'utf-8'),
},
};

// Exclude matches from the specified excludedWords.
const exclusionRule = {
dictionary: {
wordList: {
words: excludedWords,
},
},
matchingType:
DLP.protos.google.privacy.dlp.v2.MatchingType.MATCHING_TYPE_FULL_MATCH,
};

// Construct a ruleset that applies the exclusion rule to the specified infotype.
const ruleSet = [
{
infoTypes: infoTypes,
rules: [
{
exclusionRule: exclusionRule,
},
],
},
];

// Construct the configuration for the Inspect request, including the ruleset.
const inspectConfig = {
infoTypes: infoTypes,
ruleSet: ruleSet,
includeQuote: true,
};

// Construct the Inspect request to be sent by the client.
const request = {
parent: `projects/${projectId}/locations/global`,
inspectConfig: inspectConfig,
item: item,
};

// Use the client to send the API request.
const [response] = await dlp.inspectContent(request);

// Print Findings
const findings = response.result.findings;
if (findings.length > 0) {
console.log(`Findings: ${findings.length}\n`);
findings.forEach(finding => {
console.log(`InfoType: ${finding.infoType.name}`);
console.log(`\tQuote: ${finding.quote}`);
console.log(`\tLikelihood: ${finding.likelihood} \n`);
});
} else {
console.log('No findings.');
}
}
inspectStringWithExclusionDict();
// [END dlp_inspect_string_with_exclusion_dict]
}

process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});

main(...process.argv.slice(2));

function transformCLI(infoTypes, excludedWords) {
infoTypes = infoTypes
? infoTypes.split(',').map(type => {
return {name: type};
})
: undefined;

excludedWords = excludedWords ? excludedWords.split(',') : [];

return [infoTypes, excludedWords];
}
21 changes: 21 additions & 0 deletions dlp/system-test/inspect.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,4 +478,25 @@ describe('inspect', () => {
}
assert.include(output, 'INVALID_ARGUMENT');
});

// dlp_inspect_string_with_exclusion_dict
it('should inspect using exclusion word list', () => {
const output = execSync(
`node inspectStringWithExclusionDict.js ${projectId} "Some email addresses: [email protected], [email protected]" EMAIL_ADDRESS "[email protected]"`
);
assert.match(output, /Quote: [email protected]/);
assert.notMatch(output, /Quote: [email protected]/);
});

it('should report any errors while inspecting a string', () => {
let output;
try {
output = execSync(
`node inspectStringWithExclusionDict.js ${projectId} "Some email addresses: [email protected], [email protected]" BAD_TYPE "[email protected]"`
);
} catch (err) {
output = err.message;
}
assert.include(output, 'INVALID_ARGUMENT');
});
});