2017-08-22 10:53:26 +03:00
|
|
|
import Mixin from '@ember/object/mixin';
|
2017-10-30 12:38:01 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2017-03-14 19:04:46 +03:00
|
|
|
|
|
|
|
export default Mixin.create({
|
|
|
|
|
2017-10-30 12:38:01 +03:00
|
|
|
ajax: service(),
|
|
|
|
ghostPaths: service(),
|
|
|
|
session: service(),
|
2017-03-14 19:04:46 +03:00
|
|
|
|
|
|
|
routeIfAlreadyAuthenticated: 'posts',
|
|
|
|
|
|
|
|
beforeModel() {
|
|
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'setup');
|
|
|
|
|
|
|
|
// check the state of the setup process via the API
|
|
|
|
return this.get('ajax').request(authUrl).then((result) => {
|
|
|
|
let [setup] = result.setup;
|
|
|
|
|
|
|
|
if (setup.status !== true) {
|
|
|
|
this.transitionTo('setup');
|
|
|
|
} else {
|
|
|
|
// NOTE: this is the same as ESA's UnauthenticatedRouteMixin,
|
|
|
|
// adding that mixin to this and calling _super wasn't calling
|
|
|
|
// the ESA mixin's beforeModel method
|
|
|
|
if (this.get('session').get('isAuthenticated')) {
|
|
|
|
let routeIfAlreadyAuthenticated = this.get('routeIfAlreadyAuthenticated');
|
|
|
|
|
|
|
|
return this.transitionTo(routeIfAlreadyAuthenticated);
|
|
|
|
} else {
|
|
|
|
return this._super(...arguments);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|