Ghost/ghost/admin/app/routes/application.js
Kevin Ansfield 074346f6ce Fix auth regressions after ESA 1.0 upgrade
refs #6039, closes #6047, closes #6048

- delete old/unused fixtures file
- add failing tests for #6047 & #6048
- redirect to sign-in if we get a 401 when making an API request
- fix incorrect `this.notifications` call in tag controller
- raise `authorizationFailed` action in application route's `sessionInvalidated` hook so that it can be handled by leaf routes (fixes re-auth modal display)
- close "saving failed" alert when successfully re-authenticated
- adds a "window-proxy" util so that we can override `window.*` operations in tests
- fix `gh-selectize` attempting to register event handlers when the component has already been destroyed
2015-11-12 12:56:27 +00:00

150 lines
4.7 KiB
JavaScript

/* global key */
import Ember from 'ember';
import AuthConfiguration from 'ember-simple-auth/configuration';
import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin';
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
import ctrlOrCmd from 'ghost/utils/ctrl-or-cmd';
import windowProxy from 'ghost/utils/window-proxy';
const shortcuts = {};
shortcuts.esc = {action: 'closeMenus', scope: 'all'};
shortcuts.enter = {action: 'confirmModal', scope: 'modal'};
shortcuts[ctrlOrCmd + '+s'] = {action: 'save', scope: 'all'};
export default Ember.Route.extend(ApplicationRouteMixin, ShortcutsRoute, {
shortcuts: shortcuts,
config: Ember.inject.service(),
dropdown: Ember.inject.service(),
notifications: Ember.inject.service(),
afterModel: function (model, transition) {
if (this.get('session.isAuthenticated')) {
transition.send('loadServerNotifications');
}
},
title: function (tokens) {
return tokens.join(' - ') + ' - ' + this.get('config.blogTitle');
},
sessionAuthenticated: function () {
const appController = this.controllerFor('application'),
self = this;
if (appController && appController.get('skipAuthSuccessHandler')) {
return;
}
this._super(...arguments);
this.get('session.user').then(function (user) {
self.send('signedIn', user);
});
},
sessionInvalidated: function () {
this.send('authorizationFailed');
},
actions: {
openMobileMenu: function () {
this.controller.set('showMobileMenu', true);
},
openSettingsMenu: function () {
this.controller.set('showSettingsMenu', true);
},
closeMenus: function () {
this.get('dropdown').closeDropdowns();
this.send('closeModal');
this.controller.setProperties({
showSettingsMenu: false,
showMobileMenu: false
});
},
didTransition: function () {
this.send('closeMenus');
},
signedIn: function () {
this.get('notifications').clearAll();
this.send('loadServerNotifications', true);
},
invalidateSession: function () {
this.get('session').invalidate().catch(function (error) {
this.get('notifications').showAlert(error.message, {type: 'error', key: 'session.invalidate.failed'});
});
},
authorizationFailed: function () {
windowProxy.replaceLocation(AuthConfiguration.baseURL);
},
openModal: function (modalName, model, type) {
this.get('dropdown').closeDropdowns();
key.setScope('modal');
modalName = 'modals/' + modalName;
this.set('modalName', modalName);
// We don't always require a modal to have a controller
// so we're skipping asserting if one exists
if (this.controllerFor(modalName, true)) {
this.controllerFor(modalName).set('model', model);
if (type) {
this.controllerFor(modalName).set('imageType', type);
this.controllerFor(modalName).set('src', model.get(type));
}
}
return this.render(modalName, {
into: 'application',
outlet: 'modal'
});
},
confirmModal: function () {
let modalName = this.get('modalName');
this.send('closeModal');
if (this.controllerFor(modalName, true)) {
this.controllerFor(modalName).send('confirmAccept');
}
},
closeModal: function () {
this.disconnectOutlet({
outlet: 'modal',
parentView: 'application'
});
key.setScope('default');
},
loadServerNotifications: function (isDelayed) {
let self = this;
if (this.get('session.isAuthenticated')) {
this.get('session.user').then(function (user) {
if (!user.get('isAuthor') && !user.get('isEditor')) {
self.store.findAll('notification', {reload: true}).then(function (serverNotifications) {
serverNotifications.forEach(function (notification) {
self.get('notifications').handleNotification(notification, isDelayed);
});
});
}
});
}
},
// noop default for unhandled save (used from shortcuts)
save: Ember.K
}
});