diff --git a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs
index 7fc6790..91f5823 100644
--- a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs
+++ b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs
@@ -15,24 +15,26 @@ public class GlobalUserMiddleware
public async Task InvokeAsync(HttpContext httpContext, AuthenticationService authenticationService, ApiClient apiClient)
{
- try
+ if (httpContext.Request.Path != "/login")
{
- var accessToken = await authenticationService.GetAuthTokenAsync();
- if (!string.IsNullOrEmpty(accessToken))
+ try
{
- apiClient.JwtToken = accessToken;
- GlobalUser.Roles = authenticationService.GetRolesFromJwtToken(accessToken);
- GlobalUser.Id = authenticationService.GetIdFromJwtToken(accessToken);
- GlobalUser.Email = authenticationService.GetEmailFromJwtToken(accessToken);
- GlobalUser.Phone = authenticationService.GetPhoneFromJwtToken(accessToken);
+ var accessToken = await authenticationService.GetAuthTokenAsync();
+ if (!string.IsNullOrEmpty(accessToken))
+ {
+ apiClient.JwtToken = accessToken;
+ GlobalUser.Roles = authenticationService.GetRolesFromJwtToken(accessToken);
+ GlobalUser.Id = authenticationService.GetIdFromJwtToken(accessToken);
+ GlobalUser.Email = authenticationService.GetEmailFromJwtToken(accessToken);
+ GlobalUser.Phone = authenticationService.GetPhoneFromJwtToken(accessToken);
+ }
+ }
+ catch (AuthenticationException ex)
+ {
+ httpContext.Response.Cookies.Delete("accessToken");
+ httpContext.Response.Redirect("/login");
}
}
- catch (AuthenticationException ex)
- {
- httpContext.Response.Cookies.Delete("accessToken");
- httpContext.Response.Redirect("");
- }
-
await _next(httpContext);
}
}
\ No newline at end of file
diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor b/ShoppingAssistantWebClient.Web/Pages/Chat.razor
index d18129b..9dbe618 100644
--- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor
+++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor
@@ -1,4 +1,7 @@
@page "/chat/{chatId}"
+
+@inject IHttpClientFactory ClientFactory
+