-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
56 lines (44 loc) · 1.24 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
const path = require('path');
const lunr = require('lunr');
const esql = require('sql-extra');
var corpus = null;
var index = null;
function createIndex() {
return lunr(function() {
this.ref('code');
this.field('code');
this.field('group');
this.field('tags');
this.pipeline.remove(lunr.stopWordFilter);
for (var r of corpus.values())
this.add(r);
});
}
function load() {
if (corpus) return corpus;
corpus = require('./corpus');
index = createIndex();
ready = true;
return corpus;
}
function csv() {
return path.join(__dirname, 'index.csv');
}
function sql(tab='groups', opt={}) {
return esql.setupTable(tab, {code: 'TEXT', group: 'TEXT', entries: 'INT', tags: 'TEXT'}, load().values(),
Object.assign({pk: 'code', index: true, tsvector: {code: 'A', group: 'B', tags: 'C'}}, opt));
}
function groups(txt) {
if (!corpus) load();
var a = [], txt = txt.replace(/\W/g, ' ');
var ms = index.search(txt), max = 0;
for (var m of ms)
max = Math.max(max, Object.keys(m.matchData.metadata).length);
for (var m of ms)
if (Object.keys(m.matchData.metadata).length===max) a.push(corpus.get(m.ref));
return a;
}
groups.load = load;
groups.csv = csv;
groups.sql = sql;
module.exports = groups;