mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
5c0b63f300
closes #5630 - upgrade ember-cli to latest version - upgrade ember to latest 1.13.x release - upgrade ember data to latest 1.13.x release - update custom adapters and serialisers for new internal JSON-API compatible formats [(docs)][1] - update all store queries to use new standardised query methods [(docs)][2] - add ember-data-filter addon ready for store.filter removal in ember-data 2.0 [(docs)][3] - remove use of prototype extensions for computed properties and observers - consolidate pagination into a single route mixin and simplify configuration [1]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_transition-to-the-new-jsonserializer-and-restserializer-apis [2]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_simplified-find-methods [3]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_ds-store-filter-moved-to-an-addon
102 lines
3.5 KiB
JavaScript
102 lines
3.5 KiB
JavaScript
import Ember from 'ember';
|
|
import {request as ajax} from 'ic-ajax';
|
|
|
|
export default Ember.Controller.extend({
|
|
uploadButtonText: 'Import',
|
|
importErrors: '',
|
|
submitting: false,
|
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
notifications: Ember.inject.service(),
|
|
|
|
labsJSON: Ember.computed('model.labs', function () {
|
|
return JSON.parse(this.get('model.labs') || {});
|
|
}),
|
|
|
|
saveLabs: function (optionName, optionValue) {
|
|
var self = this,
|
|
labsJSON = this.get('labsJSON');
|
|
|
|
// Set new value in the JSON object
|
|
labsJSON[optionName] = optionValue;
|
|
|
|
this.set('model.labs', JSON.stringify(labsJSON));
|
|
|
|
this.get('model').save().catch(function (errors) {
|
|
self.showErrors(errors);
|
|
self.get('model').rollbackAttributes();
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
onUpload: function (file) {
|
|
var self = this,
|
|
formData = new FormData(),
|
|
notifications = this.get('notifications'),
|
|
currentUserId = this.get('session.user.id');
|
|
|
|
this.set('uploadButtonText', 'Importing');
|
|
this.set('importErrors', '');
|
|
|
|
formData.append('importfile', file);
|
|
|
|
ajax(this.get('ghostPaths.url').api('db'), {
|
|
type: 'POST',
|
|
data: formData,
|
|
dataType: 'json',
|
|
cache: false,
|
|
contentType: false,
|
|
processData: false
|
|
}).then(function () {
|
|
// Clear the store, so that all the new data gets fetched correctly.
|
|
self.store.unloadAll();
|
|
// Reload currentUser and set session
|
|
self.set('session.user', self.store.findRecord('user', currentUserId));
|
|
// TODO: keep as notification, add link to view content
|
|
notifications.showNotification('Import successful.');
|
|
}).catch(function (response) {
|
|
if (response && response.jqXHR && response.jqXHR.responseJSON && response.jqXHR.responseJSON.errors) {
|
|
self.set('importErrors', response.jqXHR.responseJSON.errors);
|
|
}
|
|
|
|
notifications.showAlert('Import Failed', {type: 'error'});
|
|
}).finally(function () {
|
|
self.set('uploadButtonText', 'Import');
|
|
});
|
|
},
|
|
|
|
exportData: function () {
|
|
var iframe = $('#iframeDownload'),
|
|
downloadURL = this.get('ghostPaths.url').api('db') +
|
|
'?access_token=' + this.get('session.secure.access_token');
|
|
|
|
if (iframe.length === 0) {
|
|
iframe = $('<iframe>', {id: 'iframeDownload'}).hide().appendTo('body');
|
|
}
|
|
|
|
iframe.attr('src', downloadURL);
|
|
},
|
|
|
|
sendTestEmail: function () {
|
|
var notifications = this.get('notifications'),
|
|
self = this;
|
|
|
|
this.toggleProperty('submitting');
|
|
|
|
ajax(this.get('ghostPaths.url').api('mail', 'test'), {
|
|
type: 'POST'
|
|
}).then(function () {
|
|
notifications.showAlert('Check your email for the test message.', {type: 'info'});
|
|
self.toggleProperty('submitting');
|
|
}).catch(function (error) {
|
|
if (typeof error.jqXHR !== 'undefined') {
|
|
notifications.showAPIError(error);
|
|
} else {
|
|
notifications.showErrors(error);
|
|
}
|
|
self.toggleProperty('submitting');
|
|
});
|
|
}
|
|
}
|
|
});
|