mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
7abcc43907
closes #5617 - Replace all hard-coded server-side strings with i18n translations
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
var config = require('../config'),
|
|
Promise = require('bluebird'),
|
|
fs = require('fs-extra'),
|
|
storage = require('../storage'),
|
|
errors = require('../errors'),
|
|
utils = require('./utils'),
|
|
i18n = require('../i18n'),
|
|
|
|
upload;
|
|
|
|
/**
|
|
* ## Upload API Methods
|
|
*
|
|
* **See:** [API Methods](index.js.html#api%20methods)
|
|
*/
|
|
upload = {
|
|
|
|
/**
|
|
* ### Add Image
|
|
*
|
|
* @public
|
|
* @param {{context}} options
|
|
* @returns {Promise} Success
|
|
*/
|
|
add: function (options) {
|
|
var store = storage.getStorage(),
|
|
filepath;
|
|
|
|
// Check if a file was provided
|
|
if (!utils.checkFileExists(options, 'uploadimage')) {
|
|
return Promise.reject(new errors.NoPermissionError(i18n.t('errors.api.upload.pleaseSelectImage')));
|
|
}
|
|
|
|
// Check if the file is valid
|
|
if (!utils.checkFileIsValid(options.uploadimage, config.uploads.contentTypes, config.uploads.extensions)) {
|
|
return Promise.reject(new errors.UnsupportedMediaTypeError(i18n.t('errors.api.upload.pleaseSelectValidImage')));
|
|
}
|
|
|
|
filepath = options.uploadimage.path;
|
|
|
|
return store.save(options.uploadimage).then(function (url) {
|
|
return url;
|
|
}).finally(function () {
|
|
// Remove uploaded file from tmp location
|
|
return Promise.promisify(fs.unlink)(filepath);
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = upload;
|