Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: resend email for admin #258

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Api.Controllers.Payload.Requests.Users;

public class ResendEmailRequest
{
public Guid UserId { get; set; }
}
21 changes: 20 additions & 1 deletion src/Api/Controllers/UsersController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class UsersController : ApiControllerBase
{
private readonly ICurrentUserService _currentUserService;

public UsersController(ICurrentUserService currentUserService)
public UsersController(ICurrentUserService currentUserService, IMailService mailService)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the fuck tho?
I don't u use it anywhere
so....yeh....
Ya no wut tahdu raii?

{
_currentUserService = currentUserService;
}
Expand Down Expand Up @@ -165,6 +165,25 @@ public async Task<ActionResult<Result<UserDto>>> Update([FromRoute] Guid userId,
}

/// <summary>

/// Resend email base on userId
/// </summary>
/// <returns>a UserDto of the user who Admin resend the email to</returns>
[RequiresRole(IdentityData.Roles.Admin)]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[HttpPost("resend-email")]
public async Task<ActionResult<Result<UserDto>>> ResendEmail(ResendEmailRequest request)
{
var command = new ResendUserEmail.Command()
{
UserId = request.UserId,
};

var result = await Mediator.Send(command);

return Ok(Result<UserDto>.Succeed(result));

/// Get all users with the "Employee" role of the current user's department.
/// </summary>
/// <param name="queryParameters">Query parameters</param>
Expand Down
79 changes: 79 additions & 0 deletions src/Application/Users/Commands/ResendUserEmail.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
using Application.Common.Exceptions;
using Application.Common.Interfaces;
using Application.Helpers;
using Application.Users.Queries;
using AutoMapper;
using Domain.Entities;
using MediatR;
using Microsoft.EntityFrameworkCore;
using NodaTime;

namespace Application.Users.Commands;

public class ResendUserEmail
{
public record Command : IRequest<UserDto>
{
public Guid UserId { get; init; }
}

public class CommandHandler : IRequestHandler<Command, UserDto>
{
private readonly IApplicationDbContext _context;
private readonly IMailService _mailService;
private readonly IAuthDbContext _authContext;
private readonly IMapper _mapper;
private readonly ISecurityService _securityService;

public CommandHandler(IApplicationDbContext context, IMailService mailService, IAuthDbContext authContext, IMapper mapper, ISecurityService securityService)
{
_context = context;
_mailService = mailService;
_authContext = authContext;
_mapper = mapper;
_securityService = securityService;
}

public async Task<UserDto> Handle(Command request, CancellationToken cancellationToken)
{
var token = Guid.NewGuid().ToString();
var password = StringUtil.RandomPassword();
var salt = StringUtil.RandomSalt();
var expirationDate = LocalDateTime.FromDateTime(DateTime.Now.AddDays(1));

var user = await _context.Users
.Include(x => x.Department)
.FirstOrDefaultAsync(x => x.Id.Equals(request.UserId),cancellationToken);

if (user is null)
{
throw new KeyNotFoundException("User does not exist");
}

var resetPasswordToken = new ResetPasswordToken()
{
User = user,
TokenHash = SecurityUtil.Hash(token),
ExpirationDate = expirationDate,
IsInvalidated = false,
};

var pastResetPasswordToken = await _authContext.ResetPasswordTokens
.FirstOrDefaultAsync(x => x.User.Id.Equals(user.Id), cancellationToken);

if (pastResetPasswordToken is null)
{
throw new KeyNotFoundException("Token does not exist.");
}

_authContext.ResetPasswordTokens.Remove(pastResetPasswordToken);
await _authContext.ResetPasswordTokens.AddAsync(resetPasswordToken, cancellationToken);
user.PasswordSalt = salt ;
user.PasswordHash =_securityService.Hash(password, salt);
await _authContext.SaveChangesAsync(cancellationToken);
await _context.SaveChangesAsync(cancellationToken);
_mailService.SendResetPasswordHtmlMail(user.Email, password, token);
return _mapper.Map<UserDto>(user);
}
}
}