diff --git a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs index 7fc6790..5606a2b 100644 --- a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs +++ b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs @@ -30,9 +30,8 @@ public class GlobalUserMiddleware catch (AuthenticationException ex) { httpContext.Response.Cookies.Delete("accessToken"); - httpContext.Response.Redirect(""); + httpContext.Response.Redirect("/login"); } - await _next(httpContext); } } \ No newline at end of file diff --git a/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs b/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs index c248421..0ff1c72 100644 --- a/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs +++ b/ShoppingAssistantWebClient.Web/Network/AuthenticationService.cs @@ -171,8 +171,8 @@ public class AuthenticationService var request = new GraphQLRequest { Query = @" - mutation RefreshToken($model: TokensModelInput!) { - refreshUserToken(model: $model) { + mutation RefreshAccessToken($model: TokensModelInput!) { + refreshAccessToken(model: $model) { accessToken refreshToken } @@ -180,7 +180,7 @@ public class AuthenticationService Variables = new { model = new { accessToken = accessToken, refreshToken = refreshToken } } }; var response = await _graphQLClient.SendMutationAsync(request); - var jsonResponse = JsonConvert.SerializeObject(response.Data.refreshUserToken); + var jsonResponse = JsonConvert.SerializeObject(response.Data.refreshAccessToken); var tokens = JsonConvert.DeserializeObject(jsonResponse); _httpContext.Response.Cookies.Append("accessToken", tokens.AccessToken, new CookieOptions { Expires = DateTime.UtcNow.AddDays(180) }); _httpContext.Response.Cookies.Append("refreshToken", tokens.RefreshToken, new CookieOptions { Expires = DateTime.UtcNow.AddDays(180) }); diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml b/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml deleted file mode 100644 index e47aff4..0000000 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml +++ /dev/null @@ -1,227 +0,0 @@ -@page "/chat/1" -@model ShoppingAssistantWebClient.Web.Pages.ChatModel -@{ - ViewData["Title"] = "Gift for Jessica"; -} - - -
- -
- - - - - - - -
- -
- - - - -
- -
- -
Gift for Jessica
- -
    - -
  • -

    Give me product recommendation. Ask me questions if you need more directions. I am looking for: hub for my macbook to connect external monitors

    -
  • -
  • -

    Sure! I can help you with that. I will ask you some leading questions. This is the first: -
    - How many external monitors do you want to connect to your MacBook?

    -
  • -
  • -

    7

    -
  • -
  • -

    Thank you. Here is the next question: -
    - What type of external monitors do you have? (e.g., HDMI, DisplayPort, VGA)

    -
  • - -
- - - - -
- - - - - Send message - - - -
- - -
- -
-
- - - diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml.cs deleted file mode 100644 index 1e11cc4..0000000 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.cshtml.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; -using ShoppingAssistantWebClient.Web.Network; - -namespace ShoppingAssistantWebClient.Web.Pages; -public class ChatModel : PageModel -{ - private readonly ILogger _logger; - - private readonly AuthenticationService _authenticationService; - - public ChatModel(ILogger logger, AuthenticationService authenticationService) - { - _authenticationService = authenticationService; - _logger = logger; - } - - public void OnGet() - { - } -} diff --git a/ShoppingAssistantWebClient.Web/Pages/Login.cshtml b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml new file mode 100644 index 0000000..198c17b --- /dev/null +++ b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml @@ -0,0 +1,8 @@ +@page "/login" +@model ShoppingAssistantWebClient.Web.Pages.LoginModel + +

Login

+ +@{ + +} diff --git a/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs new file mode 100644 index 0000000..f57fb3e --- /dev/null +++ b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace ShoppingAssistantWebClient.Web.Pages +{ + public class LoginModel : PageModel + { + public void OnGet() + { + } + } +} diff --git a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml deleted file mode 100644 index a1f555a..0000000 --- a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml +++ /dev/null @@ -1,75 +0,0 @@ -@page -@model ShoppingAssistantWebClient.Web.Pages.WishlistModel -@{ - //Layout = null; -} - -

My Wishlist

- -
- - @if(!(Model.wishlist is null)) - { - - - - - - - - - - - - @foreach (var item in Model.wishlist) - { - - - - - - - - - - - - } - -
Chat nameTypeCreatedById
@Html.DisplayFor(modelItem => item.Name)@Html.DisplayFor(modelItem => item.Type)@Html.DisplayFor(modelItem => item.CreateById)
- } - else - { -

You don't have a wishlist

- } - -
\ No newline at end of file diff --git a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs deleted file mode 100644 index 6148cd2..0000000 --- a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; -using ShoppingAssistantWebClient.Web.Models; - -namespace ShoppingAssistantWebClient.Web.Pages -{ - public class WishlistModel : PageModel - { - public List wishlist = new List{ - new Models.Wishlist {Id = "0", Name = "Chat1", Type="product", CreateById="0"}, - new Models.Wishlist {Id = "1", Name = "Chat2", Type="gift", CreateById="1"}, - new Models.Wishlist {Id = "2", Name = "Chat3", Type="product", CreateById="2"} - }; - public void OnGet() - { - - } - - public void OnPostDelete(string id) { - var item = wishlist.FirstOrDefault(wishlist => wishlist.Id == id); - wishlist.RemoveAt(Int32.Parse(id)); - } - - public IActionResult OnPostMoveToChat() { - return RedirectToPage("Index"); - } - } -} diff --git a/ShoppingAssistantWebClient.Web/Program.cs b/ShoppingAssistantWebClient.Web/Program.cs index a804442..50d5733 100644 --- a/ShoppingAssistantWebClient.Web/Program.cs +++ b/ShoppingAssistantWebClient.Web/Program.cs @@ -28,6 +28,6 @@ app.UseRouting(); app.MapBlazorHub(); app.MapFallbackToPage("/_Host"); -// app.ConfigureGlobalUserMiddleware(); +app.ConfigureGlobalUserMiddleware(); app.Run(); diff --git a/ShoppingAssistantWebClient.Web/appsettings.Development.json b/ShoppingAssistantWebClient.Web/appsettings.Development.json index 5cbb7be..9a8322f 100644 --- a/ShoppingAssistantWebClient.Web/appsettings.Development.json +++ b/ShoppingAssistantWebClient.Web/appsettings.Development.json @@ -1,10 +1,3 @@ { - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "ApiUrl": "https://localhost:7268/" + "ApiUrl": "https://shopping-assistant-api-dev.azurewebsites.net/" } diff --git a/ShoppingAssistantWebClient.sln b/ShoppingAssistantWebClient.sln index 3c49ca4..4af2c89 100644 --- a/ShoppingAssistantWebClient.sln +++ b/ShoppingAssistantWebClient.sln @@ -1,9 +1,8 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34003.232 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShoppingAssistantWebClient.Web.Old", "ShoppingAssistantWebClient.Web\ShoppingAssistantWebClient.Web.csproj", "{7D1CD0CD-916A-4007-A4BB-15EA99357992}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingAssistantWebClient.Web", "ShoppingAssistantWebClient.Web\ShoppingAssistantWebClient.Web.csproj", "{7D1CD0CD-916A-4007-A4BB-15EA99357992}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution