mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
a3091a3012
refs #9178
31 lines
675 B
JavaScript
31 lines
675 B
JavaScript
var Promise = require('bluebird'),
|
|
fs = require('fs-extra'),
|
|
storage = require('../adapters/storage'),
|
|
upload;
|
|
|
|
/**
|
|
* ## Upload API Methods
|
|
*
|
|
* **See:** [API Methods](constants.js.html#api%20methods)
|
|
*/
|
|
upload = {
|
|
|
|
/**
|
|
* ### Add Image
|
|
*
|
|
* @public
|
|
* @param {{context}} options
|
|
* @returns {Promise<String>} location of uploaded file
|
|
*/
|
|
add: Promise.method(function (options) {
|
|
var store = storage.getStorage();
|
|
|
|
return store.save(options).finally(function () {
|
|
// Remove uploaded file from tmp location
|
|
return fs.unlink(options.path);
|
|
});
|
|
})
|
|
};
|
|
|
|
module.exports = upload;
|