-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.js
103 lines (95 loc) · 2.61 KB
/
lib.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
const stream = require("stream");
module.exports = streamToGoogleQuery;
function streamToGoogleQuery({
inputStream = process.stdin,
maximumNumberOfSentences = 5,
minimumLengthOfSentence = 50,
outputStream = process.stdout,
prefix = 'open "https://www.google.com/search?q=',
raw = false,
suffix = '"'
}) {
process.stdout.on("error", () => {});
return inputStream
.pipe(tokenizeSentences({ raw }))
.pipe(mergeAllSentences())
.pipe(filterByMinimumLength({ minimumLengthOfSentence }))
.pipe(splitArrayIntoParts({ maximumNumberOfSentences }))
.pipe(selectOneRandomly())
.pipe(toCommands({ prefix, raw, suffix }))
.pipe(outputStream);
}
function tokenizeSentences({ raw }) {
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
const possibleSentences = [];
chunk
.toString(encoding)
.split(/[:.!?\n]+/)
.forEach(sentence => {
const maybeSentence = (raw ? sentence : sentence.replace(/[^a-zäöüß\- ]/gi, "")).trim();
if (maybeSentence !== "") {
possibleSentences.push(maybeSentence);
}
});
this.push(possibleSentences);
cb();
}
});
}
function mergeAllSentences() {
let chunks = [];
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
chunks = chunks.concat(chunk);
cb();
},
flush(cb) {
this.push(chunks);
cb();
}
});
}
function filterByMinimumLength({ minimumLengthOfSentence }) {
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
this.push(chunk.filter(str => minimumLengthOfSentence <= str.length));
cb();
}
});
}
function splitArrayIntoParts({ maximumNumberOfSentences }) {
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
const splitEvery = Math.max(chunk.length / maximumNumberOfSentences, 1);
for (let i = 0; i * splitEvery < chunk.length; i++) {
const from = Math.floor(i * splitEvery);
const to = Math.floor((i + 1) * splitEvery);
this.push(chunk.slice(from, to));
}
cb();
}
});
}
function selectOneRandomly() {
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
this.push(chunk[Math.floor(Math.random() * chunk.length)]);
cb();
}
});
}
function toCommands({ prefix, raw, suffix }) {
return new stream.Transform({
objectMode: true,
transform(chunk, encoding, cb) {
this.push(`${prefix}${raw ? chunk : encodeURIComponent(chunk)}${suffix}\n`);
cb();
}
});
}