-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateSearch.js
163 lines (134 loc) · 4.58 KB
/
generateSearch.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
'use strict';
let config;
try {
config = require('../.config.js');
} finally {
if (!config || !config.uri) {
console.error('No Config or config.URI given, please create a .config.js file with those values in the root of the repository');
process.exit(-1);
}
}
const cheerio = require('cheerio');
const filemap = require('../docs/source');
const fs = require('fs');
const pug = require('pug');
const mongoose = require('../');
let { version } = require('../package.json');
const { marked: markdown } = require('marked');
const highlight = require('highlight.js');
markdown.setOptions({
highlight: function(code) {
return highlight.highlight(code, { language: 'JavaScript' }).value;
}
});
// 5.13.5 -> 5.x, 6.8.2 -> 6.x, etc.
version = version.slice(0, version.indexOf('.')) + '.x';
const contentSchema = new mongoose.Schema({
title: { type: String, required: true },
body: { type: String, required: true },
url: { type: String, required: true },
version: { type: String, required: true, default: version }
});
contentSchema.index({ title: 'text', body: 'text' });
const Content = mongoose.model('Content', contentSchema, 'Content');
const contents = [];
const api = require('../docs/source/api');
// API docs are special, because they are not added to the file-map individually currently and use different properties
for (const _class of api.docs) {
for (const prop of _class.props) {
const content = new Content({
title: `API: ${prop.name}`,
body: prop.description,
url: `api/${_class.fileName}.html#${prop.anchorId}`
});
const err = content.validateSync();
if (err != null) {
console.error(content);
throw err;
}
contents.push(content);
}
}
for (const [filename, file] of Object.entries(filemap)) {
if (file.markdown) {
let text = fs.readFileSync(filename, 'utf8');
text = markdown.parse(text);
const content = new Content({
title: file.title,
body: text,
url: filename.replace('.md', '.html').replace(/^docs/, '')
});
content.validateSync();
const $ = cheerio.load(text);
contents.push(content);
// Break up individual h3's into separate content for more fine grained search
$('h3').each((index, el) => {
el = $(el);
const title = el.text();
const html = el.nextUntil('h3').html();
const content = new Content({
title: `${file.title}: ${title}`,
body: html,
url: `${filename.replace('.md', '.html').replace(/^docs/, '')}#${el.prop('id')}`
});
content.validateSync();
contents.push(content);
});
} else if (file.guide) {
let text = fs.readFileSync(filename, 'utf8');
text = text.substr(text.indexOf('block content') + 'block content\n'.length);
text = pug.render(`div\n${text}`, { filters: { markdown }, filename });
const content = new Content({
title: file.title,
body: text,
url: filename.replace('.pug', '.html').replace(/^docs/, '')
});
content.validateSync();
const $ = cheerio.load(text);
contents.push(content);
// Break up individual h3's into separate content for more fine grained search
$('h3').each((index, el) => {
el = $(el);
const title = el.text();
const html = el.nextUntil('h3').html();
const content = new Content({
title: `${file.title}: ${title}`,
body: html,
url: `${filename.replace('.pug', '.html').replace(/^docs/, '')}#${el.prop('id')}`
});
content.validateSync();
contents.push(content);
});
}
}
run().catch(async error => {
console.error(error.stack);
// ensure the script exists in case of error
await mongoose.disconnect();
});
async function run() {
await mongoose.connect(config.uri, { dbName: 'mongoose', serverSelectionTimeoutMS: 5000 });
// wait for the index to be created
await Content.init();
await Content.deleteMany({ version });
for (const content of contents) {
if (version === '7.x') {
let url = content.url.startsWith('/') ? content.url : `/${content.url}`;
if (!url.startsWith('/docs')) {
url = '/docs' + url;
}
content.url = url;
} else {
const url = content.url.startsWith('/') ? content.url : `/${content.url}`;
content.url = `/docs/${version}/docs${url}`;
}
await content.save();
}
const results = await Content.
find({ $text: { $search: 'validate' }, version }, { score: { $meta: 'textScore' } }).
sort({ score: { $meta: 'textScore' } }).
limit(10);
console.log(results.map(res => res.url));
console.log(`Added ${contents.length} Content`);
process.exit(0);
}