Skip to content

Commit 3b96ad5

Browse files
authored
Merge pull request #392 from hsdhott/feature/set_ag_as_default_bugfix
Feature/set ag as default bugfix
2 parents f585513 + eb79e9c commit 3b96ad5

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

webapp/src/app/core/services/auth.service.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,21 @@ export class AuthService {
6666
}
6767

6868
doLogout() {
69-
this.dataStore.clearAll(); // Calling clear session from data store
70-
localStorage.setItem('logout', 'true');
71-
localStorage.removeItem('logout');
72-
7369
if (this.adAuthentication) {
70+
this.clearSessionStorage();
7471
this.adalService.logout();
7572
} else {
7673
this.onPremAuthentication.logout();
74+
this.clearSessionStorage();
7775
}
7876
}
7977

78+
clearSessionStorage() {
79+
this.dataStore.clearAll(); // Calling clear session from data store
80+
localStorage.setItem('logout', 'true');
81+
localStorage.removeItem('logout');
82+
}
83+
8084
authenticateUserOnPrem(url, method, payload, headers) {
8185

8286
return this.httpService.getHttpResponse(url, method, payload, {}, headers)

webapp/src/app/core/services/request-interceptor.service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ export class RequestInterceptorService implements HttpInterceptor {
2828
if (req.url.includes('user/authorize') || req.url.includes('user/login') || req.url.includes('refreshtoken')) {
2929
this.loggerService.log('info', 'Not adding the access token for this api - ' + req.url);
3030
return next.handle(req);
31+
} else if (req.url.includes('user/logout-session')) {
32+
this.loggerService.log('info', 'Do not retry when logging user out - ' + req.url);
33+
return next.handle(this.addToken(req, authService.getAuthToken()));
3134
}
3235
return next.handle(this.addToken(req, authService.getAuthToken())).pipe(
3336
catchError(error => {

webapp/src/environments/environment.prod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ export const environment = {
426426
method: 'GET'
427427
},
428428
logout: {
429-
url: '{{baseUrl}}/user/logout-session',
429+
url: '{{baseUrl}}/auth/user/logout-session',
430430
method: 'GET'
431431
},
432432
refresh: {

webapp/src/environments/environment.stg.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ export const environment = {
426426
method: 'GET'
427427
},
428428
logout: {
429-
url: '{{baseUrl}}/user/logout-session',
429+
url: '{{baseUrl}}/auth/user/logout-session',
430430
method: 'GET'
431431
},
432432
refresh: {

webapp/src/environments/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ export const environment = {
426426
method: 'GET'
427427
},
428428
logout: {
429-
url: '{{baseUrl}}/user/logout-session',
429+
url: '{{baseUrl}}/auth/user/logout-session',
430430
method: 'GET'
431431
},
432432
refresh: {

0 commit comments

Comments
 (0)