-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
82 lines (72 loc) · 2.48 KB
/
mod.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
import { Channel } from "https://deno.land/x/[email protected]/mod.ts";
import {
MultipartWriter,
} from "https://deno.land/[email protected]/mime/multipart.ts";
import {
readableStreamFromIterable,
} from "https://deno.land/[email protected]/io/streams.ts";
interface BytesMessage {
type: "bytes";
buffer: Uint8Array;
}
interface ErrorMessage {
type: "error";
error: unknown;
}
interface DoneMessage {
type: "done";
}
type Message =
| BytesMessage
| ErrorMessage
| DoneMessage;
/**
* Creates a {@link ReadableStream} by serializing a user populated {@link MultipartWriter}.
*
* @param writerFunction A function that receives a prepared {@link MultipartWriter} that the user
* can append fields or files to.
* @returns A tuple of {@link ReadableStream} and the multipart boundary.
*/
export function streamFromMultipart(
writerFunction: (
multipartWriter: MultipartWriter,
) => Promise<void>,
): [ReadableStream<Uint8Array>, string] {
const channel = new Channel<Message>();
// Creates a writer where all of the data is passed to our channel so it can be drained to a
// ReadableStream.
const multipartWriter = new MultipartWriter({
write(buffer: Uint8Array): Promise<number> {
// It is VERY important we close the buffer, there is no guarentee that the writer won't
// re-use this buffer for subsequent writes.
channel.push({ type: "bytes", buffer: new Uint8Array(buffer) });
return Promise.resolve(buffer.length);
},
});
// Passes the multipart writer to the caller so they can populate it.
writerFunction(multipartWriter)
.then(() => {
try {
// Close is an async function that still writes, so we must wait for it to complete.
return multipartWriter.close();
} catch (_ignored) {
// We'll try to close the writer incase the user hasn't, if they have the close function
// will throw an error we'll just ignore.
}
})
.then(() => channel.push({ type: "done" }))
.catch((error) => channel.push({ type: "error", error }));
// A generator that yields values pushed to our multipart writer.
async function* generator(): AsyncGenerator<Uint8Array, void, undefined> {
for await (const message of channel.stream()) {
if (message.type === "done") {
channel.close();
return;
} else if (message.type === "error") {
throw message.error;
}
yield message.buffer;
}
}
return [readableStreamFromIterable(generator()), multipartWriter.boundary];
}