-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfreeze-dry.ts
298 lines (271 loc) · 10.8 KB
/
freeze-dry.ts
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
/* global window */
import { flatOptions } from './package'
import type { FreezeDryConfig, ProcessSubresourceRecurse } from './types'
import type { SubresourceLink } from './resource'
import {
blobToDataUrl,
setLinkTarget,
setMementoTags,
setContentSecurityPolicy,
setCharsetDeclaration,
} from './util'
import { Resource, DomCloneResource } from './resource'
/**
* Freeze-dry an HTML Document.
*
* Technically, this function is a convenience wrapper that instantiates and runs a {@link
* FreezeDryer} instance. Use that class instead if you need more control; for example to access the
* incomplete result before `freezeDry` finishes, or to obtain it as a `Document` or `Blob` rather
* than a string.
*
* @example
* Simplest use case:
* ```
* const html = await freezeDry()
* ```
*
* With options:
*
* ```
* const html = await freezeDry(document, { timeout: 5000 })
* ```
*
* @param document - Document to be freeze-dried. Remains unmodified. Defaults to `window.document`.
* @param options - Options to customise freezeDry’s behaviour. See {@link FreezeDryConfig}.
* @returns The freeze-dried document as a self-contained, static HTML string.
*
* @category Main
*/
export async function freezeDry(
document: Document = typeof window !== 'undefined' && window.document || fail('No document given to freeze-dry'),
options: Partial<FreezeDryConfig> = {},
): Promise<string> {
const freezeDryer = await new FreezeDryer(document, options).run()
const html = freezeDryer.result.string
return html
}
/**
* Freeze-dries an HTML Document.
*
* For most use cases, use the {@link freezeDry} function, a convenience wrapper around this class.
*
* Use this class instead if you need more control; for example to access the incomplete result
* before `freezeDry` finishes, or to obtain it as a `Document` or `Blob` rather than a string.
*
* @example
* This is roughly what running `freezeDry(document, options)` does:
*
* ```
* const freezeDryer = new FreezeDryer(document, options)
* await freezeDryier.run()
* const html = freezeDryer.result.string
* ```
*
* @category Main
*/
export class FreezeDryer implements AbortController {
/**
* The `Document` that was passed to this `FreezeDryer` to be freeze-dried.
*/
readonly original: Document
/**
* The clone of the original document. After completing {@link run}, this is the freeze-dried
* result. It can also be accessed before or while `run`ning, to already obtain a partial
* result if needed.
*/
readonly result: DomCloneResource
/**
* The configuration of this `FreezeDryer` (based on the passed `options`).
*/
readonly config: FreezeDryConfig
private abortController: AbortController
/**
* @param document - Document to be freeze-dried. Remains unmodified.
* @param options - Options to customise freezeDry’s behaviour.
*/
constructor(
document: Document,
options: Partial<FreezeDryConfig> = {},
) {
this.original = document
this.config = this.applyDefaultConfig(document, options)
this.abortController = this.initAbortController()
// Step 1: Capture the DOM in its current state.
this.result = this.captureDom(document)
}
/**
* Run the freeze-drying process.
*
* Starts the process of recursively crawling and drying subresources of {@link result}, then
* finalises the snapshot itself.
*
* @returns The FreezeDryer itself.
*/
async run(): Promise<this> {
// Step 2: Recurse into subresources, converting them as needed.
await this.crawlSubresources()
// Step 3: Make the DOM static and context-free.
await this.config.dryResource(this.result, true)
// Step 4: Finalise snapshot.
this.finaliseSnapshot()
return this
}
/** Capture the DOM in its current state. (Step 1) */
protected captureDom(original: Document): DomCloneResource {
const domResource = new DomCloneResource(original, this.config.docUrl, { glob: this.config.glob })
domResource.cloneFramedDocs(/* deep = */ true)
return domResource
}
/** Recurse into subresources, converting them as needed. (Step 2) */
protected async crawlSubresources() {
try {
await this.result.processSubresources(this.config.processSubresource)
} catch (error) {
// If subresource crawling timed out or was aborted, continue with what we have.
if (!this.config.signal?.aborted) throw error
}
}
/**
* Default method for processing subresources (can be overruled in `options`).
*
* Fetches the subresource, recurses into each of its (sub)subresources, then applies {@link
* dryResource} and {@link newUrlForResource} on it.
*/
protected async processSubresource(
link: SubresourceLink,
recurse: ProcessSubresourceRecurse,
) {
// TODO Synchronously clone frame contents here instead of in `captureDom`?
// (We’d first have to make srcdoc-based frames turn up as (pseudo)subresources)
// if (link.resource) link.resource.freeze?.()
// Subresource step 1: Get the linked resource if missing (from cache/internet).
if (!link.resource) {
try {
link.resource = await Resource.fromLink(link, {
fetchResource: this.config.fetchResource,
signal: this.signal,
glob: this.config.glob,
})
} catch (err) {
// TODO we may want to do something here. Turn target into about:invalid? For
// now, we rely on the content security policy to prevent loading this subresource.
return
}
}
// Subresource step 2: Recurse into this subresource’s subresources.
await link.resource.processSubresources(recurse)
// Subresource step 3: Make this subresource static and context-free.
await this.config.dryResource(link.resource, false)
// Subresource step 4: Change the link’s target to a new URL for the subresource.
const newUrl = await this.config.newUrlForResource(link.resource)
if (newUrl !== link.target) setLinkTarget(
link,
newUrl,
{ rememberOriginalUrls: this.config.rememberOriginalUrls }
)
}
/**
* Default method for choosing a new URL for a subresource (can be overruled in `options`).
*
* @returns the complete resource content encoded as a data URL (`data:mime/type;base64;………`).
*/
protected async newUrlForResource(resource: Resource) {
return await blobToDataUrl(resource.blob, { glob: this.config.glob })
}
/**
* Default method for ‘drying’ a (sub)resource (can be overruled in `options`).
*
* Makes the resource static and context-free. (Step 3, and subresource step 3)
* @param resource - The resource to be ‘dried’.
* @param isRootDocument - Whether `resource` is the top-level document (rather than a subresource).
*/
protected dryResource(
resource: Resource,
isRootDocument: boolean,
) {
resource.dry()
}
/** Finalise snapshot. (Step 4) */
protected finaliseSnapshot() {
// Step 4.1: Add metadata about the snapshot to the snapshot itself.
if (this.config.addMetadata)
setMementoTags(this.result.doc, { originalUrl: this.result.url, datetime: this.config.now })
// Step 4.2: Set a strict Content Security Policy in a `<meta>` tag.
if (this.config.contentSecurityPolicy !== null)
setContentSecurityPolicy(this.result.doc, this.config.contentSecurityPolicy)
// Step 4.3: Create/replace the `<meta charset=…>` element.
if (this.config.charsetDeclaration !== undefined)
setCharsetDeclaration(this.result.doc, this.config.charsetDeclaration)
}
protected applyDefaultConfig(
doc: Document,
options: Partial<FreezeDryConfig>,
): FreezeDryConfig {
const defaultOptions: FreezeDryConfig = {
// Config for tweaking snapshot output
addMetadata: true,
rememberOriginalUrls: true,
now: new Date(),
contentSecurityPolicy: {
'default-src': ["'none'"], // By default, block all connectivity and scripts.
'img-src': ['data:'], // Allow inlined images.
'media-src': ['data:'], // Allow inlined audio/video.
'style-src': ['data:', "'unsafe-inline'"], // Allow inlined styles.
'font-src': ['data:'], // Allow inlined fonts.
'frame-src': ['data:'], // Allow inlined iframes.
},
charsetDeclaration: 'utf-8',
// Config for dealing with subresources
timeout: Infinity,
signal: undefined,
fetchResource: undefined, // defaults to browser’s fetch
dryResource: this.dryResource.bind(this),
newUrlForResource: this.newUrlForResource.bind(this),
processSubresource: this.processSubresource.bind(this),
// Other config
docUrl: undefined,
glob: doc.defaultView
|| (typeof window !== 'undefined' ? window : undefined)
|| fail('Lacking a global window object'),
}
const config: FreezeDryConfig = flatOptions(options, defaultOptions)
return config
}
private initAbortController() {
const glob = this.config.glob || globalThis
const abortController = new glob.AbortController()
if (this.config.timeout >= 0 && this.config.timeout < Infinity) {
// The timeout option is merely a shorthand for a time-triggered AbortSignal.
glob.setTimeout(() => {
this.abort('Freeze-dry timed out')
}, this.config.timeout)
}
if (this.config.signal) {
// Chain the given signal to our internal controller.
const configSignal = this.config.signal
configSignal.addEventListener('abort', event => this.abort(configSignal.reason))
}
return abortController
}
/**
* Abort freeze-drying. Stops further crawling of subresources, but still finishes the snapshot
* using the currently available subresources.
*/
async abort(reason?: any) {
this.abortController.abort(reason)
}
/**
* Signals whether freeze-drying has been aborted.
*
* Aborting can happen in several ways:
* - This `FreezeDryer`’s {@link abort} method was called.
* - The `timeout` given in `options` has been reached.
* - The `signal` given in `options` was triggered.
*/
get signal() {
return this.abortController.signal
}
}
function fail(message: string): never {
throw new Error(message)
}