Skip to content

Commit

Permalink
Fix login errors with the BASIC authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
alep85 committed Jul 10, 2023
1 parent 2d01336 commit a02610b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Authentication } from '../authentication';
import { AuthenticationInterceptor, SHOULD_ADD_AUTH_TOKEN } from './authentication.interceptor';

class MockAuthentication extends Authentication {
addTokenToHeader(httpHeaders: HttpHeaders): Observable<HttpHeaders> {
addTokenToHeader(_: string, httpHeaders: HttpHeaders): Observable<HttpHeaders> {
return of(httpHeaders);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class AuthenticationInterceptor implements HttpInterceptor {
Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>> {

if (req.context.get(SHOULD_ADD_AUTH_TOKEN)) {
return this.authService.addTokenToHeader(req.headers).pipe(
return this.authService.addTokenToHeader(req.url, req.headers).pipe(
mergeMap((headersWithBearer) => {
const headerWithContentType = this.appendJsonContentType(headersWithBearer);
const kcReq = req.clone({ headers: headerWithContentType});
Expand Down
2 changes: 1 addition & 1 deletion lib/core/auth/src/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ import { HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';

export abstract class Authentication {
public abstract addTokenToHeader(headers: HttpHeaders): Observable<HttpHeaders>;
public abstract addTokenToHeader(requestUrl: string, headers: HttpHeaders): Observable<HttpHeaders>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Authentication } from '../interfaces/authentication.interface';
import { CookieService } from '../../common/services/cookie.service';
import { ContentAuth } from './content-auth';
import { ProcessAuth } from './process-auth';
import { map } from 'rxjs/operators';
import { catchError, map } from 'rxjs/operators';
import { from, Observable } from 'rxjs';
import { RedirectionModel } from '../models/redirection.model';
import { BaseAuthenticationService } from '../services/base-authentication.service';
Expand Down Expand Up @@ -97,7 +97,8 @@ export class BasicAlfrescoAuthService extends BaseAuthenticationService {
type: this.appConfig.get(AppConfigValues.PROVIDERS),
ticket: response
};
})
}),
catchError((err) => this.handleError(err))
);
}

Expand Down Expand Up @@ -337,8 +338,8 @@ export class BasicAlfrescoAuthService extends BaseAuthenticationService {
private getTicketEcmBase64(requestUrl: string): string | null {
let ticket = null;

const contextRootBpm = this.appConfig.get<string>(AppConfigValues.CONTEXTROOTBPM);
const contextRoot = this.appConfig.get<string>(AppConfigValues.CONTEXTROOTECM);
const contextRootBpm = this.appConfig.get<string>(AppConfigValues.CONTEXTROOTBPM) || 'activiti-app';
const contextRoot = this.appConfig.get<string>(AppConfigValues.CONTEXTROOTECM) || 'alfresco';

if (contextRoot && requestUrl.indexOf(contextRoot) !== -1) {
ticket = 'Basic ' + btoa(this.contentAuth.getToken());
Expand Down
6 changes: 3 additions & 3 deletions lib/core/src/lib/auth/basic-auth/content-auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ export class ContentAuth {
.catch((error) => {
this.saveUsername('');
if (error.status === 401) {
this.adfHttpClient.emit('unauthorized');
this.adfHttpClient.emit('unauthorized', error);
this.onError.next('unauthorized');
} else if (error.status === 403) {
this.adfHttpClient.emit('forbidden');
this.adfHttpClient.emit('forbidden', error);
this.onError.next('forbidden');
} else {
this.adfHttpClient.emit('error');
this.adfHttpClient.emit('error', error);
this.onError.next('error');
}
reject(error);
Expand Down
6 changes: 3 additions & 3 deletions lib/core/src/lib/auth/basic-auth/process-auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ export class ProcessAuth {
(error) => {
this.saveUsername('');
if (error.status === 401) {
this.adfHttpClient.emit('unauthorized');
this.adfHttpClient.emit('unauthorized', error);
this.onError.next('unauthorized');
} else if (error.status === 403) {
this.adfHttpClient.emit('forbidden');
this.adfHttpClient.emit('forbidden', error);
this.onError.next('forbidden');
} else {
this.adfHttpClient.emit('error');
this.adfHttpClient.emit('error', error);
this.onError.next('error');
}
reject(error);
Expand Down

0 comments on commit a02610b

Please sign in to comment.