Merge branch 'master' of git.curoverse.com:arvados-workbench2 into 13618-Tree-compone...
[arvados-workbench2.git] / src / services / auth-service / auth-service.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { API_HOST, serverApi } from "../../common/api/server-api";
6 import { User } from "../../models/user";
7 import { Dispatch } from "redux";
8 import actions from "../../store/auth/auth-action";
9
10 export const API_TOKEN_KEY = 'apiToken';
11 export const USER_EMAIL_KEY = 'userEmail';
12 export const USER_FIRST_NAME_KEY = 'userFirstName';
13 export const USER_LAST_NAME_KEY = 'userLastName';
14 export const USER_UUID_KEY = 'userUuid';
15 export const USER_OWNER_UUID_KEY = 'userOwnerUuid';
16
17 export interface UserDetailsResponse {
18     email: string;
19     first_name: string;
20     last_name: string;
21     uuid: string;
22     owner_uuid: string;
23     is_admin: boolean;
24 }
25
26 export default class AuthService {
27
28     public saveApiToken(token: string) {
29         localStorage.setItem(API_TOKEN_KEY, token);
30     }
31
32     public removeApiToken() {
33         localStorage.removeItem(API_TOKEN_KEY);
34     }
35
36     public getApiToken() {
37         return localStorage.getItem(API_TOKEN_KEY) || undefined;
38     }
39
40     public getOwnerUuid() {
41         return localStorage.getItem(USER_OWNER_UUID_KEY) || undefined;
42     }
43
44     public getUser(): User | undefined {
45         const email = localStorage.getItem(USER_EMAIL_KEY);
46         const firstName = localStorage.getItem(USER_FIRST_NAME_KEY);
47         const lastName = localStorage.getItem(USER_LAST_NAME_KEY);
48         const uuid = localStorage.getItem(USER_UUID_KEY);
49         const ownerUuid = localStorage.getItem(USER_OWNER_UUID_KEY);
50
51         return email && firstName && lastName && uuid && ownerUuid
52             ? { email, firstName, lastName, uuid, ownerUuid }
53             : undefined;
54     }
55
56     public saveUser(user: User) {
57         localStorage.setItem(USER_EMAIL_KEY, user.email);
58         localStorage.setItem(USER_FIRST_NAME_KEY, user.firstName);
59         localStorage.setItem(USER_LAST_NAME_KEY, user.lastName);
60         localStorage.setItem(USER_UUID_KEY, user.uuid);
61         localStorage.setItem(USER_OWNER_UUID_KEY, user.ownerUuid);
62     }
63
64     public removeUser() {
65         localStorage.removeItem(USER_EMAIL_KEY);
66         localStorage.removeItem(USER_FIRST_NAME_KEY);
67         localStorage.removeItem(USER_LAST_NAME_KEY);
68         localStorage.removeItem(USER_UUID_KEY);
69         localStorage.removeItem(USER_OWNER_UUID_KEY);
70     }
71
72     public login() {
73         const currentUrl = `${window.location.protocol}//${window.location.host}/token`;
74         window.location.assign(`${API_HOST}/login?return_to=${currentUrl}`);
75     }
76
77     public logout() {
78         const currentUrl = `${window.location.protocol}//${window.location.host}`;
79         window.location.assign(`${API_HOST}/logout?return_to=${currentUrl}`);
80     }
81
82     public getUserDetails = () => (dispatch: Dispatch): Promise<void> => {
83         dispatch(actions.USER_DETAILS_REQUEST());
84         return serverApi
85             .get<UserDetailsResponse>('/users/current')
86             .then(resp => {
87                 dispatch(actions.USER_DETAILS_SUCCESS(resp.data));
88             });
89     };
90
91     public getRootUuid() {
92         const uuid = this.getOwnerUuid();
93         const uuidParts = uuid ? uuid.split('-') : [];
94         return uuidParts.length > 1 ? `${uuidParts[0]}-${uuidParts[1]}` : undefined;
95     }
96 }