forked from mendix/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgolia.js
323 lines (281 loc) · 9.8 KB
/
algolia.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
319
320
321
322
323
const path = require('path');
const _ = require('lodash');
const cheerio = require('cheerio');
const Promise = require('bluebird');
const yamlFront = require('yaml-front-matter');
const YAML = require('yamljs');
const algoliasearch = require('algoliasearch');
const moment = require('moment');
const { isFile, getFiles, readHtmlFiles, gulpErr, readSourceFiles } = require('./helpers');
const commandLineHelpers = require('./helpers/command_line');
const log = commandLineHelpers.log('algolia');
let SOURCEFOLDER = null,
TARGETFOLDER = null,
SPACES = null;
const DEBUG = !!process.env.DEBUG;
if (DEBUG) {
log('Debugging enabled, will not push to Algolia');
}
let spacesObj = {};
let indexedNum = 0;
let index = [];
const releaseNotesRegExp = /\/releasenotes\/desktop-modeler\/(\d+)?(\.\d+)?\.?(\*|\d+)$/i;
const getSourceFiles = files => {
spacesObj = YAML.load(SPACES);
return new Promise((resolve, reject) => {
const raw = _.map(files, file => {
file.basePath = file.path.replace(TARGETFOLDER, '');
const parsed = path.parse(file.basePath),
base = path.join(SOURCEFOLDER, parsed.dir, parsed.name),
dirName = parsed.dir.split('/')[1];
if (!!dirName && spacesObj[dirName]) {
file.url = path.join(parsed.dir, parsed.name);
file.slug = parsed.name;
file.space = spacesObj[dirName];
if (isFile(base + '.md')) {
file.sourcePath = base + '.md';
} else if (isFile(base + '.html')) {
file.sourcePath = base + '.html';
}
if (file.url && file.url.match(releaseNotesRegExp)) {
const versionRaw = file.url.replace(releaseNotesRegExp, '$1');
const num = parseInt(versionRaw, 10);
if (!isNaN(num)) {
file.mendix_version = num;
}
}
}
return file;
});
files = _.filter(raw, file => !!file.sourcePath);
resolve(files);
})
}
const parseSourceFiles = files =>
readSourceFiles(files, (file, contents, resolve) => {
file.source = contents.toString();
try {
file.meta = yamlFront.loadFront(contents);
} catch(e) {
console.log(e);
}
resolve(file);
});
// ******************** ALGOLIA HELPERS ***********************
// These are copied from https://github.com/algolia/algoliasearch-jekyll/blob/master/lib/record_extractor.rb and rewritten in Javascript
//
const nodeName = node => node && node[0] ? (node[0].tagName || node[0].name).toLowerCase() : null;
const isHeading = node => ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].indexOf(nodeName(node)) !== -1;
const compareHeading = (nodeName1, nodeName2) => parseInt(nodeName1.replace('h', ''), 10) - parseInt(nodeName2.replace('h', ''), 10);
const nodeCssSelector = node => {
if (node === null) return null;
if (typeof node.attr('id') !== 'undefined') {
// Made a change here because ID's in release-notes contain numbers in the ID. Need a proper ID to use in search
// return '#' + node.attr('id').replace(/-[0-9]+$/,'');
return '#' + node.attr('id');
}
return nodeName(node);
};
const nodeHeadingParent = ($, node, level) => {
let lvl = level || 'h7';
if (lvl === 'h7' && isHeading(node)) {
lvl = nodeName(node);
}
let prev = $(node).prev();
if (!(prev[0] && prev[0].name)) {
let parent = $(node).parent();
if (!parent || nodeName(parent) === 'body') return null;
return nodeHeadingParent($, parent, lvl);
}
if (isHeading(prev) && compareHeading(nodeName(prev), lvl) < 0) {
return prev;
}
return nodeHeadingParent($, prev, lvl);
};
const nodeHierarchy = ($, node, state) => {
let newState = state || { level: 7 };
const tag_name = nodeName(node);
let level = parseInt(tag_name.replace('h', ''), 10);
if (isHeading(node) && level < state.level) {
newState[tag_name] = node.text();
newState.level = level;
}
const heading = nodeHeadingParent($, node);
if (heading === null) {
delete(newState['level'])
return newState;
}
return nodeHierarchy($, heading, newState);
};
const uniqueHierarchy = (data) => {
const headings = ['title', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
return _.chain(headings).map(heading => data[heading]).compact().value().join(' > ');
};
const weightHeadingRelevance = data => {
const title_words = _.chain(['title', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'])
.map(h => data[h])
.map(s => s ? s.split(/[^\w]+/g) : '')
.flatten()
.compact()
.map(s => s.toLowerCase())
.uniq()
.value();
const text_words = _.uniq(data.text.toLowerCase().split(/[^\w]+/g));
return _.intersection(title_words, text_words).length;
};
const weightTagName = data => {
const tagName = data['tag_name'];
return ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].indexOf(tagName) !== -1 ? 100 - parseInt(tagName.replace('h', ''), 10) * 10 : 0;
};
const weight = (item, index) => {
return {
tag_name: weightTagName(item),
heading_relevance: weightHeadingRelevance(item),
position: index
};
};
// ******************** END ALGOLIA HELPERS ***********************
const parseHtmlFile = file => {
return new Promise((resolve, reject) => {
if (file.meta && file.meta.nosearch) {
log(`Skipping file ${file.basePath}`);
} else if (file.content && file.meta && file.meta.title) {
const $ = cheerio.load(file.content);
const updateTime = $('meta[property="og:updated_time"]').attr('content');
if (updateTime) {
const m = moment(updateTime, 'YYYY-DD-MMTHH:mm:ssZZ');
// @ts-ignore
if (m._isValid) {
file.meta.time_stamp = m.unix();
} else {
file.meta.time_stamp = null;
}
} else {
file.meta.time_stamp = null;
}
$('article').find('.todo').each((i, el) => {
var $el = $(el);
$el.remove();
})
$('article').find('p,li').each((i, el) => {
var $el = $(el);
if (!!$el.text().length && file.space.space) {
let item = _.merge(
_.omit(_.clone(file.meta), '__content'), {
space: file.space.space,
type : 'page',
text : $el.text(),
tag_name : nodeName($el),
url: file.url,
slug: file.slug
}, nodeHierarchy($, $el));
item.unique_hierarchy = uniqueHierarchy(item);
item.css_selector = `${nodeName($el)}:nth-of-type(${i + 1})`;
item.css_selector_parent = nodeCssSelector(nodeHeadingParent($, $el));
item.weight = weight(item, i);
item.mendix_version = file.space.mendix_version || null;
if (typeof file.mendix_version !== 'undefined') {
item.mendix_version = file.mendix_version;
}
index.push(item);
indexedNum++;
if (indexedNum % 1000 === 0) {
log(`Items indexed: ${indexedNum}`);
}
}
});
}
delete(file.content);
resolve(file);
})
}
const parseHtmlFiles = files => {
log(`Mapping ${files.length} files`);
return Promise.all(_.map(files, file => parseHtmlFile(file)));
};
const indexFiles = (opts) => {
SOURCEFOLDER = opts.source;
TARGETFOLDER = opts.target;
SPACES = opts.spacesFile;
log(`Indexing html in ${TARGETFOLDER}`);
getFiles(TARGETFOLDER)
.then(readHtmlFiles)
.then(getSourceFiles)
.then(parseSourceFiles)
.then(parseHtmlFiles)
.then(() => {
if (process.env.ALGOLIA_WRITE_KEY && opts.algolia_index && opts.algolia_app_id) {
log(`Indexed ${index.length} items`);
if (DEBUG) {
return;
}
const client = algoliasearch(opts.algolia_app_id, process.env.ALGOLIA_WRITE_KEY, {
timeout: 60000
});
const algoliaIndex = client.initIndex(opts.algolia_index);
log(`Create settings for ${opts.algolia_index}`);
algoliaIndex.setSettings({
'distinct': true,
'attributeForDistinct': 'url',
'attributesForFaceting': [
'tags',
'type',
'title',
'space'
],
'attributesToIndex': [
'title',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
'unordered(text)',
'unordered(tags)'
],
'attributesToRetrieve': null,
'customRanking': [
'desc(mendix_version)',
'desc(time_stamp)',
'desc(weight.tag_name)',
'asc(weight.position)'
],
'highlightPreTag': '<span class="algolia__result-highlight">',
'highlightPostTag': '</span>'
}, (setIndexErr, setIndexContent) => {
if (setIndexErr) {
log(`error creating index settings for: ${opts.algolia_index}`);
throw setIndexErr;
} else {
log(`Settings set for ${opts.algolia_index}, clearing objects`);
//console.log(setIndexContent);
algoliaIndex.clearIndex((clearIndexErr, clearIndexContent) => {
if (clearIndexErr) {
log(`error clearing objects!`);
throw clearIndexErr;
} else {
log(`${opts.algolia_index}, cleared, adding objects`);
//log(`${clearIndexContent}`);
algoliaIndex.addObjects(index, (uploadErr, uploadContents) => {
if (uploadErr) {
log(`error adding objects!`);
throw uploadErr;
} else {
log(`Objects added to ${opts.algolia_index}`);
//console.log(uploadContents);
opts.cb();
}
});
}
})
}
});
} else {
log(`Indexed ${indexedNum} items, not doing anything with it right now (ALGOLIA_WRITE_KEY is missing)`);
opts.cb();
}
})
.catch(err => {
gulpErr('algolia', err);
//throw err;
});
};
module.exports = {
run: indexFiles
};