kubo-rpc-client
Version:
A client library for the Kubo RPC API
39 lines (32 loc) • 971 B
text/typescript
import { CID } from 'multiformats/cid'
import { toUrlSearchParams } from '../lib/to-url-search-params.js'
import type { BlockRmResult, BlockAPI } from './index.js'
import type { HTTPRPCClient } from '../lib/core.js'
export function createRm (client: HTTPRPCClient): BlockAPI['rm'] {
return async function * rm (cid, options = {}) {
if (!Array.isArray(cid)) {
cid = [cid]
}
const res = await client.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)
}
}
}
function toCoreInterface (removed: any): BlockRmResult {
const out: BlockRmResult = {
cid: CID.parse(removed.Hash)
}
if (removed.Error != null) {
out.error = new Error(removed.Error)
}
return out
}