Luiz F. Picolo
e60be91d49
- Removed unused constructor parameter in IPFSFileManager class - Renamed class method to for clarity - Updated import statement for the library to use function instead of the default import - Added method to retrieve the file type from the buffer - Modified the code to determine the file extension based on the MIME type using method - Updated the file name in the saveFileToLocal method to include the appropriate file extension based on the MIME type
83 lines
2.3 KiB
JavaScript
83 lines
2.3 KiB
JavaScript
import { create } from 'ipfs';
|
|
import { writeFile } from 'fs/promises';
|
|
import { fileTypeFromBuffer } from 'file-type';
|
|
|
|
class IPFSFileManager {
|
|
constructor() {
|
|
this.node = null;
|
|
}
|
|
|
|
async initIPFS() {
|
|
this.node = await create();
|
|
console.log('IPFS node is ready');
|
|
}
|
|
|
|
async retrieveFileFromIPFS(cid, filepath) {
|
|
try {
|
|
await this.initIPFS();
|
|
|
|
const chunks = [];
|
|
for await (const chunk of this.node.cat(cid)) {
|
|
chunks.push(chunk);
|
|
}
|
|
const fileData = Buffer.concat(chunks);
|
|
|
|
// Determine the file extension based on the MIME type
|
|
const { mime } = await this.getfileTypeFromFile(fileData);
|
|
const fileExtension = this.getFileExtension(mime);
|
|
|
|
// Save the file data to a local file with the appropriate extension
|
|
const filePath = `${filepath}.${fileExtension}`;
|
|
await this.saveFileToLocal(filePath, fileData);
|
|
|
|
this.closeIPFS();
|
|
console.log('File retrieved from IPFS and saved as:', filePath);
|
|
} catch (error) {
|
|
console.error('Failed to retrieve the file from IPFS', error);
|
|
}
|
|
}
|
|
|
|
async saveFileToLocal(filePath, fileData) {
|
|
try {
|
|
await writeFile(filePath, fileData);
|
|
} catch (error) {
|
|
console.error('Failed to save the file locally', error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
async getfileTypeFromFile(fileData) {
|
|
try {
|
|
return fileTypeFromBuffer(fileData);
|
|
} catch (error) {
|
|
console.error('Failed to determine the file type', error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
getFileExtension(mimeType) {
|
|
// Map commonly used MIME types to file extensions
|
|
const extensionMap = {
|
|
'application/pdf': 'pdf',
|
|
'image/jpeg': 'jpg',
|
|
'image/png': 'png',
|
|
// Add more MIME types and extensions as needed
|
|
};
|
|
|
|
// Return the corresponding extension if available, otherwise fallback to 'dat'
|
|
return extensionMap[mimeType] || 'dat';
|
|
}
|
|
|
|
async closeIPFS() {
|
|
if (this.node) {
|
|
await this.node.stop();
|
|
console.log('IPFS node connection closed');
|
|
}
|
|
}
|
|
}
|
|
|
|
const cid = 'QmQgGxzWnzjCfouxRiozBiEG3wcsuJGWjtHjv3wurVbJ9s'; // Replace with the CID of the file you want to retrieve
|
|
const filepath = './retrievedFile'; // Specify the file path without the extension
|
|
const ipfsFileManager = new IPFSFileManager();
|
|
ipfsFileManager.retrieveFileFromIPFS(cid, filepath);
|