mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
- Change OpenAI prompt - Update logic OpenAI response handling - Start refactoring of SearchProductAsync() - Add GetWishlistMessagesAsync() to MessagesRepository to retrieve all messages for wishlist
44 lines
1.6 KiB
C#
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);
|
|
}
|
|
}
|
|
|
|
} |