UNPKG

ipfs-http-client

Version:
53 lines (44 loc) 1.19 kB
import { CID } from 'multiformats/cid' import { configure } from '../lib/configure.js' import { toUrlSearchParams } from '../lib/to-url-search-params.js' /** * @typedef {import('../types').HTTPClientExtraOptions} HTTPClientExtraOptions * @typedef {import('ipfs-core-types/src/block').API<HTTPClientExtraOptions>} BlockAPI * @typedef {import('ipfs-core-types/src/block').RmResult} RmResult */ export const createRm = configure(api => { /** * @type {BlockAPI["rm"]} */ async function * rm (cid, options = {}) { if (!Array.isArray(cid)) { cid = [cid] } const res = await api.post('block/rm', { signal: options.signal, searchParams: toUrlSearchParams({ arg: cid.map(cid => cid.toString()), 'stream-channels': true, ...options }), headers: options.headers }) for await (const removed of res.ndjson()) { yield toCoreInterface(removed) } } return rm }) /** * @param {*} removed */ function toCoreInterface (removed) { /** @type {RmResult} */ const out = { cid: CID.parse(removed.Hash) } if (removed.Error) { out.error = new Error(removed.Error) } return out }