forked from tmokmss/com.unity.multiplayer.samples.coop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AuthenticationServiceFacade.cs
83 lines (75 loc) · 3.08 KB
/
AuthenticationServiceFacade.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
using System;
using System.Threading.Tasks;
using Unity.BossRoom.Infrastructure;
using Unity.Services.Authentication;
using Unity.Services.Core;
using UnityEngine;
using VContainer;
namespace Unity.BossRoom.UnityServices.Auth
{
public class AuthenticationServiceFacade
{
[Inject] IPublisher<UnityServiceErrorMessage> m_UnityServiceErrorMessagePublisher;
public async Task InitializeAndSignInAsync(InitializationOptions initializationOptions)
{
try
{
await Unity.Services.Core.UnityServices.InitializeAsync(initializationOptions);
if (!AuthenticationService.Instance.IsSignedIn)
{
await AuthenticationService.Instance.SignInAnonymouslyAsync();
}
}
catch (Exception e)
{
var reason = $"{e.Message} ({e.InnerException?.Message})";
m_UnityServiceErrorMessagePublisher.Publish(new UnityServiceErrorMessage("Authentication Error", reason, UnityServiceErrorMessage.Service.Authentication, e));
throw;
}
}
public async Task SwitchProfileAndReSignInAsync(string profile)
{
if (AuthenticationService.Instance.IsSignedIn)
{
AuthenticationService.Instance.SignOut();
}
AuthenticationService.Instance.SwitchProfile(profile);
try
{
await AuthenticationService.Instance.SignInAnonymouslyAsync();
}
catch (Exception e)
{
var reason = $"{e.Message} ({e.InnerException?.Message})";
m_UnityServiceErrorMessagePublisher.Publish(new UnityServiceErrorMessage("Authentication Error", reason, UnityServiceErrorMessage.Service.Authentication, e));
throw;
}
}
public async Task<bool> EnsurePlayerIsAuthorized()
{
if (AuthenticationService.Instance.IsAuthorized)
{
return true;
}
try
{
await AuthenticationService.Instance.SignInAnonymouslyAsync();
return true;
}
catch (AuthenticationException e)
{
var reason = $"{e.Message} ({e.InnerException?.Message})";
m_UnityServiceErrorMessagePublisher.Publish(new UnityServiceErrorMessage("Authentication Error", reason, UnityServiceErrorMessage.Service.Authentication, e));
//not rethrowing for authentication exceptions - any failure to authenticate is considered "handled failure"
return false;
}
catch (Exception e)
{
//all other exceptions should still bubble up as unhandled ones
var reason = $"{e.Message} ({e.InnerException?.Message})";
m_UnityServiceErrorMessagePublisher.Publish(new UnityServiceErrorMessage("Authentication Error", reason, UnityServiceErrorMessage.Service.Authentication, e));
throw;
}
}
}
}