-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathAuthManager.cs
96 lines (84 loc) · 2.76 KB
/
AuthManager.cs
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
using System;
using System.Threading.Tasks;
using ReadyPlayerMe.Core;
using UnityEngine;
namespace ReadyPlayerMe.AvatarCreator
{
/// <summary>
/// Provides methods for managing the user's authentication and session.
/// </summary>
public static class AuthManager
{
private const string TAG = nameof(AuthManager);
private static readonly AuthApi AuthApi;
private static UserSession userSession;
public static UserSession UserSession => userSession;
public static bool IsSignedIn;
public static bool IsSignedInAnonymously;
public static Action<UserSession> OnSignedIn;
public static Action<UserSession> OnSessionRefreshed;
public static Action OnSignedOut;
public static Action<string> OnSignInError;
static AuthManager()
{
AuthApi = new AuthApi(CoreSettingsHandler.CoreSettings.Subdomain);
}
public static async Task LoginAsAnonymous()
{
userSession = await AuthApi.LoginAsAnonymous();
IsSignedInAnonymously = true;
}
public static void SetUser(UserSession session)
{
userSession = session;
IsSignedIn = true;
OnSignedIn?.Invoke(userSession);
}
public static async void SendEmailCode(string email)
{
await AuthApi.SendCodeToEmail(email, userSession.Id);
}
public static async Task<bool> LoginWithCode(string otp)
{
try
{
userSession = await AuthApi.LoginWithCode(otp);
IsSignedIn = true;
OnSignedIn?.Invoke(userSession);
return true;
}
catch (Exception e)
{
OnSignInError?.Invoke(e.Message);
return false;
}
}
public static async void Signup(string email)
{
await AuthApi.Signup(email, userSession.Id);
}
public static async Task RefreshToken()
{
(string, string) newTokens;
try
{
newTokens = await AuthApi.RefreshToken(userSession.Token, userSession.RefreshToken);
}
catch (Exception e)
{
SDKLogger.Log(TAG, "Refreshing token failed with error: " + e.Message);
throw;
}
userSession.Token = newTokens.Item1;
userSession.RefreshToken = newTokens.Item2;
OnSessionRefreshed?.Invoke(userSession);
}
public static void Logout()
{
IsSignedIn = false;
IsSignedInAnonymously = false;
userSession = new UserSession();
OnSignedOut?.Invoke();
}
}
}