update all repos

This commit is contained in:
陆柯 2023-01-03 18:49:16 +08:00
parent 4d377af964
commit 662686157b

View File

@ -12,14 +12,16 @@ module.exports = {
cb(null, wo?.envar?.fileStore) // 目录是相对于本应用的入口js的即相对于 server.js 的位置。 cb(null, wo?.envar?.fileStore) // 目录是相对于本应用的入口js的即相对于 server.js 的位置。
}, },
filename (req, file, cb) { filename (req, file, cb) {
// file 为 {encoding, fieldname, mimetype, originalname, stream}
// 注意req.body 也许还没有信息因为这取决于客户端发送body和file的顺序。必要的信息请从 req.headers 传递,例如 _passtoken在multer时尚未进入路由不存在已装好的 _passtokenSource // 注意req.body 也许还没有信息因为这取决于客户端发送body和file的顺序。必要的信息请从 req.headers 传递,例如 _passtoken在multer时尚未进入路由不存在已装好的 _passtokenSource
const fileNameExtension = path.extname(file.originalname)
const filename = `${Date.now()}-${crypto.randomBytes(16).toString('hex')}${fileNameExtension}` // 虽然可以把本方法写成 async 的,并且在这里调用 wo.ipfsStore.ipfs.add(file.stream) 来获取 cid但是最后在本地存成的文件是 0字节的。因此还是用个随机数吧。
// 或者,干脆利用这个缺陷,直接提交到 ipfs在本地就留着0字节文件不要使用就好了。同时在 api.receiveFile 里,就要相应的直接返回 IPFS 网址给前端。
const filename = `${Date.now()}-${crypto.randomBytes(16).toString('hex')}${path.extname(file.originalname)}`
//const _passtokenSource = webtoken.verifyToken(req.headers._passtoken) || {} //const _passtokenSource = webtoken.verifyToken(req.headers._passtoken) || {}
//const filename = `${req.path.replace(/^\/api\d*/, '')}_${_passtokenSource.usid}_${Date.now()}${fileNameExtension}` // 如果最终 filename 含有 / (例如当 req.path 为 Who/todo则必须已经存在该目录否则在这里就出错不会进入下面流程。 //const filename = `${req.path.replace(/^\/api\d*/, '')}_${_passtokenSource.usid}_${Date.now()}${fileNameExtension}` // 如果最终 filename 含有 / (例如当 req.path 为 Who/todo则必须已经存在该目录否则在这里就出错不会进入下面流程。
cb(null, filename) cb(null, filename)
}, },
// req 被 multer 处理后req.file 为 { destination, filename, originialname, path, mimetype, size }, 其中 path 包括了 destination 和 filename 的文件完整路径。
}), }),
// fileFilter:function(req, file, cb) {}, // fileFilter:function(req, file, cb) {},
limits: { fileSize: 10485760 }, limits: { fileSize: 10485760 },
@ -27,18 +29,21 @@ module.exports = {
api: { api: {
async receiveFile () { async receiveFile () {
// req 被 multer 处理后req.file 为 { destination, filename, originialname, path, mimetype, size }, 其中 path 包括了 destination 和 filename 的文件相对路径。
const file = wo._req?.file const file = wo._req?.file
if (file?.path) { if (file?.path) {
file.path = file.path.replace('\\', '/') file.path = file.path.replace('\\', '/')
if (wo?.ipfsStore) { if (wo?.ipfsStore) {
const ipfsResult = await wo.ipfsStore.add(file, { // 为了在这里使用 wo.ipfsStore.add, 需要提供 FileContent不能直接用 req.file
const { cid } = await wo.ipfsStore.add(wo.ipfsLib.globSource(file.path), {
cidVersion: 1, cidVersion: 1,
hashAlg: 'sha2-256', hashAlg: 'sha2-256',
onlyHash: true, onlyHash: false, // 多个备份是好的,而且能加快下次添加同样文件的速度。
pin: false, pin: false,
}) })
file.cid = ipfsResult?.cid?.toString() // + path.extname(file.filename) file.cid = cid?.toString() // + path.extname(file.filename)
file.ipfsUrl = wo.envar.ipfsGateway + file.cid file.ipfsUrl = wo.envar.ipfsGateway + file.cid
// file.path = wo.envar.ipfsGateway + file.cid // 可选考虑直接返回 ipfs地址。在本地测试成功但是发现第一次上传的文件作为ipfs网关图片在前端显示比较慢不如显示http的快。第二次上传同样文件的ipfs前端显示就快了。
} }
return { _state: 'SUCCESS', ...file } return { _state: 'SUCCESS', ...file }
} else { } else {