This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
handlefileupload.js
92 lines (78 loc) · 2.55 KB
/
handlefileupload.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
/**
* Copyright 2015 IBM Corp. All Rights Reserved.
*
* 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
*
* https://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.
*/
/* global $ */
'use strict';
var display = require('./views/displaymetadata');
var initSocket = require('./socket').initSocket;
exports.handleFileUpload = function(type, token, model, file, contentType, callback, onend) {
// Set currentlyDisplaying to prevent other sockets from opening
localStorage.setItem('currentlyDisplaying', type);
$.subscribe('progress', function(evt, data) {
console.log('progress: ', data);
});
console.log('contentType', contentType);
var baseString = '';
var baseJSON = '';
$.subscribe('showjson', function() {
var $resultsJSON = $('#resultsJSON');
$resultsJSON.val(baseJSON);
});
var keywords = display.getKeywordsToSearch();
var keywords_threshold = keywords.length == 0 ? null : 0.01;
var options = {};
options.token = token;
options.message = {
'action': 'start',
'content-type': contentType,
'interim_results': true,
'continuous': true,
'word_confidence': true,
'timestamps': true,
'max_alternatives': 3,
'inactivity_timeout': 600,
'word_alternatives_threshold': 0.001,
'keywords_threshold': keywords_threshold,
'keywords': keywords,
'smart_formatting': true
};
options.model = model;
function onOpen() {
console.log('Socket opened');
}
function onListening(socket) {
console.log('Socket listening');
callback(socket);
}
function onMessage(msg) {
if (msg.results) {
// Convert to closure approach
baseString = display.showResult(msg, baseString, model);
baseJSON = JSON.stringify(msg, null, 2);
display.showJSON(baseJSON);
}
}
function onError(evt) {
localStorage.setItem('currentlyDisplaying', 'false');
onend(evt);
console.log('Socket err: ', evt.code);
}
function onClose(evt) {
localStorage.setItem('currentlyDisplaying', 'false');
onend(evt);
console.log('Socket closing: ', evt);
}
initSocket(options, onOpen, onListening, onMessage, onError, onClose);
};