1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-01-31 11:35:18 +00:00
discover/back-end/models/dapps-images-model.js
Jakub 8a2d880fba
fix re-declaring content variable (#77)
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-02-14 12:04:49 +02:00

34 lines
1011 B
JavaScript

const logger = require('../logger/logger').getLoggerFor('DAPPS-Images-Model');
const IPFSService = require('./../services/ipfs-service');
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
let DAppsImageSchema = new Schema({
id: Schema.Types.ObjectId,
content: String,
hash: {
type: String,
unique: true,
}
});
DAppsImageSchema.pre('save', async function () {
const content = this.content.split('base64,')[1];
if (!content) {
throw new Error('Invalid base64 image');
}
const data = Buffer.from(content, 'base64');
const hash = await IPFSService.addContent(data);
this.set({ content, hash });
});
DAppsImageSchema.statics.findByContent = async function (input) {
const content = input.split('base64,')[1];
const data = Buffer.from(content, 'base64');
const hash = await IPFSService.generateContentHash(data);
return this.findOne({ hash });
};
module.exports = mongoose.model('DAppsImage', DAppsImageSchema);