Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit b30ccbc

Browse files
authored
[Hotfix] LogOut Process (#66)
* remove callback from logout, spa will handle * simplify logout process and reduce line length
1 parent d32c969 commit b30ccbc

File tree

5 files changed

+13
-25
lines changed

5 files changed

+13
-25
lines changed

projects/cryptr/cryptr-angular/src/lib/auth.service.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe('AuthConfig', () => {
4545
expect(error).not.toBe(undefined);
4646
}
4747
expect(authService.ngOnDestroy()).not.toBe(null);
48-
expect(authService.logOut(null, window.location)).not.toBe(null);
48+
expect(authService.logOut(window.location)).not.toBe(null);
4949
});
5050
});
5151
});

projects/cryptr/cryptr-angular/src/lib/auth.service.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ export class AuthService implements OnDestroy {
3939
) {
4040
this.checkAuthentication();
4141
window.addEventListener(CryptrSpa.events.REFRESH_INVALID_GRANT, (RigError) => {
42-
this.logOut(null);
42+
this.logOut();
4343
});
4444
window.addEventListener(CryptrSpa.events.REFRESH_EXPIRED, (ReError) => {
45-
this.logOut(null);
45+
this.logOut();
4646
});
4747
}
4848

@@ -101,10 +101,11 @@ export class AuthService implements OnDestroy {
101101
* @param targetUrl - Optional | **Default:** `window.location.href`. Where to redirect after SLO process
102102
* @returns process logout of session with callback call
103103
*/
104-
logOut(callback: () => void, location: undefined | globalThis.Location = window.location, targetUrl?: string, sloAfterRevoke?: boolean): Observable<any> {
104+
logOut(location: undefined | globalThis.Location = window.location, targetUrl?: string, sloAfterRevoke?: boolean): Observable<any> {
105105
let target = targetUrl === undefined || targetUrl === 'undefined' ? window.location.href : targetUrl;
106106
target = this.sanitizeUrl(target, ['request_id'])
107-
return from(this.cryptrClient.logOut(this.preLogOutCallBack(callback), location, target, sloAfterRevoke || this.cryptrClient.config.default_slo_after_revoke));
107+
const executeSlo = sloAfterRevoke || this.cryptrClient.config.default_slo_after_revoke
108+
return from(this.cryptrClient.logOut(this.preLogOutCallBack(), location, target, executeSlo));
108109
}
109110

110111
/** @ignore */
@@ -284,10 +285,10 @@ export class AuthService implements OnDestroy {
284285
}
285286

286287
/** @ignore */
287-
private preLogOutCallBack(callback: () => void): () => void {
288+
private preLogOutCallBack(): () => void {
288289
this.updateCurrentAuthState(false);
289290
this.setUser(null);
290-
return callback;
291+
return null;
291292
}
292293

293294
/** @ignore */

projects/playground/src/app/components/nav/nav.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export class NavComponent implements OnInit {
3737
}
3838

3939

40-
logOut(popupStyle = 0): void {
41-
this.auth.logOut(() => alert('logged out'), window.location, this.redirectUri);
40+
logOut(_popupStyle = 0): void {
41+
this.auth.logOut(window.location, this.redirectUri);
4242
}
4343

4444
greetings(): string {

projects/playground/src/app/components/sidebar-nav/sidebar-nav.component.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ export class SidebarNavComponent implements OnInit {
1414
}
1515

1616

17-
logOut(popupStyle = 0): void {
18-
this.auth.logOut(() => {
19-
alert('logged out')
20-
});
17+
logOut(): void {
18+
this.auth.logOut();
2119
}
2220

2321
}

projects/playground/src/app/pages/home/home.component.ts

+1-12
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export class HomeComponent implements OnInit {
1717
constructor(public auth: AuthService, public http: HttpClient) { }
1818

1919
ngOnInit(): void {
20-
this.cryptrListeners();
2120
this.auth.currentAuthenticationObservable().subscribe((isAuthenticated: boolean) => {
2221
this.authenticated = isAuthenticated;
2322
});
@@ -29,18 +28,8 @@ export class HomeComponent implements OnInit {
2928
}
3029
}
3130

32-
cryptrListeners(): void {
33-
window.addEventListener(CryptrSpa.events.REFRESH_INVALID_GRANT, (e) => {
34-
this.logOut();
35-
});
36-
window.addEventListener(CryptrSpa.events.REFRESH_EXPIRED, (e) => {
37-
console.error(e);
38-
this.logOut();
39-
});
40-
}
41-
4231
logOut(): void {
43-
this.auth.logOut(() => alert('logged out'));
32+
this.auth.logOut();
4433
}
4534

4635
securedRoute(): string {

0 commit comments

Comments
 (0)