X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/825b555f06eb9dfb987dee1d072bba6874552a8a..f4d717705f9824add63e7d0730f486f58a93cf83:/src/services/auth-service/auth-service.ts diff --git a/src/services/auth-service/auth-service.ts b/src/services/auth-service/auth-service.ts index cec0cef1d8..c6e93a8fe7 100644 --- a/src/services/auth-service/auth-service.ts +++ b/src/services/auth-service/auth-service.ts @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { getUserFullname, User, UserPrefs, UserResource } from '~/models/user'; +import { getUserFullname, User, UserPrefs } from '~/models/user'; import { AxiosInstance } from "axios"; import { ApiActions } from "~/services/api/api-actions"; import * as uuid from "uuid/v4"; @@ -20,6 +20,7 @@ export const USER_IS_ADMIN = 'isAdmin'; export const USER_IS_ACTIVE = 'isActive'; export const USER_USERNAME = 'username'; export const USER_PREFS = 'prefs'; +export const HOME_CLUSTER = 'homeCluster'; export interface UserDetailsResponse { email: string; @@ -42,6 +43,10 @@ export class AuthService { public saveApiToken(token: string) { localStorage.setItem(API_TOKEN_KEY, token); + const sp = token.split('/'); + if (sp.length === 3) { + localStorage.setItem(HOME_CLUSTER, sp[1].substr(0, 5)); + } } public removeApiToken() { @@ -52,48 +57,8 @@ export class AuthService { return localStorage.getItem(API_TOKEN_KEY) || undefined; } - public getUuid() { - return localStorage.getItem(USER_UUID_KEY) || undefined; - } - - public getOwnerUuid() { - return localStorage.getItem(USER_OWNER_UUID_KEY) || undefined; - } - - public getIsAdmin(): boolean { - return localStorage.getItem(USER_IS_ADMIN) === 'true'; - } - - public getIsActive(): boolean { - return localStorage.getItem(USER_IS_ACTIVE) === 'true'; - } - - public getUser(): User | undefined { - const email = localStorage.getItem(USER_EMAIL_KEY); - const firstName = localStorage.getItem(USER_FIRST_NAME_KEY); - const lastName = localStorage.getItem(USER_LAST_NAME_KEY); - const uuid = this.getUuid(); - const ownerUuid = this.getOwnerUuid(); - const isAdmin = this.getIsAdmin(); - const isActive = this.getIsActive(); - const username = localStorage.getItem(USER_USERNAME); - const prefs = JSON.parse(localStorage.getItem(USER_PREFS) || '{"profile": {}}'); - - return email && firstName && lastName && uuid && ownerUuid && username && prefs - ? { email, firstName, lastName, uuid, ownerUuid, isAdmin, isActive, username, prefs } - : undefined; - } - - public saveUser(user: User | UserResource) { - localStorage.setItem(USER_EMAIL_KEY, user.email); - localStorage.setItem(USER_FIRST_NAME_KEY, user.firstName); - localStorage.setItem(USER_LAST_NAME_KEY, user.lastName); - localStorage.setItem(USER_UUID_KEY, user.uuid); - localStorage.setItem(USER_OWNER_UUID_KEY, user.ownerUuid); - localStorage.setItem(USER_IS_ADMIN, JSON.stringify(user.isAdmin)); - localStorage.setItem(USER_IS_ACTIVE, JSON.stringify(user.isActive)); - localStorage.setItem(USER_USERNAME, user.username); - localStorage.setItem(USER_PREFS, JSON.stringify(user.prefs)); + public getHomeCluster() { + return localStorage.getItem(HOME_CLUSTER) || undefined; } public removeUser() { @@ -108,10 +73,10 @@ export class AuthService { localStorage.removeItem(USER_PREFS); } - public login(uuidPrefix: string, homeCluster: string, remoteHosts: { [key: string]: string }) { + public login(uuidPrefix: string, homeCluster: string, loginCluster: string, remoteHosts: { [key: string]: string }) { const currentUrl = `${window.location.protocol}//${window.location.host}/token`; const homeClusterHost = remoteHosts[homeCluster]; - window.location.assign(`https://${homeClusterHost}/login?${uuidPrefix !== homeCluster ? "remote=" + uuidPrefix + "&" : ""}return_to=${currentUrl}`); + window.location.assign(`https://${homeClusterHost}/login?${(uuidPrefix !== homeCluster && homeCluster !== loginCluster) ? "remote=" + uuidPrefix + "&" : ""}return_to=${currentUrl}`); } public logout() { @@ -146,12 +111,6 @@ export class AuthService { }); } - public getRootUuid() { - const uuid = this.getOwnerUuid(); - const uuidParts = uuid ? uuid.split('-') : []; - return uuidParts.length > 1 ? `${uuidParts[0]}-${uuidParts[1]}` : undefined; - } - public getSessions(): Session[] { try { const sessions = JSON.parse(localStorage.getItem("sessions") || ''); @@ -170,31 +129,39 @@ export class AuthService { clusterId: cfg.uuidPrefix, remoteHost: cfg.rootUrl, baseUrl: cfg.baseUrl, - username: getUserFullname(user), + name: getUserFullname(user), email: user ? user.email : '', token: this.getApiToken(), loggedIn: true, active: true, + uuid: user ? user.uuid : '', status: SessionStatus.VALIDATED } as Session; - const localSessions = this.getSessions(); + const localSessions = this.getSessions().map(s => ({ + ...s, + active: false, + status: SessionStatus.INVALIDATED + })); + const cfgSessions = Object.keys(cfg.remoteHosts).map(clusterId => { const remoteHost = cfg.remoteHosts[clusterId]; return { clusterId, remoteHost, baseUrl: '', - username: '', + name: '', email: '', token: '', loggedIn: false, active: false, + uuid: '', status: SessionStatus.INVALIDATED } as Session; }); const sessions = [currentSession] + .concat(cfgSessions) .concat(localSessions) - .concat(cfgSessions); + .filter((r: Session) => r.clusterId !== "*"); const uniqSessions = uniqBy(sessions, 'clusterId');