-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFrameResource.js
112 lines (99 loc) · 2.6 KB
/
FrameResource.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
const util = require('util')
/**
* @see https://chromedevtools.github.io/devtools-protocol/tot/Page#type-FrameResource
* @since chrome-remote-interface-extra
*/
class FrameResource {
/**
* @param {string} frameId - The id of the frame this resource is associated with
* @param {CDPFrameResource} frameResourceInfo - Information about the Resource on the page
* @param {FrameManager} frameManager - The frame manager for the page this resource's frame came from
*/
constructor (frameId, frameResourceInfo, frameManager) {
/** @type {string} */
this._frameId = frameId
/** @type {CDPFrameResource} */
this._frameResourceInfo = frameResourceInfo
/** @type {FrameManager} */
this._frameManager = frameManager
}
/**
* Retrieve the contents of this frame resource
* @return {Promise<Buffer>}
* @see https://chromedevtools.github.io/devtools-protocol/tot/Page#method-getResourceContent
*/
getContent () {
return this._frameManager.getFrameResourceContent(
this._frameId,
this._frameResourceInfo.url
)
}
/**
* Resource URL
* @return {string}
*/
get url () {
return this._frameResourceInfo.url
}
/**
* Type of this resource
* @return {string}
*/
get type () {
return this._frameResourceInfo.type
}
/**
* Resource mimeType as determined by the browser
* @return {string}
*/
get mimeType () {
return this._frameResourceInfo.mimeType
}
/**
* last-modified timestamp as reported by server
* @return {?number}
*/
get lastModified () {
return this._frameResourceInfo.lastModified
}
/**
* Resource content size
* @return {?number}
*/
get contentSize () {
return this._frameResourceInfo.contentSize
}
/**
* True if the resource failed to load
* @return {?boolean}
*/
get failed () {
return this._frameResourceInfo.failed
}
/**
* True if the resource was canceled during loading
* @return {?boolean}
*/
get canceled () {
return this._frameResourceInfo.canceled
}
/**
* @return {Object}
*/
toJSON () {
return this._frameResourceInfo
}
/** @ignore */
// eslint-disable-next-line space-before-function-paren
[util.inspect.custom](depth, options) {
if (depth < 0) {
return options.stylize('[FrameResource]', 'special')
}
const newOptions = Object.assign({}, options, {
depth: options.depth == null ? null : options.depth - 1
})
const inner = util.inspect(this._frameResourceInfo, newOptions)
return `${options.stylize('FrameResource', 'special')} ${inner}`
}
}
module.exports = FrameResource