X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/43a384e98b698de75f66dcc5a0241a1246ddd447..ecfd85a34f5852c160a25ab61bc5c38059927c56:/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 e7641fdca9..61db625c62 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 { User, UserPrefs, getUserDisplayName } from '~/models/user'; import { AxiosInstance } from "axios"; import { ApiActions } from "~/services/api/api-actions"; import * as uuid from "uuid/v4"; @@ -20,7 +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 USER_CREATED_AT = 'createdAt'; +export const HOME_CLUSTER = 'homeCluster'; export interface UserDetailsResponse { email: string; @@ -31,7 +31,6 @@ export interface UserDetailsResponse { is_admin: boolean; is_active: boolean; username: string; - created_at: string; prefs: UserPrefs; } @@ -44,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() { @@ -54,50 +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 createdAt = localStorage.getItem(USER_CREATED_AT); - const prefs = JSON.parse(localStorage.getItem(USER_PREFS) || '{"profile": {}}'); - - return email && firstName && lastName && uuid && ownerUuid && username && createdAt && prefs - ? { email, firstName, lastName, uuid, ownerUuid, isAdmin, isActive, username, createdAt, 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_CREATED_AT, user.createdAt); - localStorage.setItem(USER_PREFS, JSON.stringify(user.prefs)); + public getHomeCluster() { + return localStorage.getItem(HOME_CLUSTER) || undefined; } public removeUser() { @@ -109,13 +70,13 @@ export class AuthService { localStorage.removeItem(USER_IS_ADMIN); localStorage.removeItem(USER_IS_ACTIVE); localStorage.removeItem(USER_USERNAME); - localStorage.removeItem(USER_CREATED_AT); localStorage.removeItem(USER_PREFS); } - public login(uuidPrefix: string, homeCluster: string) { + public login(uuidPrefix: string, homeCluster: string, loginCluster: string, remoteHosts: { [key: string]: string }) { const currentUrl = `${window.location.protocol}//${window.location.host}/token`; - window.location.assign(`https://${homeCluster}/login?remote=${uuidPrefix}&return_to=${currentUrl}`); + const homeClusterHost = remoteHosts[homeCluster]; + window.location.assign(`https://${homeClusterHost}/login?${(uuidPrefix !== homeCluster && homeCluster !== loginCluster) ? "remote=" + uuidPrefix + "&" : ""}return_to=${currentUrl}`); } public logout() { @@ -140,7 +101,6 @@ export class AuthService { isAdmin: resp.data.is_admin, isActive: resp.data.is_active, username: resp.data.username, - createdAt: resp.data.created_at, prefs }; }) @@ -151,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") || ''); @@ -175,31 +129,41 @@ export class AuthService { clusterId: cfg.uuidPrefix, remoteHost: cfg.rootUrl, baseUrl: cfg.baseUrl, - username: getUserFullname(user), + name: user ? getUserDisplayName(user): '', email: user ? user.email : '', token: this.getApiToken(), loggedIn: true, active: true, - status: SessionStatus.VALIDATED + uuid: user ? user.uuid : '', + status: SessionStatus.VALIDATED, + apiRevision: cfg.apiRevision, } 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, - status: SessionStatus.INVALIDATED + uuid: '', + status: SessionStatus.INVALIDATED, + apiRevision: 0, } as Session; }); const sessions = [currentSession] + .concat(cfgSessions) .concat(localSessions) - .concat(cfgSessions); + .filter((r: Session) => r.clusterId !== "*"); const uniqSessions = uniqBy(sessions, 'clusterId');