-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathURLImpl.ts
340 lines (319 loc) · 10.8 KB
/
URLImpl.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
import { URLSearchParamsImpl } from "./URLSearchParamsImpl"
import { URL, URLRecord, ParserState, URLSearchParams } from "./interfaces"
import {
basicURLParser, urlSerializer, urlEncodedStringParser,
asciiSerializationOfAnOrigin, origin, cannotHaveAUsernamePasswordPort,
setTheUsername, setThePassword, hostSerializer
} from "./URLAlgorithm"
/**
* Represents an URL.
*/
export class URLImpl implements URL {
_url: URLRecord
_queryObject: URLSearchParams
/**
* Initializes a new `URL`.
*
* @param url - an URL string
* @param base - a base URL string
*/
constructor(url: string, baseURL?: string) {
/**
* 1. Let parsedBase be null.
* 2. If base is given, then:
* 2.1. Let parsedBase be the result of running the basic URL parser on base.
* 2.2. If parsedBase is failure, then throw a TypeError.
*/
let parsedBase: URLRecord | null = null
if (baseURL !== undefined) {
parsedBase = basicURLParser(baseURL)
if (parsedBase === null) {
throw new TypeError(`Invalid base URL: '${baseURL}'.`)
}
}
/**
* 3. Let parsedURL be the result of running the basic URL parser on url
* with parsedBase.
* 4. If parsedURL is failure, then throw a TypeError.
*/
const parsedURL = basicURLParser(url, parsedBase)
if (parsedURL === null) {
throw new TypeError(`Invalid URL: '${url}'.`)
}
/**
* 5. Let query be parsedURL’s query, if that is non-null, and the empty
* string otherwise.
* 6. Let result be a new URL object.
* 7. Set result’s url to parsedURL.
* 8. Set result’s query object to a new URLSearchParams object using query,
* and then set that query object’s url object to result.
* 9. Return result.
*/
const query = parsedURL.query || ""
this._url = parsedURL
this._queryObject = new URLSearchParamsImpl(query)
this._queryObject._urlObject = this
}
/** @inheritdoc */
get href(): string {
/**
* The href attribute’s getter and the toJSON() method, when invoked, must
* return the serialization of context object’s url.
*/
return urlSerializer(this._url)
}
set href(value: string) {
/**
* 1. Let parsedURL be the result of running the basic URL parser on the
* given value.
* 2. If parsedURL is failure, then throw a TypeError.
*/
const parsedURL = basicURLParser(value)
if (parsedURL === null) {
throw new TypeError(`Invalid URL: '${value}'.`)
}
/**
* 3. Set context object’s url to parsedURL.
* 4. Empty context object’s query object’s list.
* 5. Let query be context object’s url’s query.
* 6. If query is non-null, then set context object’s query object’s list to
* the result of parsing query.
*/
this._url = parsedURL
this._queryObject._list = []
const query = this._url.query
if (query !== null) {
this._queryObject._list = urlEncodedStringParser(query)
}
}
/** @inheritdoc */
get origin(): string {
/**
* The origin attribute’s getter must return the serialization of context
* object’s url’s origin. [HTML]
*/
return asciiSerializationOfAnOrigin(origin(this._url))
}
/** @inheritdoc */
get protocol(): string {
/**
* The protocol attribute’s getter must return context object url’s scheme,
* followed by U+003A (:).
*/
return this._url.scheme + ':'
}
set protocol(val: string) {
/**
* The protocol attribute’s setter must basic URL parse the given value,
* followed by U+003A (:), with context object’s url as url and scheme start
* state as state override.
*/
basicURLParser(val + ':', undefined, undefined, this._url,
ParserState.SchemeStart)
}
/** @inheritdoc */
get username(): string {
/**
* The username attribute’s getter must return context object’s url’s
* username.
*/
return this._url.username
}
set username(val: string) {
/**
* 1. If context object’s url cannot have a username/password/port, then
* return.
* 2. Set the username given context object’s url and the given value.
*/
if (cannotHaveAUsernamePasswordPort(this._url)) return
setTheUsername(this._url, val)
}
/** @inheritdoc */
get password(): string {
/**
* The password attribute’s getter must return context object’s url’s
* password.
*/
return this._url.password
}
set password(val: string) {
/**
* 1. If context object’s url cannot have a username/password/port, then
* return.
* 2. Set the password given context object’s url and the given value.
*/
if (cannotHaveAUsernamePasswordPort(this._url)) return
setThePassword(this._url, val)
}
/** @inheritdoc */
get host(): string {
/**
* 1. Let url be context object’s url.
* 2. If url’s host is null, return the empty string.
* 3. If url’s port is null, return url’s host, serialized.
* 4. Return url’s host, serialized, followed by U+003A (:) and url’s port,
* serialized.
*/
if (this._url.host === null) {
return ""
} else if (this._url.port === null) {
return hostSerializer(this._url.host)
} else {
return hostSerializer(this._url.host) + ':' + this._url.port.toString()
}
}
set host(val: string) {
/**
* 1. If context object’s url’s cannot-be-a-base-URL flag is set, then
* return.
* 2. Basic URL parse the given value with context object’s url as url and
* host state as state override.
*/
if (this._url._cannotBeABaseURLFlag) return
basicURLParser(val, undefined, undefined, this._url,
ParserState.Host)
}
/** @inheritdoc */
get hostname(): string {
/**
* 1. If context object’s url’s host is null, return the empty string.
* 2. Return context object’s url’s host, serialized.
*/
if (this._url.host === null) return ""
return hostSerializer(this._url.host)
}
set hostname(val: string) {
/**
* 1. If context object’s url’s cannot-be-a-base-URL flag is set, then
* return.
* 2. Basic URL parse the given value with context object’s url as url and
* hostname state as state override.
*/
if (this._url._cannotBeABaseURLFlag) return
basicURLParser(val, undefined, undefined, this._url,
ParserState.Hostname)
}
/** @inheritdoc */
get port(): string {
/**
* 1. If context object’s url’s port is null, return the empty string.
* 2. Return context object’s url’s port, serialized.
*/
if (this._url.port === null) return ""
return this._url.port.toString()
}
set port(val: string) {
/**
* 1. If context object’s url cannot have a username/password/port, then
* return.
* 2. If the given value is the empty string, then set context object’s
* url’s port to null.
* 3. Otherwise, basic URL parse the given value with context object’s url
* as url and port state as state override.
*/
if (cannotHaveAUsernamePasswordPort(this._url)) return
if (val === "") {
this._url.port = null
} else {
basicURLParser(val, undefined, undefined, this._url,
ParserState.Port)
}
}
/** @inheritdoc */
get pathname(): string {
/**
* 1. If context object’s url’s cannot-be-a-base-URL flag is set, then
* return context object’s url’s path[0].
* 2. If context object’s url’s path is empty, then return the empty string.
* 3. Return U+002F (/), followed by the strings in context object’s url’s
* path (including empty strings), if any, separated from each other by
* U+002F (/).
*/
if (this._url._cannotBeABaseURLFlag) return this._url.path[0]
if (this._url.path.length === 0) return ""
return '/' + this._url.path.join('/')
}
set pathname(val: string) {
/**
* 1. If context object’s url’s cannot-be-a-base-URL flag is set, then return.
* 2. Empty context object’s url’s path.
* 3. Basic URL parse the given value with context object’s url as url and
* path start state as state override.
*/
if (this._url._cannotBeABaseURLFlag) return
this._url.path = []
basicURLParser(val, undefined, undefined, this._url,
ParserState.PathStart)
}
/** @inheritdoc */
get search(): string {
/**
* 1. If context object’s url’s query is either null or the empty string,
* return the empty string.
* 2. Return U+003F (?), followed by context object’s url’s query.
*/
if (this._url.query === null || this._url.query === "") return ""
return '?' + this._url.query
}
set search(val: string) {
/**
* 1. Let url be context object’s url.
* 2. If the given value is the empty string, set url’s query to null,
* empty context object’s query object’s list, and then return.
* 3. Let input be the given value with a single leading U+003F (?) removed,
* if any.
* 4. Set url’s query to the empty string.
* 5. Basic URL parse input with url as url and query state as state
* override.
* 6. Set context object’s query object’s list to the result of parsing
* input.
*/
const url = this._url
if (val === "") {
url.query = null
this._queryObject._list.length = 0
return
}
if (val.startsWith('?')) val = val.substr(1)
url.query = ""
basicURLParser(val, undefined, undefined, url, ParserState.Query)
this._queryObject._list = urlEncodedStringParser(val)
}
/** @inheritdoc */
get searchParams(): URLSearchParams { return this._queryObject }
/** @inheritdoc */
get hash(): string {
/**
* 1. If context object’s url’s fragment is either null or the empty string,
* return the empty string.
* 2. Return U+0023 (#), followed by context object’s url’s fragment.
*/
if (this._url.fragment === null || this._url.fragment === "") return ""
return '#' + this._url.fragment
}
set hash(val: string) {
/**
* 1. If the given value is the empty string, then set context object’s
* url’s fragment to null and return.
* 2. Let input be the given value with a single leading U+0023 (#) removed,
* if any.
* 3. Set context object’s url’s fragment to the empty string.
* 4. Basic URL parse input with context object’s url as url and fragment
* state as state override.
*/
if (val === "") {
this._url.fragment = null
return
}
if (val.startsWith('#')) val = val.substr(1)
this._url.fragment = ""
basicURLParser(val, undefined, undefined, this._url,
ParserState.Fragment)
}
/** @inheritdoc */
toJSON(): string { return urlSerializer(this._url) }
/** @inheritdoc */
toString(): string {
return this.href
}
}