ipfs/src/utils.ts

50 lines
1.3 KiB
TypeScript

import axios from 'axios'
export function formatBytes(a: number, b: number) {
if (a === 0) return '0 Bytes'
const c = 1024
const d = b || 2
const e = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
const f = Math.floor(Math.log(a) / Math.log(c))
return parseFloat((a / Math.pow(c, f)).toFixed(d)) + ' ' + e[f]
}
export async function addToIpfs(files: File[], ipfs: any) {
const file = [...files][0]
const fileDetails = { path: file.name, content: file }
const source = await ipfs.add(fileDetails, {
wrapWithDirectory: true,
progress: (prog: number) => console.log(`received: ${prog}`)
})
try {
for await (const ipfsFile of source) {
// The last path will contain the directory hash
if (ipfsFile.path === '') {
const cid = `${ipfsFile.cid.toString()}/${file.name}`
return cid
}
}
} catch (err) {
console.error(err)
}
}
export async function pingUrl(url: string) {
try {
const response = await axios(url, { timeout: 5000 })
if (!response || response.status !== 200) return false
return true
} catch (error) {
console.error(error.message)
return false
}
}
export function parseHTML(str: string) {
const tmp = document.implementation.createHTMLDocument()
tmp.body.innerHTML = str
return tmp.body.children
}