Merge pull request #4502 from FinnStutzenstein/fixRedirectionOnDelayedWhoAmI
Fixed redirection on login subpages (fixed #4474)
This commit is contained in:
commit
7734a502d8
@ -66,18 +66,7 @@ export class OpenSlidesService {
|
|||||||
const response = await this.operator.whoAmIFromStorage();
|
const response = await this.operator.whoAmIFromStorage();
|
||||||
if (!response.user && !response.guest_enabled) {
|
if (!response.user && !response.guest_enabled) {
|
||||||
this.redirectUrl = location.pathname;
|
this.redirectUrl = location.pathname;
|
||||||
|
this.redirectToLoginIfNotSubpage();
|
||||||
// let the use navigate and reload on every login-page
|
|
||||||
if (this.redirectUrl.includes('/login/')) {
|
|
||||||
// Allow free navigation in the children of the login page
|
|
||||||
// required for resetting password and direct navigation to legal notice
|
|
||||||
// and privacy policy.
|
|
||||||
this.router.navigate([this.redirectUrl]);
|
|
||||||
} else {
|
|
||||||
// Goto login, if the user isn't login and guests are not allowed
|
|
||||||
this.router.navigate(['/login']);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.checkOperator(false);
|
this.checkOperator(false);
|
||||||
} else {
|
} else {
|
||||||
await this.afterLoginBootup(response.user_id);
|
await this.afterLoginBootup(response.user_id);
|
||||||
@ -88,6 +77,17 @@ export class OpenSlidesService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirects the user to /login, if he isn't on a subpage.
|
||||||
|
*/
|
||||||
|
private redirectToLoginIfNotSubpage(): void {
|
||||||
|
if (!this.redirectUrl.includes('/login/')) {
|
||||||
|
// Goto login, if the user isn't on a subpage like
|
||||||
|
// legal notice or reset passwort view.
|
||||||
|
this.router.navigate(['/login']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the login bootup-sequence: Check (and maybe clear) the cache und setup the DataStore
|
* the login bootup-sequence: Check (and maybe clear) the cache und setup the DataStore
|
||||||
* and websocket. This "login" also may be the "login" of an anonymous when he is using
|
* and websocket. This "login" also may be the "login" of an anonymous when he is using
|
||||||
@ -152,7 +152,7 @@ export class OpenSlidesService {
|
|||||||
// User logged off.
|
// User logged off.
|
||||||
if (!response.user && !response.guest_enabled) {
|
if (!response.user && !response.guest_enabled) {
|
||||||
await this.shutdown();
|
await this.shutdown();
|
||||||
this.router.navigate(['/login']);
|
this.redirectToLoginIfNotSubpage();
|
||||||
} else {
|
} else {
|
||||||
if (
|
if (
|
||||||
(this.operator.user && this.operator.user.id !== response.user_id) ||
|
(this.operator.user && this.operator.user.id !== response.user_id) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user