mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* enable prefer-const rule for tslint, fix issues * Update content-node-selector.component.spec.ts * Update content-node-selector.component.spec.ts * fix const * fix lint issues * update tests * update tests * update tests * fix code * fix page class
326 lines
10 KiB
TypeScript
326 lines
10 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Injectable } from '@angular/core';
|
|
import { Observable, Subject, from, throwError, Observer } from 'rxjs';
|
|
import { AlfrescoApiService } from './alfresco-api.service';
|
|
import { CookieService } from './cookie.service';
|
|
import { LogService } from './log.service';
|
|
import { RedirectionModel } from '../models/redirection.model';
|
|
import { AppConfigService, AppConfigValues } from '../app-config/app-config.service';
|
|
import { UserRepresentation } from '@alfresco/js-api';
|
|
import { map, catchError, tap } from 'rxjs/operators';
|
|
import { HttpHeaders } from '@angular/common/http';
|
|
|
|
const REMEMBER_ME_COOKIE_KEY = 'ALFRESCO_REMEMBER_ME';
|
|
const REMEMBER_ME_UNTIL = 1000 * 60 * 60 * 24 * 30;
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class AuthenticationService {
|
|
private redirectUrl: RedirectionModel = null;
|
|
|
|
private bearerExcludedUrls: string[] = ['auth/realms', 'resources/', 'assets/'];
|
|
|
|
onLogin: Subject<any> = new Subject<any>();
|
|
onLogout: Subject<any> = new Subject<any>();
|
|
|
|
constructor(
|
|
private appConfig: AppConfigService,
|
|
private alfrescoApi: AlfrescoApiService,
|
|
private cookie: CookieService,
|
|
private logService: LogService) {
|
|
}
|
|
|
|
/**
|
|
* Checks if the user logged in.
|
|
* @returns True if logged in, false otherwise
|
|
*/
|
|
isLoggedIn(): boolean {
|
|
if (!this.isOauth() && this.cookie.isEnabled() && !this.isRememberMeSet()) {
|
|
return false;
|
|
}
|
|
return this.alfrescoApi.getInstance().isLoggedIn();
|
|
}
|
|
|
|
/**
|
|
* Does the provider support OAuth?
|
|
* @returns True if supported, false otherwise
|
|
*/
|
|
isOauth(): boolean {
|
|
return this.alfrescoApi.getInstance().isOauthConfiguration();
|
|
}
|
|
|
|
/**
|
|
* Does the provider support ECM?
|
|
* @returns True if supported, false otherwise
|
|
*/
|
|
isECMProvider(): boolean {
|
|
return this.alfrescoApi.getInstance().isEcmConfiguration();
|
|
}
|
|
|
|
/**
|
|
* Does the provider support BPM?
|
|
* @returns True if supported, false otherwise
|
|
*/
|
|
isBPMProvider(): boolean {
|
|
return this.alfrescoApi.getInstance().isBpmConfiguration();
|
|
}
|
|
|
|
/**
|
|
* Does the provider support both ECM and BPM?
|
|
* @returns True if both are supported, false otherwise
|
|
*/
|
|
isALLProvider(): boolean {
|
|
return this.alfrescoApi.getInstance().isEcmBpmConfiguration();
|
|
}
|
|
|
|
/**
|
|
* Logs the user in.
|
|
* @param username Username for the login
|
|
* @param password Password for the login
|
|
* @param rememberMe Stores the user's login details if true
|
|
* @returns Object with auth type ("ECM", "BPM" or "ALL") and auth ticket
|
|
*/
|
|
login(username: string, password: string, rememberMe: boolean = false): Observable<{ type: string, ticket: any }> {
|
|
return from(this.alfrescoApi.getInstance().login(username, password))
|
|
.pipe(
|
|
map((response: any) => {
|
|
this.saveRememberMeCookie(rememberMe);
|
|
this.onLogin.next(response);
|
|
return {
|
|
type: this.appConfig.get(AppConfigValues.PROVIDERS),
|
|
ticket: response
|
|
};
|
|
}),
|
|
catchError((err) => this.handleError(err))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Logs the user in with SSO
|
|
*/
|
|
ssoImplicitLogin() {
|
|
this.alfrescoApi.getInstance().implicitLogin();
|
|
}
|
|
|
|
/**
|
|
* Saves the "remember me" cookie as either a long-life cookie or a session cookie.
|
|
* @param rememberMe Enables a long-life cookie
|
|
*/
|
|
private saveRememberMeCookie(rememberMe: boolean): void {
|
|
let expiration = null;
|
|
|
|
if (rememberMe) {
|
|
expiration = new Date();
|
|
const time = expiration.getTime();
|
|
const expireTime = time + REMEMBER_ME_UNTIL;
|
|
expiration.setTime(expireTime);
|
|
}
|
|
this.cookie.setItem(REMEMBER_ME_COOKIE_KEY, '1', expiration, null);
|
|
}
|
|
|
|
/**
|
|
* Checks whether the "remember me" cookie was set or not.
|
|
* @returns True if set, false otherwise
|
|
*/
|
|
isRememberMeSet(): boolean {
|
|
return (this.cookie.getItem(REMEMBER_ME_COOKIE_KEY) === null) ? false : true;
|
|
}
|
|
|
|
/**
|
|
* Logs the user out.
|
|
* @returns Response event called when logout is complete
|
|
*/
|
|
logout() {
|
|
return from(this.callApiLogout())
|
|
.pipe(
|
|
tap((response) => {
|
|
this.onLogout.next(response);
|
|
return response;
|
|
}),
|
|
catchError((err) => this.handleError(err))
|
|
);
|
|
}
|
|
|
|
private callApiLogout(): Promise<any> {
|
|
if (this.alfrescoApi.getInstance()) {
|
|
return this.alfrescoApi.getInstance().logout();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets the ECM ticket stored in the Storage.
|
|
* @returns The ticket or `null` if none was found
|
|
*/
|
|
getTicketEcm(): string | null {
|
|
return this.alfrescoApi.getInstance().getTicketEcm();
|
|
}
|
|
|
|
/**
|
|
* Gets the BPM ticket stored in the Storage.
|
|
* @returns The ticket or `null` if none was found
|
|
*/
|
|
getTicketBpm(): string | null {
|
|
return this.alfrescoApi.getInstance().getTicketBpm();
|
|
}
|
|
|
|
/**
|
|
* Gets the BPM ticket from the Storage in Base 64 format.
|
|
* @returns The ticket or `null` if none was found
|
|
*/
|
|
getTicketEcmBase64(): string | null {
|
|
const ticket = this.alfrescoApi.getInstance().getTicketEcm();
|
|
if (ticket) {
|
|
return 'Basic ' + btoa(ticket);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Checks if the user is logged in on an ECM provider.
|
|
* @returns True if logged in, false otherwise
|
|
*/
|
|
isEcmLoggedIn(): boolean {
|
|
if (this.isECMProvider() || this.isALLProvider()) {
|
|
if (!this.isOauth() && this.cookie.isEnabled() && !this.isRememberMeSet()) {
|
|
return false;
|
|
}
|
|
return this.alfrescoApi.getInstance().isEcmLoggedIn();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks if the user is logged in on a BPM provider.
|
|
* @returns True if logged in, false otherwise
|
|
*/
|
|
isBpmLoggedIn(): boolean {
|
|
if (this.isBPMProvider() || this.isALLProvider()) {
|
|
if (!this.isOauth() && this.cookie.isEnabled() && !this.isRememberMeSet()) {
|
|
return false;
|
|
}
|
|
return this.alfrescoApi.getInstance().isBpmLoggedIn();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Gets the ECM username.
|
|
* @returns The ECM username
|
|
*/
|
|
getEcmUsername(): string {
|
|
return this.alfrescoApi.getInstance().getEcmUsername();
|
|
}
|
|
|
|
/**
|
|
* Gets the BPM username
|
|
* @returns The BPM username
|
|
*/
|
|
getBpmUsername(): string {
|
|
return this.alfrescoApi.getInstance().getBpmUsername();
|
|
}
|
|
|
|
/** Sets the URL to redirect to after login.
|
|
* @param url URL to redirect to
|
|
*/
|
|
setRedirect(url: RedirectionModel) {
|
|
this.redirectUrl = url;
|
|
}
|
|
|
|
/** Gets the URL to redirect to after login.
|
|
* @returns The redirect URL
|
|
*/
|
|
getRedirect(): string {
|
|
const provider = <string> this.appConfig.get(AppConfigValues.PROVIDERS);
|
|
return this.hasValidRedirection(provider) ? this.redirectUrl.url : null;
|
|
}
|
|
|
|
/**
|
|
* Gets information about the user currently logged into APS.
|
|
* @returns User information
|
|
*/
|
|
getBpmLoggedUser(): Observable<UserRepresentation> {
|
|
return from(this.alfrescoApi.getInstance().activiti.profileApi.getProfile());
|
|
}
|
|
|
|
private hasValidRedirection(provider: string): boolean {
|
|
return this.redirectUrl && (this.redirectUrl.provider === provider || this.hasSelectedProviderAll(provider));
|
|
}
|
|
|
|
private hasSelectedProviderAll(provider: string): boolean {
|
|
return this.redirectUrl && (this.redirectUrl.provider === 'ALL' || provider === 'ALL');
|
|
}
|
|
|
|
/**
|
|
* Prints an error message in the console browser
|
|
* @param error Error message
|
|
* @returns Object representing the error message
|
|
*/
|
|
handleError(error: any): Observable<any> {
|
|
this.logService.error('Error when logging in', error);
|
|
return throwError(error || 'Server error');
|
|
}
|
|
|
|
/**
|
|
* Gets the set of URLs that the token bearer is excluded from.
|
|
* @returns Array of URL strings
|
|
*/
|
|
getBearerExcludedUrls(): string[] {
|
|
return this.bearerExcludedUrls;
|
|
}
|
|
|
|
/**
|
|
* Gets the auth token.
|
|
* @returns Auth token string
|
|
*/
|
|
getToken(): string {
|
|
return localStorage.getItem('access_token');
|
|
}
|
|
|
|
/**
|
|
* Adds the auth token to an HTTP header using the 'bearer' scheme.
|
|
* @param headersArg Header that will receive the token
|
|
* @returns The new header with the token added
|
|
*/
|
|
addTokenToHeader(headersArg?: HttpHeaders): Observable<HttpHeaders> {
|
|
return new Observable((observer: Observer<any>) => {
|
|
let headers = headersArg;
|
|
if (!headers) {
|
|
headers = new HttpHeaders();
|
|
}
|
|
try {
|
|
const token: string = this.getToken();
|
|
headers = headers.set('Authorization', 'bearer ' + token);
|
|
observer.next(headers);
|
|
observer.complete();
|
|
} catch (error) {
|
|
observer.error(error);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Checks if SSO is configured correctly.
|
|
* @returns True if configured correctly, false otherwise
|
|
*/
|
|
isSSODiscoveryConfigured() {
|
|
return this.alfrescoApi.getInstance().storage.getItem('discovery') ? true : false;
|
|
}
|
|
}
|