shopping-assistant-api/ShoppingAssistantApi.Api/Controllers/ProductsSearchController.cs
shchoholiev 68ab565800 SA-197 Add suggestions to product search
- Change OpenAI prompt
- Update logic OpenAI response handling
- Start refactoring of  SearchProductAsync()
- Add GetWishlistMessagesAsync() to MessagesRepository to retrieve all messages for wishlist
2023-12-11 00:49:08 +00:00

44 lines
1.6 KiB
C#

using HotChocolate.Authorization;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using ShoppingAssistantApi.Application.IServices;
using ShoppingAssistantApi.Application.Models.CreateDtos;
using ShoppingAssistantApi.Application.Models.Dtos;
using ShoppingAssistantApi.Domain.Enums;
namespace ShoppingAssistantApi.Api.Controllers;
public class ProductsSearchController : BaseController
{
private readonly IProductService _productService;
private readonly IWishlistsService _wishlistsService;
public ProductsSearchController(IProductService productService, IWishlistsService wishlistsService)
{
_productService = productService;
_wishlistsService = wishlistsService;
}
[Authorize]
[HttpPost("search/{wishlistId}")]
public async Task StreamDataToClient(string wishlistId, [FromBody] MessageCreateDto message, CancellationToken cancellationToken)
{
Response.Headers.Add("Content-Type", "text/event-stream");
Response.Headers.Add("Cache-Control", "no-cache");
Response.Headers.Add("Connection", "keep-alive");
var result = _productService.SearchProductAsync(wishlistId, message, cancellationToken);
await foreach (var sse in result)
{
var chunk = JsonConvert.SerializeObject(sse.Data);
var serverSentEvent = $"event: {sse.Event}\ndata: {chunk}\n\n";
await Response.WriteAsync(serverSentEvent, cancellationToken: cancellationToken);
await Response.Body.FlushAsync(cancellationToken);
}
}
}