-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreader.js
More file actions
129 lines (97 loc) · 2.37 KB
/
reader.js
File metadata and controls
129 lines (97 loc) · 2.37 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
var lineReader = require('line-reader');
var fs = require('fs');
var PersonalityInsightsV3 = require('watson-developer-cloud/personality-insights/v3');
var config = require('./config/credentials.json');
var pi = config.personalityInsights;
var personality_insights = new PersonalityInsightsV3({"username": pi.username, "password": pi.password, version_date: '2016-10-19'});
var index=0;
var characters = [
'ELIZA',
'BURR',
'LAURENS',
'JEFFERSON',
'MADISON',
'HAMILTON',
// 'COMPANY',
'WASHINGTON',
// 'WOMEN',
// 'MEN',
'MULLIGAN',
'LAFAYETTE',
'PHILIP',
'PEGGY',
'SCHUYLER SISTERS',
'SEABURY',
// 'FEMALE',
'KING GEORGE',
'ENSEMBLE',
'ANGELICA',
'LEE',
'EAKER',
'MARIA',
'JAMES',
'DOCTOR'
]
var lines = [];
var combinedData = [];
var CHANGE = false;
var CURRENTCHARACTER = 'BURR';
function checkCharacter(line) {
var CHANGE = false;
for (var c = 0; c < characters.length; c++) {
if (line.includes(characters[c])) {
CURRENTCHARACTER = characters[c];
CHANGE = true;
if (lines[CURRENTCHARACTER] === undefined) {
lines[CURRENTCHARACTER] = '';
}
break;
}
}
return {change: CHANGE, character: CURRENTCHARACTER};
}
function personality(callback){
var filename = characters[index] + '.txt';
var text = lines[characters[index]];
personality_insights.profile({
text: text,
consumption_preferences: true
}, function(err, response) {
if (err) {
// console.log('error:', err);
} else {
console.log(filename);
response.character = characters[index];
combinedData.push(response);
index = index + 1;
if( index < characters.length ){
fs.writeFile('hamilton.json', JSON.stringify(combinedData), function(err) {
if (err) {
return console.log(err);
}
})
personality();
}
}
});
}
function counter(){
index = index + 1;
if( index < characters.length ){
personality();
}
}
lineReader.eachLine('show.txt', function(line, last) {
// console.log(line);
// do whatever you want with line..
var cue = checkCharacter(line);
if (cue.change === false) {
lines[CURRENTCHARACTER] = lines[CURRENTCHARACTER] + ' ' + line;
}
if (last) {
// or check if it's the last one
// console.log(lines['HAMILTON']);
index = 0;
personality()
}
});