2015-05-13 08:27:59 +03:00
|
|
|
import Ember from 'ember';
|
2015-11-04 18:20:11 +03:00
|
|
|
import AuthConfiguration from 'ember-simple-auth/configuration';
|
2015-10-18 21:17:02 +03:00
|
|
|
import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ShortcutsRoute from 'ghost-admin/mixins/shortcuts-route';
|
|
|
|
import ctrlOrCmd from 'ghost-admin/utils/ctrl-or-cmd';
|
|
|
|
import windowProxy from 'ghost-admin/utils/window-proxy';
|
2014-06-19 23:44:44 +04:00
|
|
|
|
2016-01-19 16:03:27 +03:00
|
|
|
const {
|
|
|
|
Route,
|
2016-01-12 22:23:01 +03:00
|
|
|
inject: {service},
|
|
|
|
run
|
2016-01-19 16:03:27 +03:00
|
|
|
} = Ember;
|
2015-10-28 14:36:45 +03:00
|
|
|
|
|
|
|
function K() {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
let shortcuts = {};
|
2014-11-26 01:34:55 +03:00
|
|
|
|
2015-05-27 17:39:56 +03:00
|
|
|
shortcuts.esc = {action: 'closeMenus', scope: 'all'};
|
2015-10-28 14:36:45 +03:00
|
|
|
shortcuts[`${ctrlOrCmd}+s`] = {action: 'save', scope: 'all'};
|
2014-11-26 01:34:55 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
export default Route.extend(ApplicationRouteMixin, ShortcutsRoute, {
|
|
|
|
shortcuts,
|
2014-06-30 16:58:10 +04:00
|
|
|
|
2016-01-19 16:03:27 +03:00
|
|
|
config: service(),
|
2016-05-05 17:03:09 +03:00
|
|
|
feature: service(),
|
2016-01-19 16:03:27 +03:00
|
|
|
dropdown: service(),
|
|
|
|
notifications: service(),
|
2015-05-26 05:10:50 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
afterModel(model, transition) {
|
2016-05-05 17:03:09 +03:00
|
|
|
this._super(...arguments);
|
|
|
|
|
2015-10-18 21:17:02 +03:00
|
|
|
if (this.get('session.isAuthenticated')) {
|
2016-05-13 14:46:49 +03:00
|
|
|
this.set('appLoadTransition', transition);
|
2014-08-06 09:01:00 +04:00
|
|
|
transition.send('loadServerNotifications');
|
2016-05-05 17:03:09 +03:00
|
|
|
|
|
|
|
// return the feature loading promise so that we block until settings
|
|
|
|
// are loaded in order for synchronous access everywhere
|
|
|
|
return this.get('feature').fetch();
|
2014-08-06 09:01:00 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
title(tokens) {
|
|
|
|
return `${tokens.join(' - ')} - ${this.get('config.blogTitle')}`;
|
2014-11-25 23:56:08 +03:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
sessionAuthenticated() {
|
2015-11-18 13:50:48 +03:00
|
|
|
if (this.get('session.skipAuthSuccessHandler')) {
|
2015-10-18 21:17:02 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-05 17:03:09 +03:00
|
|
|
// standard ESA post-sign-in redirect
|
2015-10-18 21:17:02 +03:00
|
|
|
this._super(...arguments);
|
2016-05-05 17:03:09 +03:00
|
|
|
|
|
|
|
// trigger post-sign-in background behaviour
|
2015-10-28 14:36:45 +03:00
|
|
|
this.get('session.user').then((user) => {
|
|
|
|
this.send('signedIn', user);
|
2015-10-18 21:17:02 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
sessionInvalidated() {
|
2016-05-13 14:46:49 +03:00
|
|
|
let transition = this.get('appLoadTransition');
|
|
|
|
|
|
|
|
if (transition) {
|
|
|
|
transition.send('authorizationFailed');
|
|
|
|
} else {
|
|
|
|
run.scheduleOnce('routerTransitions', this, function () {
|
|
|
|
this.send('authorizationFailed');
|
|
|
|
});
|
|
|
|
}
|
2015-11-04 18:20:11 +03:00
|
|
|
},
|
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
actions: {
|
2015-10-28 14:36:45 +03:00
|
|
|
openMobileMenu() {
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.set('showMobileMenu', true);
|
2014-09-01 20:45:06 +04:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
openSettingsMenu() {
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.set('showSettingsMenu', true);
|
2014-09-15 04:40:24 +04:00
|
|
|
},
|
2014-07-31 23:15:55 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
closeMenus() {
|
2014-09-28 19:39:25 +04:00
|
|
|
this.get('dropdown').closeDropdowns();
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.setProperties({
|
|
|
|
showSettingsMenu: false,
|
|
|
|
showMobileMenu: false
|
|
|
|
});
|
2014-06-19 23:44:44 +04:00
|
|
|
},
|
2014-06-24 06:52:38 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
didTransition() {
|
2016-05-13 14:46:49 +03:00
|
|
|
this.set('appLoadTransition', null);
|
2015-08-20 17:44:52 +03:00
|
|
|
this.send('closeMenus');
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
signedIn() {
|
2015-10-07 17:44:23 +03:00
|
|
|
this.get('notifications').clearAll();
|
2014-06-30 01:45:03 +04:00
|
|
|
this.send('loadServerNotifications', true);
|
2014-05-15 03:36:13 +04:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
invalidateSession() {
|
|
|
|
this.get('session').invalidate().catch((error) => {
|
2015-10-18 21:17:02 +03:00
|
|
|
this.get('notifications').showAlert(error.message, {type: 'error', key: 'session.invalidate.failed'});
|
2014-07-30 00:49:26 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
authorizationFailed() {
|
2015-11-04 18:20:11 +03:00
|
|
|
windowProxy.replaceLocation(AuthConfiguration.baseURL);
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
loadServerNotifications(isDelayed) {
|
2015-10-18 21:17:02 +03:00
|
|
|
if (this.get('session.isAuthenticated')) {
|
2015-10-28 14:36:45 +03:00
|
|
|
this.get('session.user').then((user) => {
|
2015-04-14 18:04:16 +03:00
|
|
|
if (!user.get('isAuthor') && !user.get('isEditor')) {
|
2015-10-28 14:36:45 +03:00
|
|
|
this.store.findAll('notification', {reload: true}).then((serverNotifications) => {
|
|
|
|
serverNotifications.forEach((notification) => {
|
|
|
|
this.get('notifications').handleNotification(notification, isDelayed);
|
2015-04-14 18:04:16 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2014-06-30 01:45:03 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-18 13:50:48 +03:00
|
|
|
toggleMarkdownHelpModal() {
|
|
|
|
this.get('controller').toggleProperty('showMarkdownHelpModal');
|
|
|
|
},
|
|
|
|
|
2014-11-26 01:34:55 +03:00
|
|
|
// noop default for unhandled save (used from shortcuts)
|
2015-10-28 14:36:45 +03:00
|
|
|
save: K
|
2014-03-31 08:07:05 +04:00
|
|
|
}
|
|
|
|
});
|