mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
1b965fab95
no issue Move `core/server/scheduling` to `core/server/adapters/scheduling` and `core/server/storage` to `core/server/adapters/storage`
32 lines
718 B
JavaScript
32 lines
718 B
JavaScript
var Promise = require('bluebird'),
|
|
fs = require('fs-extra'),
|
|
pUnlink = Promise.promisify(fs.unlink),
|
|
storage = require('../adapters/storage'),
|
|
upload;
|
|
|
|
/**
|
|
* ## Upload API Methods
|
|
*
|
|
* **See:** [API Methods](index.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 pUnlink(options.path);
|
|
});
|
|
})
|
|
};
|
|
|
|
module.exports = upload;
|