Created
March 28, 2023 17:56
-
-
Save alanshaw/f69b4283ad7175387f81ae4faaec9558 to your computer and use it in GitHub Desktop.
Building a directory after uploading individual files async
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createWriter } from '@ipld/unixfs' | |
import * as CAR from '@web3-storage/upload-client/car' | |
import { create } from '@web3-storage/w3up-client' | |
/** | |
* @param {import('@web3-storage/w3up-client').Client} client | |
* @param {import('@web3-storage/w3up-client/types').FileLike} file | |
*/ | |
async function uploadFile (client, file) { | |
/** @type {import('@web3-storage/upload-client/types').DirectoryEntryLink[]} */ | |
const entries = [] | |
await client.uploadDirectory([file], { onDirectoryEntryLink: e => entries.push(e) }) | |
return entries.at(0) | |
} | |
/** | |
* @param {import('@web3-storage/w3up-client').Client} client | |
* @param {import('@web3-storage/upload-client/types').DirectoryEntryLink[]} entries | |
*/ | |
async function uploadDir (client, entries) { | |
const { readable, writable } = new TransformStream({}) | |
const unixfsWriter = createWriter({ writable }) | |
const dirWriter = unixfsWriter.createDirectoryWriter() | |
for (const entry of entries) { | |
// @ts-expect-error | |
dirWriter.set(entry.name, entry) | |
} | |
dirWriter.close() | |
unixfsWriter.close() | |
const blocks = [] | |
await readable.pipeTo(new WritableStream({ write: b => { blocks.push(b) } })) | |
const car = await CAR.encode(blocks) | |
return await client.uploadCAR(car) | |
} | |
async function main () { | |
const client = await create() | |
// for each file you receive | |
const file = new File(['🐈'], 'cat.gif') | |
const entry = await uploadFile(client, file) | |
if (!entry) throw new Error('no entry from uploadFile') | |
// persist `entry` - entry.name + entry.cid + entry.dagByteLength | |
// later, when you have all the entries: | |
await uploadDir(client, [entry]) | |
} | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment