-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
229 lines (196 loc) · 5.33 KB
/
index.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
var WordPOS = require('wordpos');
var wordpos = new WordPOS();
var compact = require('lodash.compact');
var contains = require('lodash.contains');
var queue = require('queue-async');
var defaultProbable = require('probable');
var getSpatialPreposition = require('get-spatial-preposition');
function createFuckShitUp({ probable, customModifiers }) {
var modifierLists;
if (customModifiers) {
modifierLists = customModifiers;
} else {
modifierLists = require('./modifiers');
}
if (!probable) {
probable = defaultProbable;
}
function getModifier(targetType) {
var modifier;
if (targetType === 'adverbish') {
modifier = probable.pickFromArray(
modifierLists.modifiersForAdverbishTargets
);
} else if (targetType === 'noun') {
modifier = probable.pickFromArray(modifierLists.modifiersForNounTargets);
} else {
modifier = probable.pickFromArray(modifierLists.modifiers);
}
return modifier;
}
return function fuckShitUp(sentence, done) {
var pieces = compact(sentence.split(/[\s]/g));
var q = queue(4);
pieces.forEach(queueGetPOS);
function queueGetPOS(piece) {
q.defer(adaptedGetPOS, piece);
}
q.awaitAll(buildNewSentenceFromPOS);
function buildNewSentenceFromPOS(error, partsOfSpeech) {
// getPOS never returns an error, so no need to check that.
partsOfSpeech.forEach(compactDict);
done(
null,
buildParallelSentence(probable, pieces, partsOfSpeech, getModifier)
);
}
};
}
function adaptedGetPOS(text, callback) {
wordpos.getPOS(text, posDone);
function posDone(result) {
var prep = getSpatialPreposition(text);
if (prep) {
result.spatialPrepositions = [prep];
}
callback(null, result);
}
}
function compactDict(dict) {
for (var key in dict) {
if (!dict[key] || (Array.isArray(dict[key]) && dict[key].length === 0)) {
delete dict[key];
}
}
return dict;
}
function buildParallelSentence(probable, pieces, posReports, getModifier) {
// console.log(posReports);
var newPieces = [];
var prefixedLastIteration = false;
var targetType;
var prefixTwoInARow = probable.roll(3) === 0;
var skipTheFirstOpportunity = probable.roll(3) === 3;
for (var i = 0; i < pieces.length; ++i) {
var posReport = posReports[i];
var piece = pieces[i];
var needToCapitalize = false;
if (probablyStartOfSentence(pieces, i)) {
needToCapitalize = isCapitalized(piece);
}
if (
(!prefixedLastIteration || prefixTwoInARow) &&
(i !== 0 || !skipTheFirstOpportunity) &&
shouldPrefix(posReport, piece)
) {
targetType = undefined;
if (
(posReport.adverbs || posReport.spatialPrepositions) &&
!posReport.nouns &&
!posReport.adjectives &&
!posReport.verbs
) {
targetType = 'adverbish';
} else if (
posReport.nouns &&
!posReport.adjectives &&
!posReport.verbs &&
!posReport.adverbs
) {
targetType = 'noun';
}
var modifier = getModifier(targetType);
if (
!repeatsThePreviousPiece(modifier, newPieces) &&
modifier.toLowerCase() !== piece.toLowerCase()
) {
if (hasNoLowerCase(piece)) {
modifier = modifier.toUpperCase();
// Leave ALL CAPS pieces ALL CAPS. Make the modifier match.
} else if (needToCapitalize) {
// Capitalize the modifier, lower case the original piece.
modifier = titleCaseWord(modifier);
piece = piece.toLowerCase();
}
newPieces.push(modifier);
prefixedLastIteration = true;
}
} else {
prefixedLastIteration = false;
}
newPieces.push(piece);
}
return newPieces.join(' ');
}
var badBets = [
'i',
'may',
'there',
'he',
'she',
'but',
'and',
'oh',
'o',
'oh',
'now',
'in',
'so',
'on',
'not',
'it',
'as',
'us',
'will',
];
badBets = badBets.concat(badBets.map(titleCaseWord));
function titleCaseWord(word) {
return word.charAt(0).toUpperCase() + word.substr(1).toLowerCase();
}
var posTypes = [
'verbs',
'adverbs',
'nouns',
'adjectives',
'spatialPrepositions',
];
function shouldPrefix(posReport, piece) {
function partOfSpeechIsGoodInReport(pos) {
return posReport[pos] && !contains(badBets, posReport[pos][0]);
}
var posIsGood = posTypes.some(partOfSpeechIsGoodInReport);
return posIsGood && !isAStageDirection(piece);
}
function isAStageDirection(fragment) {
return fragment.indexOf('[') !== -1 && fragment.indexOf(']') !== -1;
}
function isCapitalized(fragment) {
return fragment && fragment[0].match(/[A-Z]/);
}
function hasNoLowerCase(fragment) {
return fragment.toUpperCase() === fragment;
}
var endPunctuation = ['.', '?', '!'];
function probablyStartOfSentence(pieces, index) {
var probablyStart = false;
if (index === 0) {
probablyStart = true;
} else if (pieces.length > 1) {
var previousPiece = pieces[index - 1];
if (previousPiece.length > 1) {
if (contains(endPunctuation, previousPiece[previousPiece.length - 1])) {
probablyStart = true;
}
}
}
return probablyStart;
}
function repeatsThePreviousPiece(modifier, pieces) {
return (
pieces.length > 0 &&
pieces[pieces.length - 1].toLowerCase() === modifier.toLowerCase()
);
}
module.exports = {
create: createFuckShitUp,
};