initial commit

This commit is contained in:
2026-07-21 14:08:10 +07:00
commit f7cf118326
533 changed files with 41762 additions and 0 deletions
@@ -0,0 +1,195 @@
@page "/profile/password"
@using System.ComponentModel.DataAnnotations
@using MudBlazor
@using Indotalent.Features.Profile.Password
@using Indotalent.Features.Profile.Password.Cqrs
@using Indotalent.ConfigBackEnd.Interfaces
@using Indotalent.Shared.Utils
@inject ISnackbar Snackbar
@inject PasswordService PasswordService
@inject ICurrentUserService CurrentUserService
<MudPaper Elevation="0" Square="true" Class="pa-6 mb-3 d-flex align-center justify-space-between">
<div>
<MudText Typo="Typo.h5" Style="font-weight: 900; color: #1a1a1a;">Security Settings</MudText>
<MudText Typo="Typo.body2" Style="color: #64748b;">Manage your password and protect your account security.</MudText>
</div>
<div class="d-flex align-center gap-2">
<MudIcon Icon="@Icons.Material.Filled.Home" Size="Size.Small" Color="Color.Default" />
<MudText Typo="Typo.caption" Style="color: #94a3b8;">/</MudText>
<MudText Typo="Typo.caption" Style="color: #94a3b8;">Profile</MudText>
<MudText Typo="Typo.caption" Style="color: #94a3b8;">/</MudText>
<MudText Typo="Typo.caption" Style="font-weight: 600; color: #1a1a1a;">Password</MudText>
</div>
</MudPaper>
<MudPaper Elevation="0" Outlined="true" Class="pa-8" Style="border-radius: 0px; background-color: #ffffff;">
<MudForm @ref="_form" Model="_model" Validation="_validator.ValidateValue()" ValidationDelay="300">
<MudStack Spacing="8">
<MudGrid>
<MudItem xs="12" md="4">
<MudText Typo="Typo.h6" Class="fw-bold">Change Password</MudText>
<MudText Typo="Typo.body2">Update your password to keep your account secure. We recommend using a strong password.</MudText>
</MudItem>
<MudItem xs="12" md="8">
<MudStack Spacing="4">
<div>
<MudText Typo="Typo.subtitle2" Class="mb-2">Current Password</MudText>
<MudTextField @bind-Value="_model.CurrentPassword"
For="@(() => _model.CurrentPassword)"
Variant="Variant.Outlined"
FullWidth="true"
Margin="Margin.Dense"
InputType="@_currentPasswordInput"
Adornment="Adornment.End"
AdornmentIcon="@_currentPasswordIcon"
OnAdornmentClick="ToggleCurrentPasswordVisibility" />
</div>
<MudDivider Class="my-2" />
<div>
<MudText Typo="Typo.subtitle2" Class="mb-2">New Password</MudText>
<MudTextField @bind-Value="_model.NewPassword"
For="@(() => _model.NewPassword)"
Variant="Variant.Outlined"
FullWidth="true"
Margin="Margin.Dense"
InputType="@_newPasswordInput"
Adornment="Adornment.End"
AdornmentIcon="@_newPasswordIcon"
OnAdornmentClick="ToggleNewPasswordVisibility"
HelperText="Minimum 4 characters with numbers and symbols" />
</div>
<div>
<MudText Typo="Typo.subtitle2" Class="mb-2">Confirm New Password</MudText>
<MudTextField @bind-Value="_model.ConfirmPassword"
For="@(() => _model.ConfirmPassword)"
Variant="Variant.Outlined"
FullWidth="true"
Margin="Margin.Dense"
InputType="@_newPasswordInput" />
</div>
</MudStack>
</MudItem>
</MudGrid>
<div class="d-flex justify-end align-center gap-4 mt-4">
<MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="UpdatePassword" Disabled="@_isProcessing">
@if (_isProcessing)
{
<MudProgressCircular Class="ms-n1" Size="Size.Small" Indeterminate="true" />
<MudText Class="ms-2">Updating Password...</MudText>
}
else
{
<MudText>Update Password</MudText>
}
</MudButton>
</div>
</MudStack>
</MudForm>
</MudPaper>
@code {
private MudForm _form = default!;
private UpdatePasswordValidator _validator = new();
private bool _isProcessing = false;
private PasswordChangeModel _model = new();
private bool _currentPasswordVisibility;
private InputType _currentPasswordInput = InputType.Password;
private string _currentPasswordIcon = Icons.Material.Filled.VisibilityOff;
private bool _newPasswordVisibility;
private InputType _newPasswordInput = InputType.Password;
private string _newPasswordIcon = Icons.Material.Filled.VisibilityOff;
private void ToggleCurrentPasswordVisibility()
{
if (_currentPasswordVisibility)
{
_currentPasswordVisibility = false;
_currentPasswordIcon = Icons.Material.Filled.VisibilityOff;
_currentPasswordInput = InputType.Password;
}
else
{
_currentPasswordVisibility = true;
_currentPasswordIcon = Icons.Material.Filled.Visibility;
_currentPasswordInput = InputType.Text;
}
}
private void ToggleNewPasswordVisibility()
{
if (_newPasswordVisibility)
{
_newPasswordVisibility = false;
_newPasswordIcon = Icons.Material.Filled.VisibilityOff;
_newPasswordInput = InputType.Password;
}
else
{
_newPasswordVisibility = true;
_newPasswordIcon = Icons.Material.Filled.Visibility;
_newPasswordInput = InputType.Text;
}
}
private async Task UpdatePassword()
{
await _form.Validate();
if (!_form.IsValid)
{
Snackbar.Add("Please correct the validation errors.", Severity.Warning);
return;
}
if (_model.NewPassword != _model.ConfirmPassword)
{
Snackbar.Add("New password and confirmation do not match.", Severity.Error);
return;
}
var userId = CurrentUserService.UserId;
if (string.IsNullOrEmpty(userId))
{
Snackbar.Add("User session not found.", Severity.Error);
return;
}
_isProcessing = true;
var request = new UpdatePasswordRequest
{
Id = userId,
CurrentPassword = _model.CurrentPassword,
NewPassword = _model.NewPassword
};
var response = await PasswordService.UpdatePasswordAsync(request);
await Task.Delay(500);
if (response != null && response.IsSuccess)
{
Snackbar.Add("Password updated successfully!", Severity.Success);
_model = new PasswordChangeModel();
await _form.ResetAsync();
}
else
{
Snackbar.Add(response?.Message ?? "Failed to update password", Severity.Error);
}
_isProcessing = false;
}
public class PasswordChangeModel : UpdatePasswordRequest
{
public string ConfirmPassword { get; set; } = string.Empty;
}
}
@@ -0,0 +1,50 @@
using Indotalent.Data.Entities;
using MediatR;
using Microsoft.AspNetCore.Identity;
namespace Indotalent.Features.Profile.Password.Cqrs;
public class UpdatePasswordRequest
{
public string Id { get; set; } = string.Empty;
public string CurrentPassword { get; set; } = string.Empty;
public string NewPassword { get; set; } = string.Empty;
}
public class UpdatePasswordResponse
{
public bool Success { get; set; }
public string Message { get; set; } = string.Empty;
public List<string>? Errors { get; set; }
}
public record UpdatePasswordCommand(UpdatePasswordRequest Data) : IRequest<UpdatePasswordResponse>;
public class UpdatePasswordHandler : IRequestHandler<UpdatePasswordCommand, UpdatePasswordResponse>
{
private readonly UserManager<ApplicationUser> _userManager;
public UpdatePasswordHandler(UserManager<ApplicationUser> userManager)
{
_userManager = userManager;
}
public async Task<UpdatePasswordResponse> Handle(UpdatePasswordCommand request, CancellationToken cancellationToken)
{
var user = await _userManager.FindByIdAsync(request.Data.Id);
if (user == null)
return new UpdatePasswordResponse { Success = false, Message = "User not found" };
var result = await _userManager.ChangePasswordAsync(user, request.Data.CurrentPassword, request.Data.NewPassword);
if (result.Succeeded)
return new UpdatePasswordResponse { Success = true };
return new UpdatePasswordResponse
{
Success = false,
Message = "Failed to update password",
Errors = result.Errors.Select(x => x.Description).ToList()
};
}
}
@@ -0,0 +1,18 @@
using FluentValidation;
namespace Indotalent.Features.Profile.Password.Cqrs;
public class UpdatePasswordValidator : AbstractValidator<UpdatePasswordRequest>
{
public UpdatePasswordValidator()
{
RuleFor(x => x.Id).NotEmpty();
RuleFor(x => x.CurrentPassword)
.NotEmpty().WithMessage("Current password is required");
RuleFor(x => x.NewPassword)
.NotEmpty().WithMessage("New password is required")
.MinimumLength(4).WithMessage("Password must be at least 4 characters");
}
}
@@ -0,0 +1,26 @@
using Indotalent.ConfigBackEnd.Extensions;
using Indotalent.Features.Profile.Password.Cqrs;
using MediatR;
using Microsoft.AspNetCore.Authentication.JwtBearer;
namespace Indotalent.Features.Profile.Password;
public static class PasswordEndpoint
{
public static void MapPasswordEndpoints(this IEndpointRouteBuilder app)
{
var group = app.MapGroup("/profile-password").WithTags("Profile Password")
.RequireAuthorization(policy => policy.AddAuthenticationSchemes(JwtBearerDefaults.AuthenticationScheme)
.RequireAuthenticatedUser());
group.MapPost("/update", async (UpdatePasswordRequest request, IMediator mediator) =>
{
var result = await mediator.Send(new UpdatePasswordCommand(request));
if (!result.Success)
return ((object?)null).ToApiResponse(result.Message ?? "Failed to update password", StatusCodes.Status400BadRequest);
return result.ToApiResponse("Password has been updated successfully");
})
.WithName("UpdateProfilePassword");
}
}
@@ -0,0 +1,28 @@
using Indotalent.ConfigBackEnd.Interfaces;
using Indotalent.ConfigFrontEnd.Common;
using Indotalent.Features.Profile.Password.Cqrs;
using Indotalent.Infrastructure.Authentication.Identity;
using Indotalent.Shared.Models;
using Microsoft.AspNetCore.Components;
using MudBlazor;
using RestSharp;
namespace Indotalent.Features.Profile.Password;
public class PasswordService : BaseService
{
private readonly RestClient _client;
public PasswordService(IHttpClientFactory clientFactory, NavigationManager nav, ISnackbar snackbar, ICurrentUserService currentUserService, TokenProvider tokenProvider)
: base(clientFactory, nav, snackbar, currentUserService, tokenProvider)
{
_client = new RestClient(nav.BaseUri);
}
public async Task<ApiResponse<UpdatePasswordResponse>?> UpdatePasswordAsync(UpdatePasswordRequest data)
{
var request = new RestRequest("api/profile-password/update", Method.Post);
request.AddJsonBody(data);
return await ExecuteWithResponseAsync<UpdatePasswordResponse>(_client, request);
}
}