10using Microsoft.AspNetCore.Components.Authorization;
12using System.Security.Claims;
13using System.Security.Principal;
14using System.Threading.Tasks;
16namespace Csla.AspNetCore.Blazor
22 public class ApplicationContextManagerBlazor : IContextManager, IDisposable
24 private ContextDictionary LocalContext {
get;
set; }
25 private ContextDictionary ClientContext {
get;
set; }
26 private IPrincipal CurrentPrincipal {
get;
set; }
27 private readonly ClaimsPrincipal UnauthenticatedPrincipal =
new();
28 private bool disposedValue;
33 protected AuthenticationStateProvider AuthenticationStateProvider {
get;
private set; }
38 public ApplicationContext ApplicationContext {
get;
set; }
43 protected ActiveCircuitState ActiveCircuitState {
get;
private set; }
51 public ApplicationContextManagerBlazor(AuthenticationStateProvider authenticationStateProvider, ActiveCircuitState activeCircuitState)
53 AuthenticationStateProvider = authenticationStateProvider;
54 ActiveCircuitState = activeCircuitState;
55 CurrentPrincipal = UnauthenticatedPrincipal;
56 AuthenticationStateProvider.AuthenticationStateChanged += AuthenticationStateProvider_AuthenticationStateChanged;
60 private void InitializeUser()
62 Task<AuthenticationState> task =
default;
65 task = AuthenticationStateProvider.GetAuthenticationStateAsync();
67 catch (InvalidOperationException ex)
69 task = Task.FromResult(
new AuthenticationState((ClaimsPrincipal)UnauthenticatedPrincipal));
70 string message = ex.Message;
71 if (message.Contains(nameof(AuthenticationStateProvider.GetAuthenticationStateAsync))
72 && message.Contains(nameof(IHostEnvironmentAuthenticationStateProvider.SetAuthenticationState)))
74 SetHostPrincipal(task);
81 AuthenticationStateProvider_AuthenticationStateChanged(task);
84 private void AuthenticationStateProvider_AuthenticationStateChanged(Task<AuthenticationState> task)
88 CurrentPrincipal = UnauthenticatedPrincipal;
92 task.ContinueWith((t) =>
94 if (task.IsCompletedSuccessfully && task.Result !=
null)
95 CurrentPrincipal = task.Result.User;
97 CurrentPrincipal = UnauthenticatedPrincipal;
109 get {
return ActiveCircuitState.CircuitExists; }
116 public bool IsStatefulContext =>
true;
121 public IPrincipal GetUser()
123 return CurrentPrincipal;
131 public virtual void SetUser(IPrincipal principal)
133 if (!ReferenceEquals(CurrentPrincipal, principal))
135 if (principal is ClaimsPrincipal claimsPrincipal)
137 CurrentPrincipal = principal;
138 SetHostPrincipal(Task.FromResult(
new AuthenticationState(claimsPrincipal)));
142 throw new ArgumentException(
"typeof(principal) != ClaimsPrincipal");
147 private void SetHostPrincipal(Task<AuthenticationState> task)
149 if (AuthenticationStateProvider is IHostEnvironmentAuthenticationStateProvider hostProvider)
150 hostProvider.SetAuthenticationState(task);
156 public ContextDictionary GetLocalContext()
158 if (LocalContext ==
null)
159 LocalContext =
new ContextDictionary();
167 public void SetLocalContext(ContextDictionary localContext)
169 LocalContext = localContext;
176 public ContextDictionary GetClientContext(ApplicationContext.ExecutionLocations executionLocation)
178 if (ClientContext ==
null)
179 ClientContext =
new ContextDictionary();
180 return ClientContext;
188 public void SetClientContext(ContextDictionary clientContext, ApplicationContext.ExecutionLocations executionLocation)
190 ClientContext = clientContext;
197 protected virtual void Dispose(
bool disposing)
203 AuthenticationStateProvider.AuthenticationStateChanged -= AuthenticationStateProvider_AuthenticationStateChanged;
205 disposedValue =
true;
212 public void Dispose()
215 Dispose(disposing:
true);
216 GC.SuppressFinalize(
this);