pr1/Demo/Domain/UseCase/UserUseCase.cs

136 lines
4.3 KiB
C#
Raw Normal View History

2024-11-17 16:24:01 +00:00
using Demo.Data.Exceptions;
using Demo.Data.Repository;
2024-10-19 21:12:06 +00:00
using Demo.domain.Models;
namespace Demo.Domain.UseCase
{
public class UserUseCase
{
2024-11-17 16:24:01 +00:00
private readonly IUserRepository _repositoryUserImpl;
private readonly IGroupRepository _repositoryGroupImpl;
2024-10-19 21:12:06 +00:00
2024-11-17 16:24:01 +00:00
public UserUseCase(IUserRepository repositoryImpl, IGroupRepository repositoryGroupImpl)
2024-10-19 21:12:06 +00:00
{
_repositoryUserImpl = repositoryImpl;
_repositoryGroupImpl = repositoryGroupImpl;
}
2024-11-17 16:24:01 +00:00
// Приватный метод для валидации ФИО пользователя
private void ValidateUserFIO(string fio)
2024-10-19 21:39:57 +00:00
{
2024-11-17 16:24:01 +00:00
if (string.IsNullOrWhiteSpace(fio))
{
throw new ArgumentException("ФИО не может быть пустым.");
}
2024-10-19 21:12:06 +00:00
}
2024-11-17 16:24:01 +00:00
// Приватный метод для валидации существования пользователя по ID
private UserLocalEnity ValidateUserExistence(Guid userGuid)
2024-10-19 21:39:57 +00:00
{
2024-11-17 16:24:01 +00:00
var user = _repositoryUserImpl.GetAllUsers
.FirstOrDefault(u => u.Guid == userGuid);
if (user == null)
{
throw new Exception("Пользователь не найден.");
}
return user;
2024-10-19 21:39:57 +00:00
}
2024-11-17 16:24:01 +00:00
// Приватный метод для валидации существования группы по ID
private GroupLocalEntity ValidateGroupExistence(int groupId)
2024-10-19 21:39:57 +00:00
{
2024-11-17 16:24:01 +00:00
var group = _repositoryGroupImpl.GetAllGroup()
.FirstOrDefault(g => g.Id == groupId);
if (group == null)
{
throw new Exception("Группа не найдена.");
}
return group;
}
2024-10-19 21:39:57 +00:00
2024-11-17 16:24:01 +00:00
// Вывести всех пользователей
public List<User> GetAllUsers() => _repositoryUserImpl.GetAllUsers
.Join(_repositoryGroupImpl.GetAllGroup(),
user => user.GroupID,
group => group.Id,
(user, group) =>
new User
{
FIO = user.FIO,
Guid = user.Guid,
Group = new Group { Id = group.Id, Name = group.Name }
}).ToList();
// Удалить пользователя по id
public bool RemoveUserById(int userId)
{
try
2024-10-19 21:39:57 +00:00
{
2024-11-17 16:24:01 +00:00
return _repositoryUserImpl.RemoveUserById( userId);
2024-10-19 21:39:57 +00:00
}
2024-11-17 16:24:01 +00:00
catch (UserNotFoundException ex)
2024-10-19 21:39:57 +00:00
{
2024-11-17 16:24:01 +00:00
Console.WriteLine($"Ошибка: {ex.Message}");
return false;
2024-10-19 21:39:57 +00:00
}
2024-11-17 16:24:01 +00:00
catch (RepositoryException ex)
{
Console.WriteLine($"Ошибка в репозитории: {ex.Message}");
return false;
}
}
// Обновить пользователя по guid
public User UpdateUser(User user)
{
ValidateUserFIO(user.FIO);
ValidateGroupExistence(user.Group.Id);
UserLocalEnity userLocalEnity = new UserLocalEnity
{
FIO = user.FIO,
GroupID = user.Group.Id,
Guid = user.Guid
};
UserLocalEnity? result = _repositoryUserImpl.UpdateUser(userLocalEnity);
2024-10-19 21:39:57 +00:00
2024-11-17 16:24:01 +00:00
if (result == null)
{
throw new Exception("Ошибка при обновлении пользователя.");
}
var groupEntity = ValidateGroupExistence(result.GroupID);
return new User
{
FIO = result.FIO,
Guid = result.Guid,
Group = new Group
{
Id = groupEntity.Id,
Name = groupEntity.Name
}
};
}
// Найти пользователя по id
public User FindUserById(Guid userGuid)
{
var user = ValidateUserExistence(userGuid);
var group = ValidateGroupExistence(user.GroupID);
return new User
{
FIO = user.FIO,
Guid = user.Guid,
Group = new Group { Id = group.Id, Name = group.Name }
};
2024-10-19 21:12:06 +00:00
}
}
2024-11-17 16:24:01 +00:00
}