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
|
|
|
|
2019-03-21 12:33:14 +03:00
|
|
|
routeIfAlreadyAuthenticated: 'home',
|
2017-03-14 19:04:46 +03:00
|
|
|
|
|
|
|
beforeModel() {
|
|
|
|
let authUrl = this.get('ghostPaths.url').api('authentication', 'setup');
|
|
|
|
|
|
|
|
// check the state of the setup process via the API
|
2019-03-06 16:53:54 +03:00
|
|
|
return this.ajax.request(authUrl).then((result) => {
|
2017-03-14 19:04:46 +03:00
|
|
|
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
|
2019-03-06 16:53:54 +03:00
|
|
|
if (this.session.get('isAuthenticated')) {
|
|
|
|
let routeIfAlreadyAuthenticated = this.routeIfAlreadyAuthenticated;
|
2017-03-14 19:04:46 +03:00
|
|
|
|
|
|
|
return this.transitionTo(routeIfAlreadyAuthenticated);
|
|
|
|
} else {
|
|
|
|
return this._super(...arguments);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|