forked from PerformanC/NodeLink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp.ts
More file actions
609 lines (565 loc) · 18 KB
/
Copy pathhttp.ts
File metadata and controls
609 lines (565 loc) · 18 KB
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
import type { Readable } from 'node:stream'
import { PassThrough, Transform } from 'node:stream'
import type {
HttpResolvedTrackData,
IcyMetadataEventPayload,
IcyMetadataHeaders,
IcyMetadataPayload
} from '../typings/sources/http.types.ts'
import type {
SourceResult,
TrackInfo,
TrackStreamResult,
TrackUrlResult,
WorkerNodeLink
} from '../typings/sources/source.types.ts'
import type {
HttpResponseHeaders,
TrackEncodeInput
} from '../typings/utils.types.ts'
import { encodeTrack, getVersion, http1makeRequest, logger } from '../utils.ts'
/**
* Default user agent for HTTP source requests.
* @internal
*/
const DEFAULT_HTTP_USER_AGENT = `NodeLink/${getVersion()} (https://github.com/PerformanC/NodeLink)`
/**
* Extracts file extension from URL.
* @param rawUrl - Input URL.
* @returns Lowercased extension without dot.
* @internal
*/
const extractUrlExtension = (rawUrl: string): string => {
const sanitized =
String(rawUrl || '')
.split('?')[0]
?.split('#')[0] || ''
const lastSlash = sanitized.lastIndexOf('/')
const lastDot = sanitized.lastIndexOf('.')
if (lastDot === -1 || lastDot < lastSlash) return ''
return sanitized.slice(lastDot + 1).toLowerCase()
}
/**
* Normalizes header value from unknown/object/string[] to string.
* @param value - Header value.
* @returns Header string.
* @internal
*/
const headerToString = (value: unknown): string =>
Array.isArray(value) ? String(value[0] || '') : String(value || '')
/**
* Transform stream that strips ICY metadata blocks and emits parsed metadata.
* @internal
*/
class IcyMetadataTransform extends Transform {
private readonly metaInt: number
private readonly onMetadata?: (payload: IcyMetadataPayload) => void
private audioBytesRemaining: number
private pendingMetaLength: number | null
private metaChunks: Buffer[]
private metaBytes: number
private lastSignature: string | null
/**
* Creates a new ICY metadata transform.
* @param metaInt - Metadata interval in bytes.
* @param onMetadata - Metadata callback.
*/
public constructor(
metaInt: number,
onMetadata?: (payload: IcyMetadataPayload) => void
) {
super()
this.metaInt = metaInt
this.onMetadata = onMetadata
this.audioBytesRemaining = metaInt
this.pendingMetaLength = null
this.metaChunks = []
this.metaBytes = 0
this.lastSignature = null
}
/**
* Emits parsed metadata payload if content changed.
* @param raw - Raw metadata block.
* @internal
*/
private _emitMetadata(raw: string): void {
const cleaned = raw.replace(/\0+$/, '').trim()
if (!cleaned) return
const fields: Record<string, string> = {}
const regex = /([A-Za-z0-9]+)='([^']*)'/g
let match: RegExpExecArray | null
while ((match = regex.exec(cleaned))) {
fields[(match[1] || '').toLowerCase()] = match[2] || ''
}
const payload: IcyMetadataPayload = {
raw: cleaned,
streamTitle: fields['streamtitle'] || null,
streamUrl: fields['streamurl'] || null,
fields
}
const signature = payload.raw
if (signature && signature !== this.lastSignature) {
this.lastSignature = signature
this.onMetadata?.(payload)
}
}
/**
* Processes audio and metadata chunks.
* @param chunk - Incoming stream chunk.
* @param _encoding - Stream encoding.
* @param callback - Transform callback.
* @internal
*/
public override _transform(
chunk: Buffer,
_encoding: BufferEncoding,
callback: (error?: Error | null) => void
): void {
try {
let offset = 0
while (offset < chunk.length) {
if (this.pendingMetaLength === null) {
const remaining = chunk.length - offset
const toCopy = Math.min(this.audioBytesRemaining, remaining)
if (toCopy > 0) {
this.push(chunk.subarray(offset, offset + toCopy))
this.audioBytesRemaining -= toCopy
offset += toCopy
}
if (this.audioBytesRemaining === 0) {
this.pendingMetaLength = -1
}
} else if (this.pendingMetaLength === -1) {
if (offset >= chunk.length) break
this.pendingMetaLength = (chunk[offset] || 0) * 16
offset += 1
this.metaChunks = []
this.metaBytes = 0
if (this.pendingMetaLength === 0) {
this.audioBytesRemaining = this.metaInt
this.pendingMetaLength = null
}
} else {
const remaining = chunk.length - offset
const needed = this.pendingMetaLength - this.metaBytes
const toCopy = Math.min(needed, remaining)
if (toCopy > 0) {
this.metaChunks.push(chunk.subarray(offset, offset + toCopy))
this.metaBytes += toCopy
offset += toCopy
}
if (this.metaBytes >= this.pendingMetaLength) {
const raw = Buffer.concat(
this.metaChunks,
this.pendingMetaLength
).toString('utf8')
this._emitMetadata(raw)
this.audioBytesRemaining = this.metaInt
this.pendingMetaLength = null
}
}
}
callback()
} catch (err) {
callback(err as Error)
}
}
}
/**
* Generic HTTP source.
* @public
*/
export default class HttpSource {
/**
* Runtime NodeLink context.
*/
public readonly nodelink: WorkerNodeLink
/**
* Source-specific configuration.
*/
private readonly config: { userAgent?: string }
/**
* Source search term prefixes.
*/
public readonly searchTerms: string[]
/**
* Source priority.
*/
public readonly priority: number
/**
* Creates a new HTTP source instance.
* @param nodelink - Runtime NodeLink context.
*/
public constructor(nodelink: WorkerNodeLink) {
this.nodelink = nodelink
const rawHttpConfig = nodelink.options.sources?.['http']
this.config =
rawHttpConfig &&
typeof rawHttpConfig === 'object' &&
'userAgent' in rawHttpConfig &&
typeof rawHttpConfig.userAgent === 'string'
? { userAgent: rawHttpConfig.userAgent }
: {}
this.searchTerms = []
this.priority = 10
}
/**
* Initializes provider resources.
* @returns Always true for this provider.
*/
public async setup(): Promise<boolean> {
return true
}
/**
* Search handler delegates to resolve for HTTP source.
* @param query - URL query.
* @returns Resolve result.
*/
public async search(query: string): Promise<SourceResult> {
return this.resolve(query)
}
/**
* Resolves an HTTP URL into track payload.
* @param url - Target URL.
* @returns Resolve result payload.
*/
public async resolve(url: string): Promise<SourceResult> {
try {
const userAgent = this.config.userAgent || DEFAULT_HTTP_USER_AGENT
const requestHeaders = { 'User-Agent': userAgent }
const validAudioPrefixes = ['audio/', 'video/']
const validApplicationTypes = ['application/octet-stream']
const isValidMediaType = (contentType: string): boolean =>
validAudioPrefixes.some((prefix) => contentType.startsWith(prefix)) ||
validApplicationTypes.includes(contentType) ||
contentType === ''
const rawHttpConfig = this.nodelink.options?.sources?.['http']
const httpConfig =
rawHttpConfig && typeof rawHttpConfig === 'object'
? (rawHttpConfig as Record<string, unknown>)
: {}
const rawClusterConfig = this.nodelink.options?.cluster
const clusterConfig =
rawClusterConfig && typeof rawClusterConfig === 'object'
? (rawClusterConfig as Record<string, unknown>)
: {}
const configuredResolveTimeout =
Number(httpConfig['resolveTimeoutMs']) > 0
? Number(httpConfig['resolveTimeoutMs'])
: 7000
const clusterTimeout =
Number(clusterConfig['commandTimeout']) > 0
? Number(clusterConfig['commandTimeout'])
: null
const resolveTimeout = clusterTimeout
? Math.min(configuredResolveTimeout, Math.max(1000, clusterTimeout - 500))
: configuredResolveTimeout
const configuredHeadTimeout =
Number(httpConfig['headTimeoutMs']) > 0
? Number(httpConfig['headTimeoutMs'])
: 2500
const headTimeout = Math.min(configuredHeadTimeout, resolveTimeout)
const optimisticOnProbeFailure =
httpConfig['optimisticOnProbeFailure'] !== false
const resolveStartedAt = Date.now()
const getRemainingTimeout = (): number =>
Math.max(250, resolveTimeout - (Date.now() - resolveStartedAt))
let data = await http1makeRequest(url, {
method: 'HEAD',
headers: requestHeaders,
timeout: headTimeout,
maxRetries: 0
})
const headContentType = headerToString(
(data.headers as Record<string, unknown>)?.['content-type']
)
const headOk =
!data.error &&
(data.statusCode || 0) < 400 &&
isValidMediaType(headContentType)
if (!headOk) {
const remainingTimeout = getRemainingTimeout()
if (remainingTimeout <= 250) {
if (optimisticOnProbeFailure) {
return {
loadType: 'track',
data: this.buildTrack(
url,
(data.headers as HttpResponseHeaders | undefined) || {},
true
)
}
}
return {
exception: {
message: `Resolve timeout budget exceeded for ${url}`,
severity: 'common'
}
}
}
const getData = await http1makeRequest(url, {
method: 'GET',
streamOnly: true,
headers: {
...requestHeaders,
'Icy-MetaData': '1'
},
timeout: remainingTimeout,
maxRetries: 0
})
const previewStream = getData?.stream as Readable | undefined
if (previewStream && typeof previewStream.destroy === 'function') {
previewStream.destroy()
}
data = getData
}
if (data.error) {
if (optimisticOnProbeFailure) {
logger(
'warn',
'HTTP Source',
`Probe failed for ${url}, using optimistic track: ${String(data.error)}`
)
return {
loadType: 'track',
data: this.buildTrack(url, {}, true)
}
}
return {
exception: { message: String(data.error), severity: 'common' }
}
}
if ((data.statusCode || 0) >= 400) {
if (optimisticOnProbeFailure) {
logger(
'warn',
'HTTP Source',
`Probe HTTP ${data.statusCode} for ${url}, using optimistic track`
)
return {
loadType: 'track',
data: this.buildTrack(
url,
(data.headers as HttpResponseHeaders | undefined) || {},
true
)
}
}
return {
exception: {
message: `HTTP error ${data.statusCode} while resolving`,
severity: 'common'
}
}
}
const headers = data.headers as HttpResponseHeaders | undefined
const contentType = headerToString(
(headers as Record<string, unknown>)?.['content-type']
)
if (!isValidMediaType(contentType)) {
if (optimisticOnProbeFailure && contentType === '') {
return {
loadType: 'track',
data: this.buildTrack(url, headers, true)
}
}
return {
exception: {
message: `Unsupported content type: ${contentType}`,
severity: 'common'
}
}
}
const hasContentLength =
'content-length' in ((headers as Record<string, unknown>) || {})
const isStream =
Boolean((headers as Record<string, unknown>)?.['icy-metaint']) ||
!hasContentLength
return {
loadType: 'track',
data: this.buildTrack(url, headers, isStream)
}
} catch (err) {
const message = err instanceof Error ? err.message : String(err)
const rawHttpConfig = this.nodelink.options?.sources?.['http']
const httpConfig =
rawHttpConfig && typeof rawHttpConfig === 'object'
? (rawHttpConfig as Record<string, unknown>)
: {}
const optimisticOnProbeFailure =
httpConfig['optimisticOnProbeFailure'] !== false
if (optimisticOnProbeFailure) {
logger(
'warn',
'HTTP Source',
`Resolve exception for ${url}, using optimistic track: ${message}`
)
return {
loadType: 'track',
data: this.buildTrack(url, {}, true)
}
}
return {
exception: {
message: `Failed to resolve URL: ${message}`,
severity: 'common'
}
}
}
}
/**
* Builds track payload for resolved URL and headers.
* @param url - Source URL.
* @param headers - Response headers.
* @param isStream - Whether source is stream.
* @returns Resolved track payload.
* @internal
*/
public buildTrack(
url: string,
headers: HttpResponseHeaders | undefined,
isStream: boolean
): HttpResolvedTrackData {
const headerRecord = (headers || {}) as Record<string, unknown>
const contentDisposition = headerToString(
headerRecord['content-disposition']
)
const fileNameMatch = contentDisposition.match(/filename="([^"]+)"/i)
const title =
headerToString(headerRecord['icy-name']) ||
fileNameMatch?.[1] ||
'Unknown'
const description = headerToString(headerRecord['icy-description'])
const genre = headerToString(headerRecord['icy-genre'])
const stationUrl = headerToString(headerRecord['icy-url']) || url
const icyBr = headerToString(headerRecord['icy-br'])
const audioInfo = headerToString(headerRecord['ice-audio-info'])
const bitrate = Number.parseInt(
icyBr || audioInfo.split(';')?.[0]?.split('=')?.[1] || '0',
10
)
let artworkUrl: string | null = null
const contentType = headerToString(headerRecord['content-type'])
if (
url.startsWith('https://cdn.discordapp.com') &&
contentType.includes('video/')
) {
const cleanedUrl = url.endsWith('&') ? url.slice(0, -1) : url
const base = cleanedUrl.replace(
'https://cdn.discordapp.com',
'https://media.discordapp.net'
)
const separator = base.includes('?') ? '&' : '?'
artworkUrl = `${base}${separator}format=webp`
}
const track: TrackInfo = {
identifier: url,
isSeekable: !isStream,
author: description || 'unknown',
length: -1,
isStream,
position: 0,
title,
uri: url,
artworkUrl: null,
isrc: null,
sourceName: 'http'
}
const encodedTrack: TrackEncodeInput = { ...track, details: [] }
return {
encoded: encodeTrack(encodedTrack),
info: track,
pluginInfo: {
bitrate,
genre,
stationUrl,
artworkUrl,
icyBr,
audioInfo
}
}
}
/**
* Returns playable URL for HTTP tracks.
* @param info - Track info payload.
* @returns URL and protocol tuple.
*/
public getTrackUrl(info: Pick<TrackInfo, 'uri'>): TrackUrlResult {
return { url: info.uri, protocol: 'http' }
}
/**
* Loads stream for HTTP track.
* @param _decodedTrack - Decoded track payload (unused).
* @param url - Stream URL.
* @returns Stream payload or exception.
*/
public async loadStream(
_decodedTrack: unknown,
url: string
): Promise<TrackStreamResult | SourceResult> {
try {
const userAgent = this.config.userAgent || DEFAULT_HTTP_USER_AGENT
const opts = {
method: 'GET',
streamOnly: true,
headers: {
'Icy-MetaData': '1',
'User-Agent': userAgent
}
}
const response = await http1makeRequest(url, opts)
if (response.error) throw new Error(String(response.error))
const headers = (response.headers || {}) as Record<string, unknown>
const contentType = headerToString(headers['content-type'])
const extensionType =
!contentType || contentType === 'application/octet-stream'
? extractUrlExtension(url)
: ''
const resolvedType = extensionType || contentType
const httpStream = response.stream
if (!httpStream) {
throw new Error('No stream returned from HTTP source')
}
let outputStream: Readable = httpStream as Readable
const metaInt = Number.parseInt(
headerToString(headers['icy-metaint']),
10
)
if (Number.isFinite(metaInt) && metaInt > 0) {
const icyHeaders: IcyMetadataHeaders = {
name: headerToString(headers['icy-name']) || null,
description: headerToString(headers['icy-description']) || null,
genre: headerToString(headers['icy-genre']) || null,
url: headerToString(headers['icy-url']) || null,
bitrate: headerToString(headers['icy-br']) || null
}
const metadataStream = new IcyMetadataTransform(metaInt, (metadata) => {
outputStream.emit('icyMetadata', {
metadata,
icy: icyHeaders,
receivedAt: Date.now()
} satisfies IcyMetadataEventPayload)
})
;(httpStream as Readable).pipe(metadataStream)
outputStream = metadataStream
}
const finalStream = outputStream.pipe(new PassThrough())
finalStream.on('end', () => {
logger(
'debug',
'HTTP Source',
`Stream ended for ${url}, emitting finishBuffering.`
)
finalStream.emit('finishBuffering')
})
finalStream.on('error', (err: Error) => {
logger('error', 'HTTP Source', `Stream error: ${err.message}`)
})
return { stream: finalStream, type: resolvedType }
} catch (err) {
const message = err instanceof Error ? err.message : String(err)
logger('error', 'Sources', `Failed to load http stream: ${message}`)
return { exception: { message, severity: 'common' } }
}
}
}