mongoose-gridfs
mongoose gridfs on top of gridfs-stream
Note!: Ensure mongoose connection before use
Installation
$ npm install --save mongoose mongoose-gridfs
Usage
var fs = require('fs');
var mongoose = require('mongoose');
var connection = mongoose.connect('mongodb://localhost/test');
var gridfs = require('mongoose-gridfs')({
collection:'attachments',
model:'Attachment',
mongooseConnection: connection
});
Attachment = gridfs.model;
Attachment.write({
filename:'sample.txt',
contentType:'text/plain'
},
fs.createReadStream('/some/path/sample.txt'),
function(error, createdFile){
...
});
var stream = Attachment.readById(<objectid>);
Attachment.readById(<objectid>, function(error, buffer){
...
});
Attachment.unlinkById(<objectid>, function(error, unlinkedAttachment){
...
});
API
mongoose-gridfs
wrap gridfs-stream to provide valid mongoose schema
and model
to use with MongoDB GridFS.
Each instance of mongoose-gridfs
is binded to a specific GridFS collection
and mongoose model
or schema
by using options.
Options
collection
a root collection to use in GridFS. default to fs
model
a model name to use in mongoose. default to File
Example
var gridfs = require('mongoose-gridfs')({
collection:'attachments',
model:'Attachment'
});
Schema & Model
To obtain underlying model use
var Attachment = gridfs.model
To obtain underlying schema for self model registration use
var AttachmentSchema = gridfs.schema;
module.export = mongoose.model('Attachment', AttachmentSchema);
Static Methods
write(fileDetails:Object, stream:Readable, done(error, createdFile))
Write a readable stream into gridfs storage
Example
Attachment.write({
filename:'sample.txt',
contentType:'text/plain'
},
fs.createReadStream('/some/path/sample.txt'),
function(error, savedAttachment){
...
});
readById(objectid:ObjectId, [done(error, fileContent)]):Stream
Read a file content from gridfs storage.
Example for smaller file size
Attachment.readById(<objectid>, function(error, content){
...
})
Example for larger file size
var stream = Attachment.readById(<objectid>);
stream.on('error', fn);
stream.on('data', fn);
stream.on('close', fn);
unlinkById(objectid:ObjectId, done(error, unlinkedFile))
Remove file details and its content from underlying gridfs collection.
Example
Attachment.unlinkById(<objectid>, function(error, unlinkedAttachment){
...
});
or
Attachment.unlink(<objectid>, function(error, unlinkedAttachment){
...
});
Instance Methods
write(stream:Readable, done(error, createdFile))
Write a readable stream into gridfs storage
Example
var attachment = new Attachment({
filename:'sample.txt',
contentType:'text/plain'
});
attachment.write(
fs.createReadStream('/some/path/sample.txt'),
function(error, savedAttachment){
...
});
read([done(error, fileContent)]):Stream
Read a file content from gridfs storage.
Example for smaller file size
attachment.read(function(error, content){
...
})
Example for larger file size
var stream = attachment.read();
stream.on('error', fn);
stream.on('data', fn);
stream.on('close', fn);
unlink(done(error, unlinkedFile))
Remove file details and its content from underlying gridfs collection.
Example
attachment.unlink(<objectid>, function(error, unlinkedAttachment){
...
});
Literature Reviewed
Licence
The MIT License (MIT)
Copyright (c) 2015 lykmapipo & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.