Get me and cors

This commit is contained in:
Veljko Tosic
2026-02-15 23:01:12 +01:00
parent 6d8ae9bef6
commit 3463ba1e6d
5 changed files with 70 additions and 3 deletions

View File

@@ -1,21 +1,21 @@
using AipsCore.Application.Abstract;
using AipsCore.Application.Common.Authentication.Dtos;
using AipsCore.Application.Abstract.MessageBroking;
using AipsCore.Application.Common.Authentication;
using AipsCore.Application.Common.Message.TestMessage;
using AipsCore.Application.Models.User.Command.LogIn;
using AipsCore.Application.Models.User.Command.LogOut;
using AipsCore.Application.Models.User.Command.LogOutAll;
using AipsCore.Application.Models.User.Command.RefreshLogIn;
using AipsCore.Application.Models.User.Command.SignUp;
using AipsCore.Application.Models.User.Query.GetUser;
using AipsCore.Application.Models.User.Query.GetMe;
using AipsCore.Infrastructure.Persistence.User;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace AipsWebApi.Controllers;
[ApiController]
[Route("[controller]")]
[Route("/api/[controller]")]
public class UserController : ControllerBase
{
private readonly IDispatcher _dispatcher;
@@ -72,4 +72,12 @@ public class UserController : ControllerBase
var test = new TestMessage("ovo je test poruka");
await publisher.PublishAsync(test);
}
[Authorize]
[HttpGet("me")]
public async Task<ActionResult<GetMeQueryDto>> GetMe(CancellationToken cancellationToken)
{
var result = await _dispatcher.Execute(new GetMeQuery(), cancellationToken);
return result;
}
}

View File

@@ -14,6 +14,18 @@ builder.Services.AddOpenApi();
builder.Services.AddAips(builder.Configuration);
builder.Services.AddCors(options =>
{
options.AddPolicy("frontend", policy =>
{
policy
.WithOrigins("http://localhost:5173")
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials();
});
});
var app = builder.Build();
await app.Services.InitializeInfrastructureAsync();
@@ -24,6 +36,8 @@ if (app.Environment.IsDevelopment())
app.MapOpenApi();
}
app.UseCors("frontend");
app.UseMiddleware<ExceptionHandlingMiddleware>();
app.UseAuthentication();