-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.js
303 lines (263 loc) · 7.06 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
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
'use strict'
const { parseUrl, isMediaUrl, isPdfUrl } = require('@metascraper/helpers')
const timeSpan = require('@kikobeats/time-span')()
const debug = require('debug-logfmt')('html-get')
const { execSync } = require('child_process')
const { writeFile } = require('fs/promises')
const PCancelable = require('p-cancelable')
const { AbortError } = require('p-retry')
const htmlEncode = require('html-encode')
const crypto = require('crypto')
const $ = require('tinyspawn')
const path = require('path')
const got = require('got')
const os = require('os')
const autoDomains = require('./auto-domains')
const addHtml = require('./html')
const REQ_TIMEOUT = 8000
const ABORT_TYPES = ['image', 'stylesheet', 'font']
const fetch = PCancelable.fn(
async (
url,
{
getTemporalFile,
mutoolPath,
reflect = false,
timeout = REQ_TIMEOUT,
toEncode,
...opts
},
onCancel
) => {
const reqTimeout = reflect ? timeout / 2 : timeout
const req = got(url, {
...opts,
timeout: reqTimeout,
responseType: 'buffer'
})
onCancel.shouldReject = false
onCancel(() => {
debug('fetch:cancel', { url, reflect })
req.cancel()
})
const redirects = []
req.on('redirect', res =>
redirects.push({ statusCode: res.statusCode, url: res.url })
)
try {
const res = await req
const html = await (async () => {
const contentType = res.headers['content-type'] ?? ''
if (mutoolPath && contentType === 'application/pdf') {
const file = getTemporalFile(url, 'pdf')
await writeFile(file.path, res.body)
return (await $(`${mutoolPath} draw -q -F html ${file.path}`)).stdout
}
return contentType.startsWith('text/html') || !isMediaUrl(url)
? await toEncode(res.body, res.headers['content-type'])
: res.body.toString()
})()
return {
headers: res.headers,
html,
mode: 'fetch',
url: res.url,
statusCode: res.statusCode,
redirects
}
} catch (error) {
debug('fetch:error', { url, message: error.message || error, reflect })
return reflect
? { isRejected: true, error }
: {
url,
html: '',
mode: 'fetch',
headers: error.response ? error.response.headers : {},
statusCode: error.response ? error.response.statusCode : undefined,
redirects
}
}
}
)
const prerender = PCancelable.fn(
async (
url,
{
abortTypes = ABORT_TYPES,
getBrowserless,
gotOpts,
headers,
timeout = REQ_TIMEOUT,
toEncode,
...opts
},
onCancel
) => {
let fetchRes
let data = {}
let isFetchResRejected = false
onCancel(() => fetchRes.cancel())
try {
fetchRes = fetch(url, {
reflect: true,
toEncode,
...gotOpts,
headers,
timeout
})
const browserless = await getBrowserless()
const getPayload = browserless.evaluate(
async (page, response) => {
if (!response) throw new AbortError('empty response')
return {
headers: response.headers(),
html: await page.content(),
mode: 'prerender',
url: response.url(),
statusCode: response.status(),
redirects: response
.request()
.redirectChain()
.map(req => ({
statusCode: req.response().status(),
url: req.url()
}))
}
},
{
timeout,
headers,
abortTypes
}
)
const payload = await getPayload(url, opts)
await fetchRes.cancel()
debug('prerender', { url, state: 'success' })
return payload
} catch (err) {
const { isRejected, ...dataProps } = await fetchRes
debug('prerender:error', {
url,
isRejected,
error: err.message
})
isFetchResRejected = isRejected
data = dataProps
}
return isFetchResRejected
? {
headers: data.headers || {},
html: '',
url,
mode: 'prerender'
}
: data
}
)
const modes = { fetch, prerender }
const isFetchMode = url => {
const parsedUrl = parseUrl(url)
return autoDomains.some(conditions =>
conditions.every(([prop, value]) => parsedUrl[prop] === value)
)
}
const defaultGetMode = (url, { prerender }) => {
if (prerender === false || isMediaUrl(url) || isPdfUrl(url)) return 'fetch'
if (prerender === true) return 'prerender'
return isFetchMode(url) ? 'fetch' : 'prerender'
}
const defaultGetTemporalFile = (url, ext) => {
const hash = crypto.createHash('sha256').update(url).digest('hex')
const filepath = path.join(
os.tmpdir(),
ext === undefined ? hash : `${hash}.${ext}`
)
return { path: filepath }
}
const defaultMutoolPath = () =>
(() => {
try {
return execSync('which mutool', { stdio: 'pipe' }).toString().trim()
} catch (_) {}
})()
const getContent = PCancelable.fn(
(
url,
mode,
{
getBrowserless,
getTemporalFile,
gotOpts,
headers,
mutoolPath,
puppeteerOpts,
rewriteUrls,
rewriteHtml,
toEncode
},
onCancel
) => {
const isFetchMode = mode === 'fetch'
const fetchOpts = isFetchMode
? { headers, toEncode, mutoolPath, getTemporalFile, ...gotOpts }
: { headers, toEncode, getBrowserless, gotOpts, ...puppeteerOpts }
const promise = modes[mode](url, fetchOpts)
onCancel(() => promise.cancel())
return promise.then(content => {
const html = addHtml({
...content,
...(isFetchMode ? puppeteerOpts : undefined),
rewriteUrls,
rewriteHtml
})
return { ...content, html }
})
}
)
module.exports = PCancelable.fn(
async (
targetUrl,
{
encoding = 'utf-8',
getBrowserless,
getMode = defaultGetMode,
getTemporalFile = defaultGetTemporalFile,
gotOpts,
headers,
mutoolPath = defaultMutoolPath(),
prerender = 'auto',
puppeteerOpts,
rewriteUrls = false,
rewriteHtml = false
} = {},
onCancel
) => {
if (!getBrowserless && prerender !== false) {
throw TypeError(
"Need to provide a `getBrowserless` function. Try to pass `getBrowserless: require('browserless')`"
)
}
const toEncode = htmlEncode(encoding)
const reqMode = getMode(targetUrl, { prerender })
const duration = timeSpan()
const promise = getContent(targetUrl, reqMode, {
getBrowserless,
getTemporalFile,
gotOpts,
headers,
mutoolPath,
puppeteerOpts,
rewriteUrls,
rewriteHtml,
toEncode
})
onCancel(() => promise.cancel())
const { mode, ...payload } = await promise
return Object.assign(payload, { stats: { mode, timing: duration() } })
}
)
module.exports.REQ_TIMEOUT = REQ_TIMEOUT
module.exports.ABORT_TYPES = ABORT_TYPES
module.exports.isFetchMode = isFetchMode
module.exports.getContent = getContent