SA-109 Moved auth logic to ApiClient from Middleware

This commit is contained in:
shchoholiev-opflo 2023-11-05 05:19:17 +00:00
parent 8f5abc8f98
commit f8a32070c5
3 changed files with 22 additions and 5 deletions

View File

@ -2,6 +2,7 @@
using GraphQL;
using Newtonsoft.Json;
using System.Net.Http.Headers;
using ShoppingAssistantWebClient.Web.Models.GlobalInstances;
namespace ShoppingAssistantWebClient.Web.Network;
@ -29,7 +30,9 @@ public class ApiClient
{
await SetAuthenticationAsync();
return await _graphQLClient.SendQueryAsync<dynamic>(request);
var response = await _graphQLClient.SendQueryAsync<dynamic>(request);
return response;
}
public async Task<T> QueryAsync<T>(GraphQLRequest request, string propertyName)
@ -116,7 +119,18 @@ public class ApiClient
private async Task SetAuthenticationAsync()
{
_graphQLClient.HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", this.JwtToken);
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", this.JwtToken);
var accessToken = await _authenticationService.GetAuthTokenAsync();
if (!string.IsNullOrEmpty(accessToken))
{
this.JwtToken = accessToken;
GlobalUser.Id = _authenticationService.GetIdFromJwtToken(accessToken);
GlobalUser.Email = _authenticationService.GetEmailFromJwtToken(accessToken);
GlobalUser.Phone = _authenticationService.GetPhoneFromJwtToken(accessToken);
GlobalUser.Roles = _authenticationService.GetRolesFromJwtToken(accessToken);
_graphQLClient.HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", this.JwtToken);
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", this.JwtToken);
}
}
}

View File

@ -30,6 +30,7 @@ app.UseRouting();
app.MapBlazorHub();
app.MapFallbackToPage("/_Host");
app.ConfigureGlobalUserMiddleware();
// Login moved to ApiClient
// app.ConfigureGlobalUserMiddleware();
app.Run();

View File

@ -1,3 +1,4 @@
@using Models.GlobalInstances
@inject NavigationManager Navigation
<div id="leftframe" class="left_frame">
@ -51,7 +52,8 @@
<div class="elements">
<div class="info_user">
<img src="/images/avatar.jpg" alt="Avatar user">
<span class="user_name">Semen Semenov</span>
<!-- Change to name -->
<span class="user_name">@GlobalUser.Id</span>
</div>
</div>