forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinspect.js
More file actions
505 lines (446 loc) · 14.6 KB
/
Copy pathinspect.js
File metadata and controls
505 lines (446 loc) · 14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
/**
* Copyright 2017, Google, Inc.
* 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';
const fs = require('fs');
const mime = require('mime');
const Buffer = require('safe-buffer').Buffer;
function inspectString (string, minLikelihood, maxFindings, infoTypes, includeQuote) {
// [START inspect_string]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');
// Instantiates a client
const dlp = DLP();
// The string to inspect
// const string = 'My name is Gary and my email is gary@example.com';
// The minimum likelihood required before returning a match
// const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
// The maximum number of findings to report (0 = server maximum)
// const maxFindings = 0;
// The infoTypes of information to match
// const infoTypes = [{ name: 'US_MALE_NAME', name: 'US_FEMALE_NAME' }];
// Whether to include the matching string
// const includeQuote = true;
// Construct items to inspect
const items = [{ type: 'text/plain', value: string }];
// Construct request
const request = {
inspectConfig: {
infoTypes: infoTypes,
minLikelihood: minLikelihood,
maxFindings: maxFindings,
includeQuote: includeQuote
},
items: items
};
// Run request
dlp.inspectContent(request)
.then((response) => {
const findings = response[0].results[0].findings;
if (findings.length > 0) {
console.log(`Findings:`);
findings.forEach((finding) => {
if (includeQuote) {
console.log(`\tQuote: ${finding.quote}`);
}
console.log(`\tInfo type: ${finding.infoType.name}`);
console.log(`\tLikelihood: ${finding.likelihood}`);
});
} else {
console.log(`No findings.`);
}
})
.catch((err) => {
console.log(`Error in inspectString: ${err.message || err}`);
});
// [END inspect_string]
}
function inspectFile (filepath, minLikelihood, maxFindings, infoTypes, includeQuote) {
// [START inspect_file]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');
// Instantiates a client
const dlp = DLP();
// The path to a local file to inspect. Can be a text, JPG, or PNG file.
// const fileName = 'path/to/image.png';
// The minimum likelihood required before returning a match
// const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
// The maximum number of findings to report (0 = server maximum)
// const maxFindings = 0;
// The infoTypes of information to match
// const infoTypes = [{ name: 'US_MALE_NAME' }, { name: 'US_FEMALE_NAME' }];
// Whether to include the matching string
// const includeQuote = true;
// Construct file data to inspect
const fileItems = [{
type: mime.lookup(filepath) || 'application/octet-stream',
data: Buffer.from(fs.readFileSync(filepath)).toString('base64')
}];
// Construct request
const request = {
inspectConfig: {
infoTypes: infoTypes,
minLikelihood: minLikelihood,
maxFindings: maxFindings,
includeQuote: includeQuote
},
items: fileItems
};
// Run request
dlp.inspectContent(request)
.then((response) => {
const findings = response[0].results[0].findings;
if (findings.length > 0) {
console.log(`Findings:`);
findings.forEach((finding) => {
if (includeQuote) {
console.log(`\tQuote: ${finding.quote}`);
}
console.log(`\tInfo type: ${finding.infoType.name}`);
console.log(`\tLikelihood: ${finding.likelihood}`);
});
} else {
console.log(`No findings.`);
}
})
.catch((err) => {
console.log(`Error in inspectFile: ${err.message || err}`);
});
// [END inspect_file]
}
function promiseInspectGCSFile (bucketName, fileName, minLikelihood, maxFindings, infoTypes) {
// [START inspect_gcs_file_promise]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');
// Instantiates a client
const dlp = DLP();
// The name of the bucket where the file resides.
// const bucketName = 'YOUR-BUCKET';
// The path to the file within the bucket to inspect.
// Can contain wildcards, e.g. "my-image.*"
// const fileName = 'my-image.png';
// The minimum likelihood required before returning a match
// const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
// The maximum number of findings to report (0 = server maximum)
// const maxFindings = 0;
// The infoTypes of information to match
// const infoTypes = [{ name: 'US_MALE_NAME' }, { name: 'US_FEMALE_NAME' }];
// Get reference to the file to be inspected
const storageItems = {
cloudStorageOptions: {
fileSet: { url: `gs://${bucketName}/${fileName}` }
}
};
// Construct REST request body for creating an inspect job
const request = {
inspectConfig: {
infoTypes: infoTypes,
minLikelihood: minLikelihood,
maxFindings: maxFindings
},
storageConfig: storageItems
};
// Create a GCS File inspection job and wait for it to complete (using promises)
dlp.createInspectOperation(request)
.then((createJobResponse) => {
const operation = createJobResponse[0];
// Start polling for job completion
return operation.promise();
})
.then((completeJobResponse) => {
// When job is complete, get its results
const jobName = completeJobResponse[0].name;
return dlp.listInspectFindings({
name: jobName
});
})
.then((results) => {
const findings = results[0].result.findings;
if (findings.length > 0) {
console.log(`Findings:`);
findings.forEach((finding) => {
console.log(`\tInfo type: ${finding.infoType.name}`);
console.log(`\tLikelihood: ${finding.likelihood}`);
});
} else {
console.log(`No findings.`);
}
})
.catch((err) => {
console.log(`Error in promiseInspectGCSFile: ${err.message || err}`);
});
// [END inspect_gcs_file_promise]
}
function eventInspectGCSFile (bucketName, fileName, minLikelihood, maxFindings, infoTypes) {
// [START inspect_gcs_file_event]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');
// Instantiates a client
const dlp = DLP();
// The name of the bucket where the file resides.
// const bucketName = 'YOUR-BUCKET';
// The path to the file within the bucket to inspect.
// Can contain wildcards, e.g. "my-image.*"
// const fileName = 'my-image.png';
// The minimum likelihood required before returning a match
// const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
// The maximum number of findings to report (0 = server maximum)
// const maxFindings = 0;
// The infoTypes of information to match
// const infoTypes = [{ name: 'US_MALE_NAME' }, { name: 'US_FEMALE_NAME' }];
// Get reference to the file to be inspected
const storageItems = {
cloudStorageOptions: {
fileSet: { url: `gs://${bucketName}/${fileName}` }
}
};
// Construct REST request body for creating an inspect job
const request = {
inspectConfig: {
infoTypes: infoTypes,
minLikelihood: minLikelihood,
maxFindings: maxFindings
},
storageConfig: storageItems
};
// Create a GCS File inspection job, and handle its completion (using event handlers)
// Promises are used (only) to avoid nested callbacks
dlp.createInspectOperation(request)
.then((createJobResponse) => {
const operation = createJobResponse[0];
return new Promise((resolve, reject) => {
operation.on('complete', (completeJobResponse) => {
return resolve(completeJobResponse);
});
// Handle changes in job metadata (e.g. progress updates)
operation.on('progress', (metadata) => {
console.log(`Processed ${metadata.processedBytes} of approximately ${metadata.totalEstimatedBytes} bytes.`);
});
operation.on('error', (err) => {
return reject(err);
});
});
})
.then((completeJobResponse) => {
const jobName = completeJobResponse.name;
return dlp.listInspectFindings({
name: jobName
});
})
.then((results) => {
const findings = results[0].result.findings;
if (findings.length > 0) {
console.log(`Findings:`);
findings.forEach((finding) => {
console.log(`\tInfo type: ${finding.infoType.name}`);
console.log(`\tLikelihood: ${finding.likelihood}`);
});
} else {
console.log(`No findings.`);
}
})
.catch((err) => {
console.log(`Error in eventInspectGCSFile: ${err.message || err}`);
});
// [END inspect_gcs_file_event]
}
function inspectDatastore (projectId, namespaceId, kind, minLikelihood, maxFindings, infoTypes, includeQuote) {
// [START inspect_datastore]
// Imports the Google Cloud Data Loss Prevention library
const DLP = require('@google-cloud/dlp');
// Instantiates a client
const dlp = DLP();
// (Optional) The project ID containing the target Datastore
// const projectId = process.env.GCLOUD_PROJECT;
// (Optional) The ID namespace of the Datastore document to inspect.
// To ignore Datastore namespaces, set this to an empty string ('')
// const namespaceId = '';
// The kind of the Datastore entity to inspect.
// const kind = 'Person';
// The minimum likelihood required before returning a match
// const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
// The maximum number of findings to report (0 = server maximum)
// const maxFindings = 0;
// The infoTypes of information to match
// const infoTypes = [{ name: 'US_MALE_NAME' }, { name: 'US_FEMALE_NAME' }];
// Get reference to the file to be inspected
const storageItems = {
datastoreOptions: {
partitionId: {
projectId: projectId,
namespaceId: namespaceId
},
kind: {
name: kind
}
}
};
// Construct request for creating an inspect job
const request = {
inspectConfig: {
infoTypes: infoTypes,
minLikelihood: minLikelihood,
maxFindings: maxFindings
},
storageConfig: storageItems
};
// Run inspect-job creation request
dlp.createInspectOperation(request)
.then((createJobResponse) => {
const operation = createJobResponse[0];
// Start polling for job completion
return operation.promise();
})
.then((completeJobResponse) => {
// When job is complete, get its results
const jobName = completeJobResponse[0].name;
return dlp.listInspectFindings({
name: jobName
});
})
.then((results) => {
const findings = results[0].result.findings;
if (findings.length > 0) {
console.log(`Findings:`);
findings.forEach((finding) => {
console.log(`\tInfo type: ${finding.infoType.name}`);
console.log(`\tLikelihood: ${finding.likelihood}`);
});
} else {
console.log(`No findings.`);
}
})
.catch((err) => {
console.log(`Error in inspectDatastore: ${err.message || err}`);
});
// [END inspect_datastore]
}
const cli = require(`yargs`) // eslint-disable-line
.demand(1)
.command(
`string <string>`,
`Inspect a string using the Data Loss Prevention API.`,
{},
(opts) => inspectString(
opts.string,
opts.minLikelihood,
opts.maxFindings,
opts.infoTypes,
opts.includeQuote
)
)
.command(
`file <filepath>`,
`Inspects a local text, PNG, or JPEG file using the Data Loss Prevention API.`,
{},
(opts) => inspectFile(
opts.filepath,
opts.minLikelihood,
opts.maxFindings,
opts.infoTypes,
opts.includeQuote
)
)
.command(
`gcsFilePromise <bucketName> <fileName>`,
`Inspects a text file stored on Google Cloud Storage using the Data Loss Prevention API and the promise pattern.`,
{},
(opts) => promiseInspectGCSFile(
opts.bucketName,
opts.fileName,
opts.minLikelihood,
opts.maxFindings,
opts.infoTypes
)
)
.command(
`gcsFileEvent <bucketName> <fileName>`,
`Inspects a text file stored on Google Cloud Storage using the Data Loss Prevention API and the event-handler pattern.`,
{},
(opts) => eventInspectGCSFile(
opts.bucketName,
opts.fileName,
opts.minLikelihood,
opts.maxFindings,
opts.infoTypes
)
)
.command(
`datastore <kind>`,
`Inspect a Datastore instance using the Data Loss Prevention API.`,
{
projectId: {
type: 'string',
alias: 'p',
default: process.env.GCLOUD_PROJECT
},
namespaceId: {
type: 'string',
alias: 'n',
default: ''
}
},
(opts) => inspectDatastore(opts.projectId, opts.namespaceId, opts.kind, opts.minLikelihood, opts.maxFindings, opts.infoTypes, opts.includeQuote)
)
.option('m', {
alias: 'minLikelihood',
default: 'LIKELIHOOD_UNSPECIFIED',
type: 'string',
choices: [
'LIKELIHOOD_UNSPECIFIED',
'VERY_UNLIKELY',
'UNLIKELY',
'POSSIBLE',
'LIKELY',
'VERY_LIKELY'
],
global: true
})
.option('f', {
alias: 'maxFindings',
default: 0,
type: 'number',
global: true
})
.option('q', {
alias: 'includeQuote',
default: true,
type: 'boolean',
global: true
})
.option('l', {
alias: 'languageCode',
default: 'en-US',
type: 'string',
global: true
})
.option('t', {
alias: 'infoTypes',
default: [],
type: 'array',
global: true,
coerce: (infoTypes) => infoTypes.map((type) => {
return { name: type };
})
})
.example(`node $0 string "My phone number is (123) 456-7890 and my email address is me@somedomain.com"`)
.example(`node $0 file resources/test.txt`)
.example(`node $0 gcsFilePromise my-bucket my-file.txt`)
.example(`node $0 gcsFileEvent my-bucket my-file.txt`)
.wrap(120)
.recommendCommands()
.epilogue(`For more information, see https://cloud.google.com/dlp/docs. Optional flags are explained at https://cloud.google.com/dlp/docs/reference/rest/v2beta1/content/inspect#InspectConfig`);
if (module === require.main) {
cli.help().strict().argv; // eslint-disable-line
}