mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
const { ObjectId } = require('mongodb');
|
|
|
|
class Images {
|
|
|
|
constructor(db) {
|
|
this.db = db;
|
|
}
|
|
|
|
async upload(file, userId) {
|
|
await this.db.connect()
|
|
const conn = this.db.getConnection();
|
|
|
|
const imagesCollection = conn.collection('images');
|
|
|
|
const newImage = {
|
|
userId: userId,
|
|
file_name: file.originalname,
|
|
file_content: file.buffer.toString('base64'),
|
|
mime_type: file.mimetype,
|
|
created_at: new Date()
|
|
};
|
|
|
|
const result = await imagesCollection.insertOne(newImage);
|
|
|
|
return result.insertedId;
|
|
}
|
|
|
|
async get(id) {
|
|
await this.db.connect()
|
|
const conn = this.db.getConnection();
|
|
|
|
const imagesCollection = conn.collection('images');
|
|
|
|
const result = await imagesCollection.findOne({ _id: ObjectId.createFromHexString(id) });
|
|
|
|
if (!result) return null;
|
|
|
|
return {
|
|
file_name: result.file_name,
|
|
file_content: Buffer.from(result.file_content, 'base64'),
|
|
mime_type: result.mime_type
|
|
};
|
|
}
|
|
|
|
//TODO TEST
|
|
async getAll() {
|
|
await this.db.connect()
|
|
const conn = this.db.getConnection();
|
|
|
|
const imagesCollection = conn.collection('images');
|
|
|
|
const result = await imagesCollection.find({});
|
|
|
|
if (!result) return null;
|
|
|
|
//TODO latency issues -> images > 20
|
|
const imagesName = result.map(image => ({
|
|
id: image.id,
|
|
file_name: image.file_name,
|
|
file_content: Buffer.from(image.file_content, 'base64'),
|
|
mime_type: image.mime_type
|
|
}));
|
|
|
|
return imagesName;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Images;
|