using AutoMapper; using MongoDB.Bson; using ShoppingAssistantApi.Application.Exceptions; using ShoppingAssistantApi.Application.GlobalInstances; using ShoppingAssistantApi.Application.IRepositories; using ShoppingAssistantApi.Application.IServices; using ShoppingAssistantApi.Application.Models.Dtos; using ShoppingAssistantApi.Application.Paging; using ShoppingAssistantApi.Domain.Entities; namespace ShoppingAssistantApi.Infrastructure.Services; public class UsersService : IUsersService { private readonly IUsersRepository _repository; private readonly IMapper _mapper; public UsersService(IUsersRepository repository, IMapper mapper) { _repository = repository; _mapper = mapper; } public async Task AddUserAsync(UserDto dto, CancellationToken cancellationToken) { var entity = _mapper.Map(dto); await _repository.AddAsync(entity, cancellationToken); } public async Task> GetUsersPageAsync(int pageNumber, int pageSize, CancellationToken cancellationToken) { var entities = await _repository.GetPageAsync(pageNumber, pageSize, cancellationToken); var dtos = _mapper.Map>(entities); var count = await _repository.GetTotalCountAsync(); return new PagedList(dtos, pageNumber, pageSize, count); } public async Task GetUserAsync(string id, CancellationToken cancellationToken) { if (!ObjectId.TryParse(id, out var objectId)) { throw new InvalidDataException("Provided id is invalid."); } var entity = await _repository.GetUserAsync(objectId, cancellationToken); if (entity == null) { throw new EntityNotFoundException(); } return _mapper.Map(entity); } public async Task UpdateUserAsync(UserDto dto, CancellationToken cancellationToken) { var entity = _mapper.Map(dto); entity.LastModifiedById = GlobalUser.Id.Value; entity.LastModifiedDateUtc = DateTime.UtcNow; await _repository.UpdateUserAsync(entity, cancellationToken); } public async Task DeletePersonalUserAsync(string guestId, CancellationToken cancellationToken) { if (!Guid.TryParse(guestId, out var guid)) { throw new InvalidDataException("Provided id is invalid."); } var entity = await _repository.GetUserAsync(u => u.GuestId == guid, cancellationToken); if (entity.Id != GlobalUser.Id) { throw new UnAuthorizedException(); } if (entity == null) { throw new EntityNotFoundException(); } await _repository.DeleteAsync(entity, cancellationToken); } }