-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAuthIntern.ts
47 lines (37 loc) · 1.31 KB
/
AuthIntern.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { AuthUser, AuthMethodKey } from './auth.model';
import { IAuth } from './IAuth';
export class AuthIntern implements IAuth {
public type: AuthMethodKey = 'INTERN';
constructor(){
console.log('starting auth intern');
}
public signIn = async (authUser?: AuthUser) => {
await this.timeout(3000);
if(authUser) {
sessionStorage.setItem('@Auth.email', authUser.email);
return { email: authUser.email, username: authUser.email }
}
const userStorage = sessionStorage.getItem('@Auth.email');
if(userStorage !== null) {
return { email: userStorage, username: userStorage }
}
return undefined;
};
public signOut = async () => {
sessionStorage.removeItem('@Auth.email')
};
public isAuthenticated = () => {
const userStorage = sessionStorage.getItem('@Auth.email');
return Promise.resolve(!!userStorage);
};
public getUser = async () => {
const userStorage = await sessionStorage.getItem('@Auth.email');
if(userStorage !== null) {
return { email: userStorage, username: 'User interno'};
}
return undefined;
}
private timeout = (ms: number) => {
return new Promise(resolve => setTimeout(resolve, ms));
}
}