forked from rachmari/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-records.js
82 lines (72 loc) · 3.04 KB
/
build-records.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
#!/usr/bin/env node
import eventToPromise from 'event-to-promise'
import chalk from 'chalk'
import dotenv from 'dotenv'
import parsePageSectionsIntoRecords from './parse-page-sections-into-records.js'
import getPopularPages from './popular-pages.js'
import languages from '../../lib/languages.js'
import domwaiter from '../domwaiter.js'
const pageMarker = chalk.green('|')
const recordMarker = chalk.grey('.')
const port = 4002
dotenv.config()
// These defaults are known to work fine in GitHub Actions.
// For local development, you can override these in your local .env file.
// For example:
// echo 'BUILD_RECORDS_MAX_CONCURRENT=20' >> .env
// echo 'BUILD_RECORDS_MIN_TIME=50' >> .env
const MAX_CONCURRENT = parseInt(process.env.BUILD_RECORDS_MAX_CONCURRENT || '200', 10)
const MIN_TIME = parseInt(process.env.BUILD_RECORDS_MIN_TIME || '5', 10)
export default async function buildRecords(
indexName,
indexablePages,
pageVersion,
languageCode,
redirects,
config = {}
) {
const { noMarkers } = config
console.log(`\n\nBuilding records for index '${indexName}' (${languages[languageCode].name})`)
const records = []
const pages = indexablePages
// exclude pages that are not in the current language
.filter((page) => page.languageCode === languageCode)
// exclude pages that don't have a permalink for the current product version
.filter((page) => page.permalinks.some((permalink) => permalink.pageVersion === pageVersion))
// Find the approve permalink for the given language and GitHub product variant (dotcom v enterprise)
const permalinks = pages
.map((page) => {
return page.permalinks.find((permalink) => {
return permalink.languageCode === languageCode && permalink.pageVersion === pageVersion
})
})
.map((permalink) => {
permalink.url = `http://localhost:${port}${permalink.href}`
return permalink
})
const popularPages = await getPopularPages(redirects)
console.log('indexable pages', indexablePages.length)
console.log('pages in index', pages.length)
console.log('permalinks in index', permalinks.length)
console.log(pageMarker, 'denotes pages')
console.log(recordMarker, 'denotes records derived from sections of pages')
console.log('popular page ratios', Object.keys(popularPages).length)
const hasPopularPages = Object.keys(popularPages).length > 0
const waiter = domwaiter(permalinks, { maxConcurrent: MAX_CONCURRENT, minTime: MIN_TIME })
.on('page', (page) => {
if (!noMarkers) process.stdout.write(pageMarker)
const newRecord = parsePageSectionsIntoRecords(page)
const pathArticle = page.relativePath.replace('/index.md', '').replace('.md', '')
const popularity = (hasPopularPages && popularPages[pathArticle]) || 0.0
newRecord.popularity = popularity
if (!noMarkers) process.stdout.write(recordMarker)
records.push(newRecord)
})
.on('error', (err) => {
console.error(err)
})
return eventToPromise(waiter, 'done').then(() => {
console.log('\nrecords in index: ', records.length)
return records
})
}