forked from osmlab/name-suggestion-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
match_wikiTags.js
318 lines (270 loc) · 10.2 KB
/
match_wikiTags.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
const clearConsole = require('clear');
const colors = require('colors/safe');
const fetch = require('node-fetch');
const fileTree = require('./lib/file_tree');
const stemmer = require('./lib/stemmer');
const wdk = require('wikidata-sdk');
const MAXCHOICE = 6; // max number of choices to consider
let brands = fileTree.read('brands');
let _resolve = function() { };
let _keypress = function() { };
// process keypresses - https://stackoverflow.com/a/12506613/7620
let stdin = process.stdin;
stdin.setRawMode(true);
stdin.resume();
stdin.setEncoding('utf8');
stdin.on('data', key => _keypress(key));
// start matching
let _enTags = false;
let _toMatch = getKeysToMatch();
let _total = _toMatch.length;
if (!_total) {
console.log('Nothing to match');
process.exit();
}
let _direction = 1; // 1 forward, -1 backward
let _captureKeypress = false;
let _searchString;
let _currIndex = 0;
let _currKey;
nextMatch();
function getKeysToMatch() {
let tryMatch = {};
let seen = {};
Object.keys(brands).forEach(k => {
// if `brand:wikidata` or `brand:wikipedia` tags are missing or look wrong..
const wd = brands[k].tags['brand:wikidata'];
if (!wd || !/^Q\d+$/.test(wd)) {
tryMatch[k] = true;
}
const wp = brands[k].tags['brand:wikipedia'];
if (!wp || !/^[a-z_]{2,}:[^_]*$/.test(wp)) {
tryMatch[k] = true;
}
// ...but skip if the name appears to be a duplicate
const stem = stemmer(k.split('|', 2)[1]);
const other = seen[stem];
if (other) {
delete tryMatch[k];
delete tryMatch[other];
}
seen[stem] = k;
});
return Object.keys(tryMatch);
}
function nextMatch() {
_currIndex = clamp(_currIndex, 0, _toMatch.length - 1);
_currKey = _toMatch[_currIndex];
clearConsole();
console.log(colors.yellow.bold(`[${_currIndex+1}/${_total}]: ${_currKey}`));
const name = _currKey.split('|', 2)[1];
const lang = 'en';
const searchURL = wdk.searchEntities({
search: name, lang: lang, limit: MAXCHOICE, format: 'json', uselang: 'en'
});
let choices = [];
fetch(searchURL)
.then(response => response.json())
.then(result => {
if (!result.search.length) {
throw new Error(`"${name}" not found`);
}
let queue = [];
result.search.forEach((entity, index) => {
choices.push(entity);
entity.lang = lang;
queue.push(
fetch(wdk.sparqlQuery(instancesSPARQL(entity)))
.then(response => response.json())
.then(result => getInstances(result, entity))
.catch(e => console.error(colors.red(e)))
);
queue.push(
fetch(wdk.sparqlQuery(sitelinkSPARQL(entity)))
.then(response => response.json())
.then(result => getSitelink(result, entity))
.catch(e => console.error(colors.red(e)))
);
});
return Promise.all(queue);
})
.then(() => showResults(choices))
.catch(e => {
console.error(colors.red(e));
_currIndex = _currIndex + _direction;
})
.then(nextMatch);
}
function showResults(choices) {
clearConsole();
console.log(colors.yellow.bold(`[${_currIndex+1}/${_total}]: ${_currKey}`));
// only keep choices with wikidata and wikipedia tags
choices = choices.filter(entity => entity.id && entity.sitelink);
if (!choices.length) {
throw new Error(`Wiki tags not found`);
}
let keymap = {};
choices.forEach((entity, index) => {
let key = '' + (index + 1);
keymap[key] = entity;
console.log(
colors.blue.bold(`\n\'${key}\': `),
colors.green(`Matched: ${entity.label} (${entity.id})`)
);
if (entity.description) {
console.log(` "${entity.description}"`);
}
if (entity.instances) {
console.log(` instance of: [${entity.instances}]`);
}
if (entity.article) {
console.log(` article: ${entity.article}`);
}
console.log(colors.magenta(` brand:wikidata = ${entity.id}`));
console.log(colors.magenta(` brand:wikipedia = ${entity.sitelink}`));
if (_enTags) {
console.log(colors.magenta(` brand:en = ${entity.label}`));
console.log(colors.magenta(` name:en = ${entity.label}`));
}
});
const enStatus = _enTags ? 'ON' : 'OFF';
console.log();
console.log(colors.blue.bold(`']': Next name`));
console.log(colors.blue.bold(`'[': Previous name`));
console.log(colors.blue.bold(`'}': Skip to next tag`));
console.log(colors.blue.bold(`'{': Skip to previous tag`));
console.log(colors.blue.bold(`'/': Search for a key`));
console.log(colors.blue.bold(`'e': Toggle 'en:' tags (currently ${enStatus})`));
console.log(colors.blue.bold(`'q': Quit`));
console.log(colors.blue.bold(`\nChoose: `));
_keypress = function(key) {
if (key === '\u0003') { // ctrl-c (end of text)
console.log('');
process.exit();
}
if (_captureKeypress) {
if (key === '\r') { // return
_captureKeypress = false;
let origIndex = _currIndex;
let k;
let match;
do {
_currIndex = (_currIndex === _toMatch.length - 1) ? 0 : _currIndex + 1;
k = _toMatch[_currIndex];
match = k.toLowerCase().includes(_searchString.toLowerCase());
} while (!match && _currIndex !== origIndex);
if (match) {
_direction = 1;
_resolve();
} else {
console.log(`\n"${_searchString}" not found.`);
console.log(colors.blue.bold(`\nChoose: `));
}
} else { // capture search string
_searchString += key;
process.stdout.write(key); // echo
}
return;
}
if (key === 'q') { // Quit
console.log('');
process.exit();
} else if (key === ']' || key === ' ') { // Next
_direction = 1;
_currIndex++;
_resolve();
} else if (key === '[') { // Previous
_direction = -1;
_currIndex--;
_resolve();
} else if (key === '}') { // Skip to next tag
let t1 = _currKey.split('|', 2)[0];
let t2 = t1;
while (t2 === t1) { // increment past end of current tag
_currIndex = (_currIndex === _toMatch.length - 1) ? 0 : _currIndex + 1;
let k2 = _toMatch[_currIndex];
t2 = k2.split('|', 2)[0];
}
_direction = 1;
_resolve();
} else if (key === '{') { // Skip to previous tag
let t1 = _currKey.split('|', 2)[0];
let t2 = t1;
while (t2 === t1) { // decrement past beginning of current tag
_currIndex = (_currIndex === 0) ? _toMatch.length - 1 : _currIndex - 1;
let k2 = _toMatch[_currIndex];
t2 = k2.split('|', 2)[0];
}
t1 = t2;
while (t2 === t1) { // decrement past beginning of previous tag
_currIndex = (_currIndex === 0) ? _toMatch.length - 1 : _currIndex - 1;
let k2 = _toMatch[_currIndex] || '';
t2 = k2.split('|', 2)[0];
}
// increment once
_currIndex = (_currIndex === _toMatch.length - 1) ? 0 : _currIndex + 1;
_direction = -1;
_resolve();
} else if (key === '/') { // start watching for search string
process.stdout.write('\nSearch? ');
_captureKeypress = true;
_searchString = '';
} else if (key === 'e') { // Toggle en: tags
_enTags = !_enTags;
_resolve();
} else if (key === '?') { // ? - just refresh the screen
_resolve();
} else if (keymap[key]) { // Pressed a number for a choice
// update tags
let entity = keymap[key];
let obj = brands[_currKey];
obj.tags['brand:wikidata'] = entity.id;
obj.tags['brand:wikipedia'] = entity.sitelink;
if (_enTags) {
obj.tags['brand:en'] = entity.label;
obj.tags['name:en'] = entity.label;
}
fileTree.write('brands', brands); // save updates
_direction = 1;
_currIndex++;
_resolve();
}
}
return new Promise(resolve => { _resolve = resolve; });
}
function getInstances(result, entity) {
const results = (result.results && result.results.bindings) || [];
const instances = results.map(obj => obj.isaLabel.value);
if (instances.length) {
entity.instances = instances.join(', ');
}
}
function getSitelink(result, entity) {
const results = (result.results && result.results.bindings) || [];
const article = results.length && results[0].article.value;
if (article) {
let page = decodeURIComponent(article).split('/').pop().replace(/\_/g, ' ');
entity.article = article;
entity.sitelink = entity.lang + ':' + page;
}
}
function instancesSPARQL(entity) {
return `SELECT ?isa ?isaLabel WHERE {
wd:${entity.id} wdt:P31 ?isa.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}`;
}
function sitelinkSPARQL(entity) {
return `SELECT ?article WHERE {
?article schema:about wd:${entity.id};
schema:isPartOf <https://${entity.lang}.wikipedia.org/>.
}`;
}
//
// Clamp a number between min and max
//
function clamp(num, min, max) {
return Math.min(Math.max(num, min), max);
}