33 lines
945 B
C#
33 lines
945 B
C#
using API.Models;
|
|
using API.Persistence.Repositories;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Templates.BlazorIdentity.Pages.Manage;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace API.Application.Users.Queries
|
|
{
|
|
public class QueryUserById
|
|
{
|
|
private readonly IUserRepository _repository;
|
|
|
|
public QueryUserById(IUserRepository repository)
|
|
{
|
|
_repository = repository;
|
|
}
|
|
|
|
public async Task<ActionResult<UserDTO>> Handle(string id)
|
|
{
|
|
User user = await _repository.QueryUserByIdAsync(id);
|
|
|
|
if (user == null)
|
|
{
|
|
return new ConflictObjectResult(new { message = "No user on given Id" });
|
|
}
|
|
|
|
return new OkObjectResult(new { id = user.Id, email = user.Email, username = user.Username, profilePicture = user.ProfilePicture, createdAt = user.CreatedAt });
|
|
|
|
}
|
|
|
|
}
|
|
}
|