Source: lib/gridfs-stream/index.js

  1. var Emitter = require('events').EventEmitter;
  2. var GridFSBucketReadStream = require('./download');
  3. var GridFSBucketWriteStream = require('./upload');
  4. var shallowClone = require('../utils').shallowClone;
  5. var toError = require('../utils').toError;
  6. var util = require('util');
  7. var DEFAULT_GRIDFS_BUCKET_OPTIONS = {
  8. bucketName: 'fs',
  9. chunkSizeBytes: 255 * 1024
  10. };
  11. module.exports = GridFSBucket;
  12. /**
  13. * Constructor for a streaming GridFS interface
  14. * @class
  15. * @param {Db} db A db handle
  16. * @param {object} [options=null] Optional settings.
  17. * @param {string} [options.bucketName="fs"] The 'files' and 'chunks' collections will be prefixed with the bucket name followed by a dot.
  18. * @param {number} [options.chunkSizeBytes=255 * 1024] Number of bytes stored in each chunk. Defaults to 255KB
  19. * @param {object} [options.writeConcern=null] Optional write concern to be passed to write operations, for instance `{ w: 1 }`
  20. * @param {object} [options.readPreference=null] Optional read preference to be passed to read operations
  21. * @fires GridFSBucketWriteStream#index
  22. * @return {GridFSBucket}
  23. */
  24. function GridFSBucket(db, options) {
  25. Emitter.apply(this);
  26. this.setMaxListeners(0);
  27. if (options && typeof options === 'object') {
  28. options = shallowClone(options);
  29. var keys = Object.keys(DEFAULT_GRIDFS_BUCKET_OPTIONS);
  30. for (var i = 0; i < keys.length; ++i) {
  31. if (!options[keys[i]]) {
  32. options[keys[i]] = DEFAULT_GRIDFS_BUCKET_OPTIONS[keys[i]];
  33. }
  34. }
  35. } else {
  36. options = DEFAULT_GRIDFS_BUCKET_OPTIONS;
  37. }
  38. this.s = {
  39. db: db,
  40. options: options,
  41. _chunksCollection: db.collection(options.bucketName + '.chunks'),
  42. _filesCollection: db.collection(options.bucketName + '.files'),
  43. checkedIndexes: false,
  44. calledOpenUploadStream: false,
  45. promiseLibrary: db.s.promiseLibrary ||
  46. (typeof global.Promise == 'function' ? global.Promise : require('es6-promise').Promise)
  47. };
  48. }
  49. util.inherits(GridFSBucket, Emitter);
  50. /**
  51. * When the first call to openUploadStream is made, the upload stream will
  52. * check to see if it needs to create the proper indexes on the chunks and
  53. * files collections. This event is fired either when 1) it determines that
  54. * no index creation is necessary, 2) when it successfully creates the
  55. * necessary indexes.
  56. *
  57. * @event GridFSBucket#index
  58. * @type {Error}
  59. */
  60. /**
  61. * Returns a writable stream (GridFSBucketWriteStream) for writing
  62. * buffers to GridFS. The stream's 'id' property contains the resulting
  63. * file's id.
  64. * @method
  65. * @param {string} filename The value of the 'filename' key in the files doc
  66. * @param {object} [options=null] Optional settings.
  67. * @param {number} [options.chunkSizeBytes=null] Optional overwrite this bucket's chunkSizeBytes for this file
  68. * @param {object} [options.metadata=null] Optional object to store in the file document's `metadata` field
  69. * @param {string} [options.contentType=null] Optional string to store in the file document's `contentType` field
  70. * @param {array} [options.aliases=null] Optional array of strings to store in the file document's `aliases` field
  71. * @return {GridFSBucketWriteStream}
  72. */
  73. GridFSBucket.prototype.openUploadStream = function(filename, options) {
  74. if (options) {
  75. options = shallowClone(options);
  76. } else {
  77. options = {};
  78. }
  79. if (!options.chunkSizeBytes) {
  80. options.chunkSizeBytes = this.s.options.chunkSizeBytes;
  81. }
  82. return new GridFSBucketWriteStream(this, filename, options);
  83. };
  84. /**
  85. * Returns a writable stream (GridFSBucketWriteStream) for writing
  86. * buffers to GridFS for a custom file id. The stream's 'id' property contains the resulting
  87. * file's id.
  88. * @method
  89. * @param {string|number|object} id A custom id used to identify the file
  90. * @param {string} filename The value of the 'filename' key in the files doc
  91. * @param {object} [options=null] Optional settings.
  92. * @param {number} [options.chunkSizeBytes=null] Optional overwrite this bucket's chunkSizeBytes for this file
  93. * @param {object} [options.metadata=null] Optional object to store in the file document's `metadata` field
  94. * @param {string} [options.contentType=null] Optional string to store in the file document's `contentType` field
  95. * @param {array} [options.aliases=null] Optional array of strings to store in the file document's `aliases` field
  96. * @return {GridFSBucketWriteStream}
  97. */
  98. GridFSBucket.prototype.openUploadStreamWithId = function(id, filename, options) {
  99. if (options) {
  100. options = shallowClone(options);
  101. } else {
  102. options = {};
  103. }
  104. if (!options.chunkSizeBytes) {
  105. options.chunkSizeBytes = this.s.options.chunkSizeBytes;
  106. }
  107. options.id = id;
  108. return new GridFSBucketWriteStream(this, filename, options);
  109. };
  110. /**
  111. * Returns a readable stream (GridFSBucketReadStream) for streaming file
  112. * data from GridFS.
  113. * @method
  114. * @param {ObjectId} id The id of the file doc
  115. * @param {Object} [options=null] Optional settings.
  116. * @param {Number} [options.start=null] Optional 0-based offset in bytes to start streaming from
  117. * @param {Number} [options.end=null] Optional 0-based offset in bytes to stop streaming before
  118. * @return {GridFSBucketReadStream}
  119. */
  120. GridFSBucket.prototype.openDownloadStream = function(id, options) {
  121. var filter = { _id: id };
  122. options = {
  123. start: options && options.start,
  124. end: options && options.end
  125. };
  126. return new GridFSBucketReadStream(this.s._chunksCollection,
  127. this.s._filesCollection, this.s.options.readPreference, filter, options);
  128. };
  129. /**
  130. * Deletes a file with the given id
  131. * @method
  132. * @param {ObjectId} id The id of the file doc
  133. * @param {GridFSBucket~errorCallback} [callback]
  134. */
  135. GridFSBucket.prototype.delete = function(id, callback) {
  136. if (typeof callback === 'function') {
  137. return _delete(this, id, callback);
  138. }
  139. var _this = this;
  140. return new this.s.promiseLibrary(function(resolve, reject) {
  141. _delete(_this, id, function(error, res) {
  142. if (error) {
  143. reject(error);
  144. } else {
  145. resolve(res);
  146. }
  147. });
  148. });
  149. };
  150. /**
  151. * @ignore
  152. */
  153. function _delete(_this, id, callback) {
  154. _this.s._filesCollection.deleteOne({ _id: id }, function(error, res) {
  155. if (error) {
  156. return callback(error);
  157. }
  158. _this.s._chunksCollection.deleteMany({ files_id: id }, function(error) {
  159. if (error) {
  160. return callback(error);
  161. }
  162. // Delete orphaned chunks before returning FileNotFound
  163. if (!res.result.n) {
  164. var errmsg = 'FileNotFound: no file with id ' + id + ' found';
  165. return callback(new Error(errmsg));
  166. }
  167. callback();
  168. });
  169. });
  170. }
  171. /**
  172. * Convenience wrapper around find on the files collection
  173. * @method
  174. * @param {Object} filter
  175. * @param {Object} [options=null] Optional settings for cursor
  176. * @param {number} [options.batchSize=null] Optional batch size for cursor
  177. * @param {number} [options.limit=null] Optional limit for cursor
  178. * @param {number} [options.maxTimeMS=null] Optional maxTimeMS for cursor
  179. * @param {boolean} [options.noCursorTimeout=null] Optionally set cursor's `noCursorTimeout` flag
  180. * @param {number} [options.skip=null] Optional skip for cursor
  181. * @param {object} [options.sort=null] Optional sort for cursor
  182. * @return {Cursor}
  183. */
  184. GridFSBucket.prototype.find = function(filter, options) {
  185. filter = filter || {};
  186. options = options || {};
  187. var cursor = this.s._filesCollection.find(filter);
  188. if (options.batchSize != null) {
  189. cursor.batchSize(options.batchSize);
  190. }
  191. if (options.limit != null) {
  192. cursor.limit(options.limit);
  193. }
  194. if (options.maxTimeMS != null) {
  195. cursor.maxTimeMS(options.maxTimeMS);
  196. }
  197. if (options.noCursorTimeout != null) {
  198. cursor.addCursorFlag('noCursorTimeout', options.noCursorTimeout);
  199. }
  200. if (options.skip != null) {
  201. cursor.skip(options.skip);
  202. }
  203. if (options.sort != null) {
  204. cursor.sort(options.sort);
  205. }
  206. return cursor;
  207. };
  208. /**
  209. * Returns a readable stream (GridFSBucketReadStream) for streaming the
  210. * file with the given name from GridFS. If there are multiple files with
  211. * the same name, this will stream the most recent file with the given name
  212. * (as determined by the `uploadDate` field). You can set the `revision`
  213. * option to change this behavior.
  214. * @method
  215. * @param {String} filename The name of the file to stream
  216. * @param {Object} [options=null] Optional settings
  217. * @param {number} [options.revision=-1] The revision number relative to the oldest file with the given filename. 0 gets you the oldest file, 1 gets you the 2nd oldest, -1 gets you the newest.
  218. * @param {Number} [options.start=null] Optional 0-based offset in bytes to start streaming from
  219. * @param {Number} [options.end=null] Optional 0-based offset in bytes to stop streaming before
  220. * @return {GridFSBucketReadStream}
  221. */
  222. GridFSBucket.prototype.openDownloadStreamByName = function(filename, options) {
  223. var sort = { uploadDate: -1 };
  224. var skip = null;
  225. if (options && options.revision != null) {
  226. if (options.revision >= 0) {
  227. sort = { uploadDate: 1 };
  228. skip = options.revision;
  229. } else {
  230. skip = -options.revision - 1;
  231. }
  232. }
  233. var filter = { filename: filename };
  234. options = {
  235. sort: sort,
  236. skip: skip,
  237. start: options && options.start,
  238. end: options && options.end
  239. };
  240. return new GridFSBucketReadStream(this.s._chunksCollection,
  241. this.s._filesCollection, this.s.options.readPreference, filter, options);
  242. };
  243. /**
  244. * Renames the file with the given _id to the given string
  245. * @method
  246. * @param {ObjectId} id the id of the file to rename
  247. * @param {String} filename new name for the file
  248. * @param {GridFSBucket~errorCallback} [callback]
  249. */
  250. GridFSBucket.prototype.rename = function(id, filename, callback) {
  251. if (typeof callback === 'function') {
  252. return _rename(this, id, filename, callback);
  253. }
  254. var _this = this;
  255. return new this.s.promiseLibrary(function(resolve, reject) {
  256. _rename(_this, id, filename, function(error, res) {
  257. if (error) {
  258. reject(error);
  259. } else {
  260. resolve(res);
  261. }
  262. });
  263. });
  264. };
  265. /**
  266. * @ignore
  267. */
  268. function _rename(_this, id, filename, callback) {
  269. var filter = { _id: id };
  270. var update = { $set: { filename: filename } };
  271. _this.s._filesCollection.updateOne(filter, update, function(error, res) {
  272. if (error) {
  273. return callback(error);
  274. }
  275. if (!res.result.n) {
  276. return callback(toError('File with id ' + id + ' not found'));
  277. }
  278. callback();
  279. });
  280. }
  281. /**
  282. * Removes this bucket's files collection, followed by its chunks collection.
  283. * @method
  284. * @param {GridFSBucket~errorCallback} [callback]
  285. */
  286. GridFSBucket.prototype.drop = function(callback) {
  287. if (typeof callback === 'function') {
  288. return _drop(this, callback);
  289. }
  290. var _this = this;
  291. return new this.s.promiseLibrary(function(resolve, reject) {
  292. _drop(_this, function(error, res) {
  293. if (error) {
  294. reject(error);
  295. } else {
  296. resolve(res);
  297. }
  298. });
  299. });
  300. };
  301. /**
  302. * @ignore
  303. */
  304. function _drop(_this, callback) {
  305. _this.s._filesCollection.drop(function(error) {
  306. if (error) {
  307. return callback(error);
  308. }
  309. _this.s._chunksCollection.drop(function(error) {
  310. if (error) {
  311. return callback(error);
  312. }
  313. return callback();
  314. });
  315. });
  316. }
  317. /**
  318. * Callback format for all GridFSBucket methods that can accept a callback.
  319. * @callback GridFSBucket~errorCallback
  320. * @param {MongoError} error An error instance representing any errors that occurred
  321. */