-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Uploader.js
726 lines (621 loc) · 22.6 KB
/
Uploader.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
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
// eslint-disable-next-line max-classes-per-file
const tus = require('tus-js-client')
const { randomUUID } = require('node:crypto')
const validator = require('validator')
const got = require('got').default
const { pipeline: pipelineCb } = require('node:stream')
const { join } = require('node:path')
const fs = require('node:fs')
const { promisify } = require('node:util')
const FormData = require('form-data')
const throttle = require('lodash/throttle')
const { Upload } = require('@aws-sdk/lib-storage')
const { rfc2047EncodeMetadata, getBucket } = require('./helpers/utils')
// TODO move to `require('streams/promises').pipeline` when dropping support for Node.js 14.x.
const pipeline = promisify(pipelineCb)
const { createReadStream, createWriteStream, ReadStream } = fs
const { stat, unlink } = fs.promises
/** @type {any} */
// @ts-ignore - typescript resolves this this to a hoisted version of
// serialize-error that ships with a declaration file, we are using a version
// here that does not have a declaration file
const serializeError = require('serialize-error') // eslint-disable-line import/order
const emitter = require('./emitter')
const { jsonStringify, hasMatch } = require('./helpers/utils')
const logger = require('./logger')
const headerSanitize = require('./header-blacklist')
const redis = require('./redis')
// Need to limit length or we can get
// "MetadataTooLarge: Your metadata headers exceed the maximum allowed metadata size" in tus / S3
const MAX_FILENAME_LENGTH = 500
const DEFAULT_FIELD_NAME = 'files[]'
const PROTOCOLS = Object.freeze({
multipart: 'multipart',
s3Multipart: 's3-multipart',
tus: 'tus',
})
function exceedsMaxFileSize(maxFileSize, size) {
return maxFileSize && size && size > maxFileSize
}
// TODO remove once we migrate away from form-data
function sanitizeMetadata(inputMetadata) {
if (inputMetadata == null) return {}
const outputMetadata = {}
Object.keys(inputMetadata).forEach((key) => {
outputMetadata[key] = String(inputMetadata[key])
})
return outputMetadata
}
class ValidationError extends Error {
constructor(message) {
super(message)
this.name = 'ValidationError'
}
}
/**
* Validate the options passed down to the uplaoder
*
* @param {UploaderOptions} options
*/
function validateOptions(options) {
// validate HTTP Method
if (options.httpMethod) {
if (typeof options.httpMethod !== 'string') {
throw new ValidationError('unsupported HTTP METHOD specified')
}
const method = options.httpMethod.toUpperCase()
if (method !== 'PUT' && method !== 'POST') {
throw new ValidationError('unsupported HTTP METHOD specified')
}
}
if (exceedsMaxFileSize(options.companionOptions.maxFileSize, options.size)) {
throw new ValidationError('maxFileSize exceeded')
}
// validate fieldname
if (options.fieldname != null && typeof options.fieldname !== 'string') {
throw new ValidationError('fieldname must be a string')
}
// validate metadata
if (options.metadata != null && typeof options.metadata !== 'object') {
throw new ValidationError('metadata must be an object')
}
// validate headers
if (options.headers != null && typeof options.headers !== 'object') {
throw new ValidationError('headers must be an object')
}
// validate protocol
// @todo this validation should not be conditional once the protocol field is mandatory
if (options.protocol && !Object.keys(PROTOCOLS).some((key) => PROTOCOLS[key] === options.protocol)) {
throw new ValidationError('unsupported protocol specified')
}
// s3 uploads don't require upload destination
// validation, because the destination is determined
// by the server's s3 config
if (options.protocol !== PROTOCOLS.s3Multipart) {
if (!options.endpoint && !options.uploadUrl) {
throw new ValidationError('no destination specified')
}
const validateUrl = (url) => {
const validatorOpts = { require_protocol: true, require_tld: false }
if (url && !validator.isURL(url, validatorOpts)) {
throw new ValidationError('invalid destination url')
}
const allowedUrls = options.companionOptions.uploadUrls
if (allowedUrls && url && !hasMatch(url, allowedUrls)) {
throw new ValidationError('upload destination does not match any allowed destinations')
}
}
[options.endpoint, options.uploadUrl].forEach(validateUrl)
}
if (options.chunkSize != null && typeof options.chunkSize !== 'number') {
throw new ValidationError('incorrect chunkSize')
}
}
const states = {
idle: 'idle',
uploading: 'uploading',
paused: 'paused',
done: 'done',
}
class Uploader {
/**
* Uploads file to destination based on the supplied protocol (tus, s3-multipart, multipart)
* For tus uploads, the deferredLength option is enabled, because file size value can be unreliable
* for some providers (Instagram particularly)
*
* @typedef {object} UploaderOptions
* @property {string} endpoint
* @property {string} [uploadUrl]
* @property {string} protocol
* @property {number} [size]
* @property {string} [fieldname]
* @property {string} pathPrefix
* @property {any} [s3]
* @property {any} metadata
* @property {any} companionOptions
* @property {any} [storage]
* @property {any} [headers]
* @property {string} [httpMethod]
* @property {boolean} [useFormData]
* @property {number} [chunkSize]
*
* @param {UploaderOptions} options
*/
constructor(options) {
validateOptions(options)
this.options = options
this.token = randomUUID()
this.fileName = `${Uploader.FILE_NAME_PREFIX}-${this.token}`
this.options.metadata = sanitizeMetadata(this.options.metadata)
this.options.fieldname = this.options.fieldname || DEFAULT_FIELD_NAME
this.size = options.size
this.uploadFileName = this.options.metadata.name
? this.options.metadata.name.substring(0, MAX_FILENAME_LENGTH)
: this.fileName
this.storage = options.storage
this.downloadedBytes = 0
this.readStream = null
if (this.options.protocol === PROTOCOLS.tus) {
emitter().on(`pause:${this.token}`, () => {
logger.debug('Received from client: pause', 'uploader', this.shortToken)
if (this.#uploadState !== states.uploading) return
this.#uploadState = states.paused
if (this.tus) {
this.tus.abort()
}
})
emitter().on(`resume:${this.token}`, () => {
logger.debug('Received from client: resume', 'uploader', this.shortToken)
if (this.#uploadState !== states.paused) return
this.#uploadState = states.uploading
if (this.tus) {
this.tus.start()
}
})
}
emitter().on(`cancel:${this.token}`, () => {
logger.debug('Received from client: cancel', 'uploader', this.shortToken)
if (this.tus) {
const shouldTerminate = !!this.tus.url
this.tus.abort(shouldTerminate).catch(() => { })
}
this.#canceled = true
this.abortReadStream(new Error('Canceled'))
})
}
#uploadState = states.idle
#canceled = false
abortReadStream(err) {
this.#uploadState = states.done
if (this.readStream) this.readStream.destroy(err)
}
async _uploadByProtocol() {
// todo a default protocol should not be set. We should ensure that the user specifies their protocol.
// after we drop old versions of uppy client we can remove this
const protocol = this.options.protocol || PROTOCOLS.multipart
switch (protocol) {
case PROTOCOLS.multipart:
return this.#uploadMultipart(this.readStream)
case PROTOCOLS.s3Multipart:
return this.#uploadS3Multipart(this.readStream)
case PROTOCOLS.tus:
return this.#uploadTus(this.readStream)
default:
throw new Error('Invalid protocol')
}
}
async _downloadStreamAsFile(stream) {
this.tmpPath = join(this.options.pathPrefix, this.fileName)
logger.debug('fully downloading file', 'uploader.download', this.shortToken)
const writeStream = createWriteStream(this.tmpPath)
const onData = (chunk) => {
this.downloadedBytes += chunk.length
if (exceedsMaxFileSize(this.options.companionOptions.maxFileSize, this.downloadedBytes)) {
this.abortReadStream(new Error('maxFileSize exceeded'))
}
this.onProgress(0, undefined)
}
stream.on('data', onData)
await pipeline(stream, writeStream)
logger.debug('finished fully downloading file', 'uploader.download', this.shortToken)
const { size } = await stat(this.tmpPath)
this.size = size
const fileStream = createReadStream(this.tmpPath)
this.readStream = fileStream
}
_needDownloadFirst() {
return !this.options.size || !this.options.companionOptions.streamingUpload
}
/**
*
* @param {import('stream').Readable} stream
*/
async uploadStream(stream) {
try {
if (this.#uploadState !== states.idle) throw new Error('Can only start an upload in the idle state')
if (this.readStream) throw new Error('Already uploading')
this.#uploadState = states.uploading
this.readStream = stream
if (this._needDownloadFirst()) {
logger.debug('need to download the whole file first', 'controller.get.provider.size', this.shortToken)
// Some streams need to be downloaded entirely first, because we don't know their size from the provider
// This is true for zoom and drive (exported files) or some URL downloads.
// The stream will then typically come from a "Transfer-Encoding: chunked" response
await this._downloadStreamAsFile(this.readStream)
}
if (this.#uploadState !== states.uploading) return undefined
const { url, extraData } = await Promise.race([
this._uploadByProtocol(),
// If we don't handle stream errors, we get unhandled error in node.
new Promise((resolve, reject) => this.readStream.on('error', reject)),
])
return { url, extraData }
} finally {
this.#uploadState = states.done
logger.debug('cleanup', this.shortToken)
if (this.readStream && !this.readStream.destroyed) this.readStream.destroy()
await this.tryDeleteTmpPath()
}
}
tryDeleteTmpPath() {
if (this.tmpPath) unlink(this.tmpPath).catch(() => { })
}
/**
*
* @param {import('stream').Readable} stream
*/
async tryUploadStream(stream) {
try {
emitter().emit('upload-start', { token: this.token })
const ret = await this.uploadStream(stream)
if (!ret) return
const { url, extraData } = ret
this.#emitSuccess(url, extraData)
} catch (err) {
if (this.#canceled) {
logger.error('Aborted upload', 'uploader.aborted', this.shortToken)
return
}
logger.error(err, 'uploader.error', this.shortToken)
this.#emitError(err)
} finally {
emitter().removeAllListeners(`pause:${this.token}`)
emitter().removeAllListeners(`resume:${this.token}`)
emitter().removeAllListeners(`cancel:${this.token}`)
}
}
/**
* returns a substring of the token. Used as traceId for logging
* we avoid using the entire token because this is meant to be a short term
* access token between uppy client and companion websocket
*
* @param {string} token the token to Shorten
* @returns {string}
*/
static shortenToken(token) {
return token.substring(0, 8)
}
static reqToOptions(req, size) {
const useFormDataIsSet = Object.prototype.hasOwnProperty.call(req.body, 'useFormData')
const useFormData = useFormDataIsSet ? req.body.useFormData : true
return {
// Client provided info (must be validated and not blindly trusted):
headers: req.body.headers,
httpMethod: req.body.httpMethod,
protocol: req.body.protocol,
endpoint: req.body.endpoint,
uploadUrl: req.body.uploadUrl,
metadata: req.body.metadata,
fieldname: req.body.fieldname,
useFormData,
// Info coming from companion server configuration:
size,
companionOptions: req.companion.options,
pathPrefix: `${req.companion.options.filePath}`,
storage: redis.client(),
s3: req.companion.s3Client ? {
client: req.companion.s3Client,
options: req.companion.options.s3,
} : null,
chunkSize: req.companion.options.chunkSize,
}
}
/**
* returns a substring of the token. Used as traceId for logging
* we avoid using the entire token because this is meant to be a short term
* access token between uppy client and companion websocket
*/
get shortToken() {
return Uploader.shortenToken(this.token)
}
async awaitReady(timeout) {
logger.debug('waiting for socket connection', 'uploader.socket.wait', this.shortToken)
// TODO: replace the Promise constructor call when dropping support for Node.js <16 with
// await once(emitter, eventName, timeout && { signal: AbortSignal.timeout(timeout) })
await new Promise((resolve, reject) => {
const eventName = `connection:${this.token}`
let timer
let onEvent
function cleanup() {
emitter().removeListener(eventName, onEvent)
clearTimeout(timer)
}
if (timeout) {
// Need to timeout after a while, or we could leak emitters
timer = setTimeout(() => {
cleanup()
reject(new Error('Timed out waiting for socket connection'))
}, timeout)
}
onEvent = () => {
cleanup()
resolve()
}
emitter().once(eventName, onEvent)
})
logger.debug('socket connection received', 'uploader.socket.wait', this.shortToken)
}
/**
* @typedef {{action: string, payload: object}} State
* @param {State} state
*/
saveState(state) {
if (!this.storage) return
// make sure the keys get cleaned up.
// https://github.com/transloadit/uppy/issues/3748
const keyExpirySec = 60 * 60 * 24
const redisKey = `${Uploader.STORAGE_PREFIX}:${this.token}`
this.storage.set(redisKey, jsonStringify(state), {
EX: keyExpirySec,
})
}
throttledEmitProgress = throttle((dataToEmit) => {
const { bytesUploaded, bytesTotal, progress } = dataToEmit.payload
logger.debug(
`${bytesUploaded} ${bytesTotal} ${progress}%`,
'uploader.total.progress',
this.shortToken,
)
this.saveState(dataToEmit)
emitter().emit(this.token, dataToEmit)
}, 1000, { trailing: false })
/**
*
* @param {number} [bytesUploaded]
* @param {number | null} [bytesTotalIn]
*/
onProgress(bytesUploaded = 0, bytesTotalIn = 0) {
const bytesTotal = bytesTotalIn || this.size || 0
// If fully downloading before uploading, combine downloaded and uploaded bytes
// This will make sure that the user sees half of the progress before upload starts (while downloading)
let combinedBytes = bytesUploaded
if (this._needDownloadFirst()) {
combinedBytes = Math.floor((combinedBytes + (this.downloadedBytes || 0)) / 2)
}
// Prevent divide by zero
let percentage = 0
if (bytesTotal > 0) percentage = Math.min(Math.max(0, ((combinedBytes / bytesTotal) * 100)), 100)
const formattedPercentage = percentage.toFixed(2)
if (this.#uploadState !== states.uploading) {
return
}
const payload = { progress: formattedPercentage, bytesUploaded: combinedBytes, bytesTotal }
const dataToEmit = {
action: 'progress',
payload,
}
// avoid flooding the client (and log) with progress events.
// flooding will cause reduced performance and possibly network issues
this.throttledEmitProgress(dataToEmit)
}
/**
*
* @param {string} url
* @param {object} extraData
*/
#emitSuccess(url, extraData) {
const emitData = {
action: 'success',
payload: { ...extraData, complete: true, url },
}
this.saveState(emitData)
emitter().emit(this.token, emitData)
}
/**
*
* @param {Error} err
*/
#emitError(err) {
// delete stack to avoid sending server info to client
// todo remove also extraData from serializedErr in next major,
// see PR discussion https://github.com/transloadit/uppy/pull/3832
const { stack, ...serializedErr } = serializeError(err)
const dataToEmit = {
action: 'error',
// @ts-ignore
payload: { ...err.extraData, error: serializedErr },
}
this.saveState(dataToEmit)
emitter().emit(this.token, dataToEmit)
}
/**
* start the tus upload
*
* @param {any} stream
*/
async #uploadTus(stream) {
const uploader = this
const isFileStream = stream instanceof ReadStream
// chunkSize needs to be a finite value if the stream is not a file stream (fs.createReadStream)
// https://github.com/tus/tus-js-client/blob/4479b78032937ac14da9b0542e489ac6fe7e0bc7/lib/node/fileReader.js#L50
const chunkSize = this.options.chunkSize || (isFileStream ? Infinity : 50e6)
return new Promise((resolve, reject) => {
const tusOptions = {
endpoint: this.options.endpoint,
uploadUrl: this.options.uploadUrl,
uploadLengthDeferred: !isFileStream,
retryDelays: [0, 1000, 3000, 5000],
uploadSize: isFileStream ? this.size : undefined,
chunkSize,
headers: headerSanitize(this.options.headers),
addRequestId: true,
metadata: {
// file name and type as required by the tusd tus server
// https://github.com/tus/tusd/blob/5b376141903c1fd64480c06dde3dfe61d191e53d/unrouted_handler.go#L614-L646
filename: this.uploadFileName,
filetype: this.options.metadata.type,
...this.options.metadata,
},
/**
*
* @param {Error} error
*/
onError(error) {
logger.error(error, 'uploader.tus.error')
// deleting tus originalRequest field because it uses the same http-agent
// as companion, and this agent may contain sensitive request details (e.g headers)
// previously made to providers. Deleting the field would prevent it from getting leaked
// to the frontend etc.
// @ts-ignore
// eslint-disable-next-line no-param-reassign
delete error.originalRequest
// @ts-ignore
// eslint-disable-next-line no-param-reassign
delete error.originalResponse
reject(error)
},
/**
*
* @param {number} [bytesUploaded]
* @param {number} [bytesTotal]
*/
onProgress(bytesUploaded, bytesTotal) {
uploader.onProgress(bytesUploaded, bytesTotal)
},
onSuccess() {
resolve({ url: uploader.tus.url })
},
}
this.tus = new tus.Upload(stream, tusOptions)
this.tus.start()
})
}
async #uploadMultipart(stream) {
if (!this.options.endpoint) {
throw new Error('No multipart endpoint set')
}
function getRespObj(response) {
// remove browser forbidden headers
const { 'set-cookie': deleted, 'set-cookie2': deleted2, ...responseHeaders } = response.headers
return {
responseText: response.body,
status: response.statusCode,
statusText: response.statusMessage,
headers: responseHeaders,
}
}
// upload progress
let bytesUploaded = 0
stream.on('data', (data) => {
bytesUploaded += data.length
this.onProgress(bytesUploaded, undefined)
})
const url = this.options.endpoint
const reqOptions = {
headers: headerSanitize(this.options.headers),
}
if (this.options.useFormData) {
// todo refactor once upgraded to got 12
const formData = new FormData()
Object.entries(this.options.metadata).forEach(([key, value]) => formData.append(key, value))
formData.append(this.options.fieldname, stream, {
filename: this.uploadFileName,
contentType: this.options.metadata.type,
knownLength: this.size,
})
reqOptions.body = formData
} else {
reqOptions.headers['content-length'] = this.size
reqOptions.body = stream
}
try {
const httpMethod = (this.options.httpMethod || '').toUpperCase() === 'PUT' ? 'put' : 'post'
const runRequest = got[httpMethod]
const response = await runRequest(url, reqOptions)
if (bytesUploaded !== this.size) {
const errMsg = `uploaded only ${bytesUploaded} of ${this.size} with status: ${response.statusCode}`
logger.error(errMsg, 'upload.multipart.mismatch.error')
throw new Error(errMsg)
}
let bodyURL = null
try {
bodyURL = JSON.parse(response.body)?.url
} catch {
// response.body can be undefined or an empty string
// in that case we ignore and continue.
}
return {
url: bodyURL,
extraData: { response: getRespObj(response), bytesUploaded },
}
} catch (err) {
logger.error(err, 'upload.multipart.error')
const statusCode = err.response?.statusCode
if (statusCode != null) {
throw Object.assign(new Error(err.statusMessage), {
extraData: getRespObj(err.response),
})
}
throw new Error('Unknown multipart upload error')
}
}
/**
* Upload the file to S3 using a Multipart upload.
*/
async #uploadS3Multipart(stream) {
if (!this.options.s3) {
throw new Error('The S3 client is not configured on this companion instance.')
}
const filename = this.uploadFileName
/**
* @type {{client: import('@aws-sdk/client-s3').S3Client, options: Record<string, any>}}
*/
const s3Options = this.options.s3
const { client, options } = s3Options
const params = {
Bucket: getBucket(options.bucket, null, this.options.metadata),
Key: options.getKey(null, filename, this.options.metadata),
ContentType: this.options.metadata.type,
Metadata: rfc2047EncodeMetadata(this.options.metadata),
Body: stream,
}
if (options.acl != null) params.ACL = options.acl
const upload = new Upload({
client,
params,
// using chunkSize as partSize too, see https://github.com/transloadit/uppy/pull/3511
partSize: this.options.chunkSize,
leavePartsOnError: true, // https://github.com/aws/aws-sdk-js-v3/issues/2311
})
upload.on('httpUploadProgress', ({ loaded, total }) => {
this.onProgress(loaded, total)
})
const data = await upload.done()
return {
// @ts-expect-error For some reason `|| null` is not enough for TS
url: data?.Location || null,
extraData: {
response: {
responseText: JSON.stringify(data),
headers: {
'content-type': 'application/json',
},
},
},
}
}
}
Uploader.FILE_NAME_PREFIX = 'uppy-file'
Uploader.STORAGE_PREFIX = 'companion'
module.exports = Uploader
module.exports.ValidationError = ValidationError