forked from jasonpan12/jpan-skills-kit-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills-kit-2.0.js
executable file
·660 lines (615 loc) · 22.8 KB
/
skills-kit-2.0.js
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
/**
* Copyright 2018 Box 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.
*/
/* External modules */
const BoxSDK = require('box-node-sdk');
const urlPath = require('box-node-sdk/lib/util/url-path');
const path = require('path');
const trimStart = require('lodash/trimStart');
const jimp = require('jimp');
const urlTemplate = require('url-template');
/* Constant values for writing cards to skill_invocations service */
const BASE_PATH = '/skill_invocations'; // Base path for all files endpoints
const SKILLS_SERVICE_TYPE = 'service';
const SKILLS_METADATA_CARD_TYPE = 'skill_card';
const SKILLS_METADATA_INVOCATION_TYPE = 'skill_invocation';
const sdk = new BoxSDK({
clientID: 'BoxSkillsClientId',
clientSecret: 'BoxSkillsClientSecret'
});
const BOX_API_ENDPOINT = 'https://api.box.com/2.0';
const MB_INTO_BYTES = 1048576;
const FileType = {
AUDIO: { name: 'AUDIO', representationType: '[mp3]' },
VIDEO: { name: 'VIDEO', representationType: '[mp4]' },
IMAGE: { name: 'IMAGE', representationType: '[jpg?dimensions=1024x1024]' },
DOCUMENT: { name: 'DOCUMENT', representationType: '[extracted_text]' }
};
const boxVideoFormats = [
'3g2',
'3gp',
'avi',
'flv',
'm2v',
'm2ts',
'm4v',
'mkv',
'mov',
'mp4',
'mpeg',
'mpg',
'ogg',
'mts',
'qt',
'ts',
'wmv'
];
const boxAudioFormats = ['aac', 'aif', 'aifc', 'aiff', 'amr', 'au', 'flac', 'm4a', 'mp3', 'ra', 'wav', 'wma'];
const boxImageFormats = [
'ai',
'bmp',
'gif',
'eps',
'heic',
'jpeg',
'jpg',
'png',
'ps',
'psd',
'svg',
'tif',
'tiff',
'dcm',
'dicm',
'dicom',
'svs',
'tga'
];
const getFileFormat = function getFileFormat(fileName) {
const fileExtension = path.extname(fileName).toLowerCase();
return trimStart(fileExtension, '.');
};
const getFileType = function getFileType(fileFormat) {
if (boxAudioFormats.includes(fileFormat)) return FileType.AUDIO.name;
else if (boxImageFormats.includes(fileFormat)) return FileType.IMAGE.name;
else if (boxVideoFormats.includes(fileFormat)) return FileType.VIDEO.name;
return FileType.DOCUMENT.name;
};
/** public enums */
const SkillsErrorEnum = {
FILE_PROCESSING_ERROR: 'skills_file_processing_error',
INVALID_FILE_SIZE: 'skills_invalid_file_size_error',
INVALID_FILE_FORMAT: 'skills_invalid_file_format_error',
INVALID_EVENT: 'skills_invalid_event_error',
NO_INFO_FOUND: 'skills_no_info_found',
INVOCATIONS_ERROR: 'skills_invocations_error',
EXTERNAL_AUTH_ERROR: 'skills_external_auth_error',
BILLING_ERROR: 'skills_billing_error',
UNKNOWN: 'skills_unknown_error'
};
/**
* FilesReader :- A helpful client to capture file related information from
* incoming Box Skills event and to access the file's content.
*
* API:-
* FilesReader.getFileContext () : JSON
* FilesReader.validateFormat (allowedFileFormatsList) : boolean
* FilesReader.validateSize (allowedMegabytesNum) : boolean
* async FilesReader.getContentBase64 () : string
* FilesReader.getContentStream () : stream
* async FilesReader.getBasicFormatFileURL () : string
* async FilesReader.getBasicFormatContentBase64 () : string
* FilesReader.getBasicFormatContentStream () : string
*
* Note: BasicFormat functions allows you to access your files stored in Box in
* another format, which may be more accepted by ML providers. The provided basic
* formats are Audio files→.mp3, Document/Image files→.jpeg . Video files→.mp4.
* Caution should be applied using BasicFormats for certain large files as it
* involves a time delay, and your skill code or skills-engine request may
* time out before the converted format is fetched.
*/
function FilesReader(body) {
const eventBody = JSON.parse(body);
this.requestId = eventBody.id;
this.skillId = eventBody.skill.id;
this.fileId = eventBody.source.id;
this.fileName = eventBody.source.name;
this.fileSize = eventBody.source.size;
this.fileParentId = eventBody.source.parent.id;
this.fileFormat = getFileFormat(this.fileName);
this.fileType = getFileType(this.fileFormat);
this.fileReadToken = eventBody.token.read.access_token;
this.fileWriteToken = eventBody.token.write.access_token;
this.fileReadClient = sdk.getBasicClient(this.fileReadToken);
this.fileDownloadURL = `${BOX_API_ENDPOINT}/files/${this.fileId}/content?access_token=${this.fileReadToken}`;
}
/**
* SkillsWriter :- A helpful class to write back Metadata Cards for
* Topics, Transcripts, Timelines, Errors and Statuses back to Box for
* any file for which a Skills Event is sent out.
*
* API:-
* SkillsWriter.createTopicsCard ( topicsDataList, optionalFileDuration, optionalCardTitle ) : DataCard json
* SkillsWriter.createTranscriptsCard ( transcriptsDataList, optionalFileDuration, optionalCardTitle ): DataCard json
* async SkillsWriter.createFacesCard ( facesDataList, optionalFileDuration, optionalCardTitle ) : DataCard json
* async SkillsWriter.saveProcessingCard ( optionalCallback ) : null
* async SkillsWriter.saveErrorCard ( error, optionalCustomMessage, optionalCallback ): null
* async SkillsWriter.saveDataCards ( listofDataCardJSONs, optionalCallback): null
*/
function SkillsWriter(fileContext) {
this.requestId = fileContext.requestId;
this.skillId = fileContext.skillId;
this.fileId = fileContext.fileId;
this.fileWriteClient = sdk.getBasicClient(fileContext.fileWriteToken);
}
/** FilesReader private functions */
/**
* reads a ReadStream into a buffer that it then converts to a string
* @param {Object} stream - read stream
* @return Promise - resolves to the string of information read from the stream
*/
const readStreamToString = function readStreamToString(stream) {
if (!stream || typeof stream !== 'object') {
throw new TypeError('Invalid Stream, must be a readable stream.');
}
return new Promise((resolve, reject) => {
const chunks = [];
stream.on('data', (chunk) => {
chunks.push(chunk);
});
stream.on('error', (err) => {
reject(err);
});
stream.on('end', () => {
resolve(Buffer.concat(chunks).toString('base64'));
});
});
};
/**
* Poll the representation info URL until representation is generated,
* then return content URL template.
* @param {BoxClient} client The client to use for making API calls
* @param {string} infoURL The URL to use for getting representation info
* @returns {Promise<string>} A promise resolving to the content URL template
*/
function pollRepresentationInfo(client, infoURL) {
return client.get(infoURL).then((response) => {
if (response.statusCode !== 200) {
console.error(`Unexpected response ${response}`);
}
const info = response.body;
switch (info.status.state) {
case 'success':
case 'viewable':
case 'error':
return info;
case 'none':
case 'pending':
return Promise.delay(1000).then(() => pollRepresentationInfo(client, infoURL));
default:
console.error(`Unknown representation status: ${info.status.state}`);
throw new Error(SkillsErrorEnum.FILE_PROCESSING_ERROR);
}
});
}
/** FilesReader public functions */
/**
* Returns a JSON containing fileId, fileName, fileFormat, fileType, fileSize, fileDownloadURL,
* fileReadToken, fileWriteToken, skillId, requestId for use in code.
*/
FilesReader.prototype.getFileContext = function getFileContext() {
return {
requestId: this.requestId,
skillId: this.skillId,
fileId: this.fileId,
fileName: this.fileName,
fileSize: this.fileSize,
fileFormat: this.fileFormat,
fileType: this.fileType,
fileDownloadURL: this.fileDownloadURL,
fileReadToken: this.fileReadToken,
fileWriteToken: this.fileWriteToken
};
};
/**
* Helper function to check if a given file is eligible to be processed by the
* skill as per the list of allowed formats.
*/
FilesReader.prototype.validateFormat = function validateFormat(allowedFileFormatsList) {
if (allowedFileFormatsList.includes(this.fileFormat)) return true;
console.error(`File format ${this.fileFormat} is not accepted by this skill`);
throw new Error(SkillsErrorEnum.INVALID_FILE_FORMAT);
};
/**
* Helper function to check if a given file is eligible to be processed by the skill as per the size limit.
*/
FilesReader.prototype.validateSize = function validateSize(allowedMegabytesNum) {
const fileSizeMB = this.fileSize / MB_INTO_BYTES;
if (fileSizeMB <= allowedMegabytesNum) return true;
console.error(`File size ${fileSizeMB} MB is over accepted limit of ${allowedMegabytesNum} MB`);
throw new Error(SkillsErrorEnum.INVALID_FILE_SIZE);
};
/**
* Returns a Read Stream to be passed to read file directly from box. Note:
* Some ML providers support passing file read streams.
*/
FilesReader.prototype.getContentStream = function getContentStream() {
return new Promise((resolve, reject) => {
this.fileReadClient.files.getReadStream(this.fileId, null, (error, stream) => {
if (error) {
reject(error);
} else {
resolve(stream);
}
});
});
};
/**
* Same as FilesReader.getFileContext().getContentBase64() but in BasicFormat
*/
FilesReader.prototype.getContentBase64 = function getContentBase64() {
return new Promise((resolve, reject) => {
this.getContentStream()
.then((stream) => {
resolve(readStreamToString(stream));
})
.then((content) => {
resolve(content);
})
.catch((e) => {
reject(e);
});
});
};
/**
* Same as FilesReader.getFileContext().fileDownloadURL but in BasicFormat
*/
FilesReader.prototype.getBasicFormatFileURL = function getBasicFormatFileURL() {
const options = { assetPath: '' };
return this.fileReadClient.files
.getRepresentationInfo(this.fileId, FileType[this.fileType].representationType)
.then((reps) => {
const repInfo = reps.entries.pop();
if (!repInfo) {
console.error('Could not get information for requested representation');
throw new Error(SkillsErrorEnum.FILE_PROCESSING_ERROR);
}
switch (repInfo.status.state) {
case 'success':
case 'viewable':
return repInfo.content.url_template;
case 'error':
console.error('Representation had error status');
throw new Error(SkillsErrorEnum.FILE_PROCESSING_ERROR);
case 'none':
case 'pending':
return pollRepresentationInfo(this.fileReadClient, repInfo.info.url).then((info) => {
if (info.status.state === 'error') {
console.error('Representation had error status');
throw new Error(SkillsErrorEnum.FILE_PROCESSING_ERROR);
}
return info.content.url_template;
});
default:
console.error(`Unknown representation status: ${repInfo.status.state}`);
throw new Error(SkillsErrorEnum.FILE_PROCESSING_ERROR);
}
})
.then(
(assetURLTemplate) =>
`${urlTemplate.parse(assetURLTemplate).expand({ asset_path: options.assetPath })}?access_token=${
this.fileReadToken
}`
);
};
/**
* Same as FilesReader.getFileContext().getContentStream() but in BasicFormat
*/
FilesReader.prototype.getBasicFormatContentStream = function getBasicFormatContentStream() {
return this.fileReadClient.files
.getRepresentationContent(this.fileId, FileType[this.fileType].representationType)
.catch((e) => {
if (e.statusCode === 401) {
throw new TypeError(
'The client provided is unauthorized. Client should have read access to the file passed'
);
}
throw e;
});
};
/*
* Same as FilesReader.getFileContext().getContentBase64() but in BasicFormat
*/
FilesReader.prototype.getBasicFormatContentBase64 = function getBasicFormatContentBase64() {
return new Promise((resolve, reject) => {
this.getBasicFormatContentStream()
.then((stream) => {
resolve(readStreamToString(stream));
})
.then((content) => {
resolve(content);
})
.catch((e) => {
reject(e);
});
});
};
/** SkillsWriter private enums */
const cardType = {
TRANSCRIPT: 'transcript',
TOPIC: 'keyword',
FACES: 'timeline',
STATUS: 'status',
ERROR: 'error'
};
const cardTitle = {
TRANSCRIPT: 'Transcript',
TOPIC: 'Topics',
FACES: 'Faces',
STATUS: 'Status',
ERROR: 'Error'
};
const usageUnit = {
FILES: 'files',
SECONDS: 'seconds',
PAGES: 'pages',
WORDS: 'words'
};
const skillInvocationStatus = {
INVOKED: 'invoked',
PROCESSING: 'processing',
TRANSIENT_FAILURE: 'transient_failure',
PERMANENT_FAILURE: 'permanent_failure',
SUCCESS: 'success'
};
/** SkillsWriter private functions */
/**
* validates if Enum value passed exists in the enums
*/
const validateEnum = function validateEnum(inputValue, enumName) {
for (const key in enumName) {
if (enumName[key] === inputValue) return true;
}
return false;
};
/**
* Validates if usage object is of allowed format: { unit: <usageUnit>, value: <Integer> }
*/
const validateUsage = function validateUsage(usage) {
return usage && validateEnum(usage.unit, usageUnit) && Number.isInteger(usage.value);
};
/**
* Private function to validate and update card template data to have expected fields
*/
const processCardData = function processCardData(cardData, duration) {
if (!cardData.text) throw new TypeError(`Missing required 'text' field in ${JSON.stringify(cardData)}`);
cardData.type = typeof cardData.image_url === 'string' ? 'image' : 'text';
if (duration && !(Array.isArray(cardData.appears) && cardData.appears.length > 0)) {
console.warn(
`Missing optional 'appears' field in ${JSON.stringify(cardData)} which is list of 'start' and 'end' fields`
);
}
};
/**
* Private function, for underlying call to saving data to skills invocation api
* Will add metadata cards to the file and log other values for analysis purposes
*
* API Endpoint: '/skill_invocations/:skillID'
* Method: PUT
*
* @param {BoxSDK} client Box SDK client to call skill invocations apiId
* @param {string} skillId id of the skill for the '/skill_invocations/:skillID' call
* @param {Object} body data to put
* @param {Function} callback (optional) called with updated metadata if successful
* @return {Promise<Object>} promise resolving to the updated metadata
*/
const putData = function putData(client, skillId, body, callback) {
const apiPath = urlPath(BASE_PATH, skillId);
const params = {
body,
headers: {
'Cache-Control': 'no-cache',
'Content-Type': 'application/json'
}
};
return client.wrapWithDefaultHandler(client.put)(apiPath, params, callback);
};
/** SkillsWriter public functions */
/**
* Public function to return a complete metadata card
*
* @param {string} type type of metadata card (status, transcript, etc.)
* @param {string} title title of metadata card (Status, Transcript, etc.)
* @param {Object} optionalStatus (optional) status object with code and message
* @param {Object} optionalEntries (optional) list of cards being saved
* @param {number} optionalfileDuration (optional) total duration of file in seconds
* @return {Object} metadata card template
*/
SkillsWriter.prototype.createMetadataCard = function createMetadataCard(
type,
title,
optionalStatus,
optionalEntries,
optionalfileDuration
) {
const status = optionalStatus || {};
const titleCode = `skills_${title.toLowerCase()}`.replace(' ', '_');
const template = {
created_at: new Date().toISOString(),
type: SKILLS_METADATA_CARD_TYPE, // skill_card
skill: {
type: SKILLS_SERVICE_TYPE, // service
id: this.skillId
},
skill_card_type: type,
skill_card_title: {
code: titleCode,
message: title
},
invocation: {
type: SKILLS_METADATA_INVOCATION_TYPE, // skill_invocation
id: this.requestId
},
status
};
if (optionalEntries) {
template.entries = optionalEntries;
}
if (optionalfileDuration) {
template.duration = parseFloat(optionalfileDuration);
}
return template;
};
SkillsWriter.prototype.createTopicsCard = function createTopicsCard(
topicsDataList,
optionalFileDuration,
optionalCardTitle
) {
topicsDataList.forEach((topic) => processCardData(topic, optionalFileDuration));
return this.createMetadataCard(
cardType.TOPIC,
optionalCardTitle || cardTitle.TOPIC,
{}, // Empty status value, since this is a data card
topicsDataList,
optionalFileDuration
);
};
SkillsWriter.prototype.createTranscriptsCard = function createTranscriptsCard(
transcriptsDataList,
optionalFileDuration,
optionalCardTitle
) {
transcriptsDataList.forEach((transcript) => processCardData(transcript, optionalFileDuration));
return this.createMetadataCard(
cardType.TRANSCRIPT,
optionalCardTitle || cardTitle.TRANSCRIPT,
{}, // Empty status value, since this is a data card
transcriptsDataList,
optionalFileDuration
);
};
SkillsWriter.prototype.createFacesCard = function createFacesCard(
facesDataList,
optionalFileDuration,
optionalCardTitle
) {
facesDataList.forEach((face) => processCardData(face, optionalFileDuration));
const cards = this.createMetadataCard(
cardType.FACES,
optionalCardTitle || cardTitle.FACES,
{}, // Empty status value, since this is a data card
facesDataList,
optionalFileDuration
);
const dataURIPromises = [];
for (let i = 0; i < facesDataList.length; i++) {
dataURIPromises.push(
jimp
.read(facesDataList[i].image_url)
.then((image) =>
// resize the image to be thumbnail size
image.resize(45, 45).getBase64Async(jimp.MIME_PNG)
)
// promise.all rejects if one of the promises in the array gets rejected,
// without considering whether or not the other promises have resolved.
// This is to make sure Promise.all continues evluating all promises inspite some rejections.
.catch(() => undefined)
);
}
return new Promise((resolve, reject) => {
Promise.all(dataURIPromises)
.then((dataURIs) => {
for (let i = 0; i < facesDataList.length; i++) {
facesDataList[i].image_url = dataURIs[i] || facesDataList[i].image_url;
}
resolve(cards);
})
.catch((error) => {
reject(error);
});
});
};
/**
* Shows UI card with message: "We're preparing to process your file. Please hold on!".
* This is used for temporarily letting your users know that your skill is under progress.
* You can pass an optionalCallback function to print or log success in your code once the
* card has been saved.
*/
SkillsWriter.prototype.saveProcessingCard = function saveProcessingCard(optionalCallback) {
const status = {
code: 'skills_pending_status',
message: "We're preparing to process your file. Please hold on!"
};
const statusCard = this.createMetadataCard(cardType.STATUS, cardTitle.STATUS, status);
return this.saveDataCards([statusCard], optionalCallback, skillInvocationStatus.PROCESSING);
};
/**
* Show UI card with error message. See Table: ErrorCode Enum for potential errorCode values,
* to notify user if any kind of failure occurs while running your skills code. Shows card as
* per the default message with each code, unless 'optionMessage' is provided. You can pass an
* optionalCallback function to print or log success in your code once the card has been saved.
*/
SkillsWriter.prototype.saveErrorCard = function saveErrorCard(
error,
optionalCustomErrorMessage,
optionalCallback,
optionalFailureType
) {
const failureType =
optionalFailureType === skillInvocationStatus.TRANSIENT_FAILURE
? optionalFailureType
: skillInvocationStatus.PERMANENT_FAILURE;
const errorCode = validateEnum(error, SkillsErrorEnum) ? error : SkillsErrorEnum.UNKNOWN;
let errorObj = { code: errorCode };
if (optionalCustomErrorMessage) {
errorObj = { code: 'custom_error', message: optionalCustomErrorMessage };
}
const errorCard = this.createMetadataCard(cardType.STATUS, cardTitle.ERROR, errorObj);
return this.saveDataCards([errorCard], optionalCallback, failureType);
};
/**
* Shows all the cards passed in listofDataCardJSONs which can be of formatted as Topics,Transcripts
* or Faces. Will override any existing pending or error status cards in the UI for that file version.
*/
const DEFAULT_USAGE = { unit: usageUnit.FILES, value: 1 };
SkillsWriter.prototype.saveDataCards = function saveDataCards(
listofDataCardJSONs,
optionalCallback,
optionalStatus,
optionalUsage
) {
const status = validateEnum(optionalStatus, skillInvocationStatus) ? optionalStatus : skillInvocationStatus.SUCCESS;
let usage = null;
if (status === skillInvocationStatus.SUCCESS) {
usage = validateUsage(optionalUsage) ? optionalUsage : DEFAULT_USAGE;
}
// create skill_invocations body
const body = {
status,
file: {
type: 'file',
id: this.fileId
},
metadata: {
cards: listofDataCardJSONs
},
usage
};
return putData(this.fileWriteClient, this.skillId, body, optionalCallback);
};
/* Exporting useful functions and enums from skills-kit plugin */
module.exports = {
FilesReader,
SkillsWriter,
SkillsErrorEnum
};