mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
4cd78e3e4d
closes #3728 - If the mail config is broken, the ajax call will fail with 500 and not return an error. - This change catches 500 and wraps the error in a notification.
66 lines
2.2 KiB
JavaScript
66 lines
2.2 KiB
JavaScript
var DebugController = Ember.Controller.extend(Ember.Evented, {
|
|
uploadButtonText: 'Import',
|
|
importErrors: '',
|
|
|
|
actions: {
|
|
onUpload: function (file) {
|
|
var self = this,
|
|
formData = new FormData();
|
|
|
|
this.set('uploadButtonText', 'Importing');
|
|
this.notifications.closePassive();
|
|
|
|
formData.append('importfile', file);
|
|
|
|
ic.ajax.request(this.get('ghostPaths.url').api('db'), {
|
|
type: 'POST',
|
|
data: formData,
|
|
dataType: 'json',
|
|
cache: false,
|
|
contentType: false,
|
|
processData: false
|
|
}).then(function () {
|
|
self.notifications.showSuccess('Import successful.');
|
|
}).catch(function (response) {
|
|
if (response && response.jqXHR && response.jqXHR.responseJSON && response.jqXHR.responseJSON.errors) {
|
|
self.set('importErrors', response.jqXHR.responseJSON.errors);
|
|
}
|
|
self.notifications.showError('Import Failed');
|
|
}).finally(function () {
|
|
self.set('uploadButtonText', 'Import');
|
|
self.trigger('reset');
|
|
});
|
|
},
|
|
|
|
exportData: function () {
|
|
var iframe = $('#iframeDownload'),
|
|
downloadURL = this.get('ghostPaths.url').api('db') +
|
|
'?access_token=' + this.get('session.access_token');
|
|
|
|
if (iframe.length === 0) {
|
|
iframe = $('<iframe>', { id: 'iframeDownload' }).hide().appendTo('body');
|
|
}
|
|
|
|
iframe.attr('src', downloadURL);
|
|
},
|
|
|
|
sendTestEmail: function () {
|
|
var self = this;
|
|
|
|
ic.ajax.request(this.get('ghostPaths.url').api('mail', 'test'), {
|
|
type: 'POST'
|
|
}).then(function () {
|
|
self.notifications.showSuccess('Check your email for the test message.');
|
|
}).catch(function (error) {
|
|
if (typeof error.jqXHR !== 'undefined') {
|
|
self.notifications.showAPIError(error);
|
|
} else {
|
|
self.notifications.showErrors(error);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
export default DebugController;
|