feat(payment): add per-user in-memory lock for gateway operations
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 9m58s
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 9m58s
Introduce IUserPaymentLock to serialize payment initiate and verify flows per user, preventing concurrent duplicate gateway requests across services. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace CMSMicroservice.Application.Common.Exceptions;
|
||||
|
||||
/// <summary>
|
||||
/// Thrown when a concurrent payment operation is already in progress for the same scope.
|
||||
/// </summary>
|
||||
public class PaymentInProgressException : Exception
|
||||
{
|
||||
public PaymentInProgressException()
|
||||
: base("یک عملیات پرداخت دیگر در حال پردازش است. لطفاً چند لحظه صبر کنید.")
|
||||
{
|
||||
}
|
||||
|
||||
public PaymentInProgressException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public PaymentInProgressException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
namespace CMSMicroservice.Application.Common.Interfaces;
|
||||
|
||||
/// <summary>
|
||||
/// Per-scope in-process mutex for payment flows (initiate / verify).
|
||||
/// Prevents the same user from running duplicate gateway operations concurrently.
|
||||
/// </summary>
|
||||
public interface IUserPaymentLock
|
||||
{
|
||||
Task<T> ExecuteAsync<T>(
|
||||
string scope,
|
||||
PaymentLockStrategy strategy,
|
||||
Func<CancellationToken, Task<T>> action,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
Task ExecuteAsync(
|
||||
string scope,
|
||||
PaymentLockStrategy strategy,
|
||||
Func<CancellationToken, Task> action,
|
||||
CancellationToken cancellationToken = default);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// How to behave when the payment lock is already held.
|
||||
/// </summary>
|
||||
public enum PaymentLockStrategy
|
||||
{
|
||||
/// <summary>Wait up to the configured timeout (callback / verify paths).</summary>
|
||||
WaitForRelease,
|
||||
|
||||
/// <summary>Reject immediately (initiate / double-click paths).</summary>
|
||||
FailFast
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
namespace CMSMicroservice.Application.Common;
|
||||
|
||||
/// <summary>
|
||||
/// Canonical scope keys for <see cref="Interfaces.IUserPaymentLock"/>.
|
||||
/// </summary>
|
||||
public static class PaymentLockScopes
|
||||
{
|
||||
/// <summary>One active payment initiation per user (package, wallet charge, order, IPG deposit).</summary>
|
||||
public static string Initiate(long userId) => $"payment:initiate:user:{userId}";
|
||||
|
||||
/// <summary>One active verify per user + authority/order (duplicate callback protection).</summary>
|
||||
public static string Verify(long userId, string resourceKey)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(resourceKey))
|
||||
throw new ArgumentException("Payment verify resource key is required.", nameof(resourceKey));
|
||||
|
||||
return $"payment:verify:user:{userId}:{resourceKey.Trim()}";
|
||||
}
|
||||
}
|
||||
+14
-2
@@ -1,3 +1,5 @@
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common.Services;
|
||||
using CMSMicroservice.Domain.Entities.DiscountShop;
|
||||
@@ -17,22 +19,32 @@ public class PlaceOrderCommandHandler : IRequestHandler<PlaceOrderCommand, Place
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly ILogger<PlaceOrderCommandHandler> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public PlaceOrderCommandHandler(
|
||||
IApplicationDbContext context,
|
||||
IInventoryService inventoryService,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
IConfiguration configuration,
|
||||
ILogger<PlaceOrderCommandHandler> logger)
|
||||
ILogger<PlaceOrderCommandHandler> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_context = context;
|
||||
_inventoryService = inventoryService;
|
||||
_paymentGateway = paymentGateway;
|
||||
_configuration = configuration;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
public async Task<PlaceOrderResponseDto> Handle(PlaceOrderCommand request, CancellationToken cancellationToken)
|
||||
public Task<PlaceOrderResponseDto> Handle(PlaceOrderCommand request, CancellationToken cancellationToken) =>
|
||||
_paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Initiate(request.UserId),
|
||||
PaymentLockStrategy.FailFast,
|
||||
ct => HandleCore(request, ct),
|
||||
cancellationToken);
|
||||
|
||||
private async Task<PlaceOrderResponseDto> HandleCore(PlaceOrderCommand request, CancellationToken cancellationToken)
|
||||
{
|
||||
// Get user wallet
|
||||
var userWallet = await _context.UserWallets
|
||||
|
||||
+15
-2
@@ -1,3 +1,4 @@
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common.Models;
|
||||
@@ -17,20 +18,32 @@ public class ChargeDiscountWalletCommandHandler
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly ILogger<ChargeDiscountWalletCommandHandler> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public ChargeDiscountWalletCommandHandler(
|
||||
IApplicationDbContext context,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
IConfiguration configuration,
|
||||
ILogger<ChargeDiscountWalletCommandHandler> logger)
|
||||
ILogger<ChargeDiscountWalletCommandHandler> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_context = context;
|
||||
_paymentGateway = paymentGateway;
|
||||
_configuration = configuration;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
public async Task<PaymentInitiateResult> Handle(
|
||||
public Task<PaymentInitiateResult> Handle(
|
||||
ChargeDiscountWalletCommand request,
|
||||
CancellationToken cancellationToken) =>
|
||||
_paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Initiate(request.UserId),
|
||||
PaymentLockStrategy.FailFast,
|
||||
ct => HandleCore(request, ct),
|
||||
cancellationToken);
|
||||
|
||||
private async Task<PaymentInitiateResult> HandleCore(
|
||||
ChargeDiscountWalletCommand request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
|
||||
+15
-2
@@ -1,3 +1,4 @@
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Domain.Common;
|
||||
@@ -18,20 +19,32 @@ public class ChargeMagicWalletCommandHandler
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly ILogger<ChargeMagicWalletCommandHandler> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public ChargeMagicWalletCommandHandler(
|
||||
IApplicationDbContext context,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
IConfiguration configuration,
|
||||
ILogger<ChargeMagicWalletCommandHandler> logger)
|
||||
ILogger<ChargeMagicWalletCommandHandler> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_context = context;
|
||||
_paymentGateway = paymentGateway;
|
||||
_configuration = configuration;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
public async Task<PaymentInitiateResult> Handle(
|
||||
public Task<PaymentInitiateResult> Handle(
|
||||
ChargeMagicWalletCommand request,
|
||||
CancellationToken cancellationToken) =>
|
||||
_paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Initiate(request.UserId),
|
||||
PaymentLockStrategy.FailFast,
|
||||
ct => HandleCore(request, ct),
|
||||
cancellationToken);
|
||||
|
||||
private async Task<PaymentInitiateResult> HandleCore(
|
||||
ChargeMagicWalletCommand request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
|
||||
+15
-2
@@ -1,3 +1,4 @@
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common.Models;
|
||||
@@ -15,18 +16,30 @@ public class VerifyDiscountWalletChargeCommandHandler
|
||||
private readonly IApplicationDbContext _context;
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly ILogger<VerifyDiscountWalletChargeCommandHandler> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public VerifyDiscountWalletChargeCommandHandler(
|
||||
IApplicationDbContext context,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
ILogger<VerifyDiscountWalletChargeCommandHandler> logger)
|
||||
ILogger<VerifyDiscountWalletChargeCommandHandler> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_context = context;
|
||||
_paymentGateway = paymentGateway;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
public async Task<bool> Handle(
|
||||
public Task<bool> Handle(
|
||||
VerifyDiscountWalletChargeCommand request,
|
||||
CancellationToken cancellationToken) =>
|
||||
_paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Verify(request.UserId, request.Authority),
|
||||
PaymentLockStrategy.WaitForRelease,
|
||||
ct => HandleCore(request, ct),
|
||||
cancellationToken);
|
||||
|
||||
private async Task<bool> HandleCore(
|
||||
VerifyDiscountWalletChargeCommand request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
|
||||
+26
-1
@@ -1,3 +1,4 @@
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Domain.Common;
|
||||
@@ -16,20 +17,44 @@ public class VerifyMagicWalletChargeCommandHandler
|
||||
private readonly IApplicationDbContext _context;
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly ILogger<VerifyMagicWalletChargeCommandHandler> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public VerifyMagicWalletChargeCommandHandler(
|
||||
IApplicationDbContext context,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
ILogger<VerifyMagicWalletChargeCommandHandler> logger)
|
||||
ILogger<VerifyMagicWalletChargeCommandHandler> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_context = context;
|
||||
_paymentGateway = paymentGateway;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
public async Task<bool> Handle(
|
||||
VerifyMagicWalletChargeCommand request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var paymentTx = await _context.PaymentTransactions
|
||||
.AsNoTracking()
|
||||
.FirstOrDefaultAsync(pt => pt.Authority == request.Authority, cancellationToken);
|
||||
|
||||
if (paymentTx == null)
|
||||
throw new NotFoundException("تراکنش پرداخت یافت نشد");
|
||||
|
||||
if (!paymentTx.UserId.HasValue)
|
||||
throw new BadRequestException("شناسه کاربر در تراکنش پرداخت یافت نشد");
|
||||
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Verify(paymentTx.UserId.Value, request.Authority),
|
||||
PaymentLockStrategy.WaitForRelease,
|
||||
ct => HandleCore(request, ct),
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
private async Task<bool> HandleCore(
|
||||
VerifyMagicWalletChargeCommand request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
@@ -39,6 +39,7 @@ public static class ConfigureServices
|
||||
services.AddScoped<IAlertService, AlertService>();
|
||||
services.AddScoped<IUserNotificationService, UserNotificationService>();
|
||||
services.AddScoped<IKavenegarService, KavenegarService>();
|
||||
services.AddSingleton<IUserPaymentLock, UserPaymentLockService>();
|
||||
// Local file manager — files are saved to wwwroot/uploads/ on CMS disk
|
||||
services.AddSingleton<CMSMicroservice.Application.Common.FileManager.IFileManager, LocalFileManager>();
|
||||
services.AddScoped<IPermissionService, PermissionService>();
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
using System.Collections.Concurrent;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace CMSMicroservice.Infrastructure.Services;
|
||||
|
||||
/// <summary>
|
||||
/// In-process keyed semaphore lock for payment operations.
|
||||
/// Safe for multi-threaded gRPC/MediatR handlers within a single CMS instance.
|
||||
/// </summary>
|
||||
public sealed class UserPaymentLockService : IUserPaymentLock, IDisposable
|
||||
{
|
||||
private static readonly TimeSpan VerifyWaitTimeout = TimeSpan.FromSeconds(30);
|
||||
private static readonly TimeSpan StaleEntryAge = TimeSpan.FromMinutes(30);
|
||||
private static readonly TimeSpan CleanupInterval = TimeSpan.FromMinutes(5);
|
||||
|
||||
private readonly ConcurrentDictionary<string, LockEntry> _entries = new();
|
||||
private readonly ILogger<UserPaymentLockService> _logger;
|
||||
private readonly Timer _cleanupTimer;
|
||||
private int _disposed;
|
||||
|
||||
public UserPaymentLockService(ILogger<UserPaymentLockService> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
_cleanupTimer = new Timer(_ => CleanupStaleEntries(), null, CleanupInterval, CleanupInterval);
|
||||
}
|
||||
|
||||
public Task<T> ExecuteAsync<T>(
|
||||
string scope,
|
||||
PaymentLockStrategy strategy,
|
||||
Func<CancellationToken, Task<T>> action,
|
||||
CancellationToken cancellationToken = default)
|
||||
{
|
||||
ArgumentException.ThrowIfNullOrWhiteSpace(scope);
|
||||
ArgumentNullException.ThrowIfNull(action);
|
||||
|
||||
return ExecuteCoreAsync(scope, strategy, action, cancellationToken);
|
||||
}
|
||||
|
||||
public async Task ExecuteAsync(
|
||||
string scope,
|
||||
PaymentLockStrategy strategy,
|
||||
Func<CancellationToken, Task> action,
|
||||
CancellationToken cancellationToken = default)
|
||||
{
|
||||
ArgumentException.ThrowIfNullOrWhiteSpace(scope);
|
||||
ArgumentNullException.ThrowIfNull(action);
|
||||
|
||||
await ExecuteCoreAsync(
|
||||
scope,
|
||||
strategy,
|
||||
async ct =>
|
||||
{
|
||||
await action(ct);
|
||||
return true;
|
||||
},
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
private async Task<T> ExecuteCoreAsync<T>(
|
||||
string scope,
|
||||
PaymentLockStrategy strategy,
|
||||
Func<CancellationToken, Task<T>> action,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var entry = _entries.GetOrAdd(scope, static _ => new LockEntry());
|
||||
entry.Touch();
|
||||
|
||||
var waitTimeout = strategy == PaymentLockStrategy.FailFast
|
||||
? TimeSpan.Zero
|
||||
: VerifyWaitTimeout;
|
||||
|
||||
Interlocked.Increment(ref entry.WaiterCount);
|
||||
|
||||
var acquired = false;
|
||||
try
|
||||
{
|
||||
acquired = await entry.Semaphore.WaitAsync(waitTimeout, cancellationToken);
|
||||
if (!acquired)
|
||||
{
|
||||
_logger.LogWarning(
|
||||
"Payment lock busy. Scope={Scope}, Strategy={Strategy}",
|
||||
scope,
|
||||
strategy);
|
||||
|
||||
throw new PaymentInProgressException(
|
||||
strategy == PaymentLockStrategy.FailFast
|
||||
? "درخواست پرداخت دیگری در حال پردازش است. لطفاً صبر کنید."
|
||||
: "تأیید پرداخت در حال انجام است. لطفاً چند لحظه صبر کنید.");
|
||||
}
|
||||
|
||||
entry.Touch();
|
||||
return await action(cancellationToken);
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (acquired)
|
||||
entry.Semaphore.Release();
|
||||
|
||||
if (Interlocked.Decrement(ref entry.WaiterCount) == 0 && entry.CanRemove)
|
||||
_entries.TryRemove(scope, out _);
|
||||
}
|
||||
}
|
||||
|
||||
private void CleanupStaleEntries()
|
||||
{
|
||||
if (Interlocked.CompareExchange(ref _disposed, 0, 0) == 1)
|
||||
return;
|
||||
|
||||
var cutoff = DateTime.UtcNow - StaleEntryAge;
|
||||
foreach (var (scope, entry) in _entries)
|
||||
{
|
||||
if (entry.LastUsedUtc < cutoff && entry.CanRemove)
|
||||
_entries.TryRemove(scope, out _);
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
if (Interlocked.Exchange(ref _disposed, 1) == 1)
|
||||
return;
|
||||
|
||||
_cleanupTimer.Dispose();
|
||||
|
||||
foreach (var entry in _entries.Values)
|
||||
entry.Semaphore.Dispose();
|
||||
|
||||
_entries.Clear();
|
||||
}
|
||||
|
||||
private sealed class LockEntry
|
||||
{
|
||||
public SemaphoreSlim Semaphore { get; } = new(1, 1);
|
||||
public int WaiterCount;
|
||||
public DateTime LastUsedUtc { get; private set; } = DateTime.UtcNow;
|
||||
|
||||
public void Touch() => LastUsedUtc = DateTime.UtcNow;
|
||||
|
||||
public bool CanRemove =>
|
||||
Volatile.Read(ref WaiterCount) == 0 && Semaphore.CurrentCount == 1;
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
using CMSMicroservice.Protobuf.Protos.DiscountOrder;
|
||||
using CMSMicroservice.WebApi.Common.Services;
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.DiscountShopCQ.Commands.PlaceOrder;
|
||||
using CMSMicroservice.Application.DiscountShopCQ.Commands.CompleteOrderPayment;
|
||||
@@ -26,6 +28,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
private readonly IApplicationDbContext _context;
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly ILogger<DiscountOrderService> _logger;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public DiscountOrderService(
|
||||
IDispatchRequestToCQRS dispatchRequestToCQRS,
|
||||
@@ -33,7 +36,8 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
ICurrentUserService currentUserService,
|
||||
IApplicationDbContext context,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
ILogger<DiscountOrderService> logger)
|
||||
ILogger<DiscountOrderService> logger,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_dispatchRequestToCQRS = dispatchRequestToCQRS;
|
||||
_sender = sender;
|
||||
@@ -41,6 +45,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
_context = context;
|
||||
_paymentGateway = paymentGateway;
|
||||
_logger = logger;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
|
||||
private long GetCurrentUserId()
|
||||
@@ -58,6 +63,9 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
UserAddressId = request.UserAddressId,
|
||||
DiscountBalanceToUse = request.DiscountBalanceToUse
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
var result = await _sender.Send(command);
|
||||
|
||||
var response = new PlaceOrderResponse
|
||||
@@ -73,6 +81,15 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
|
||||
return response;
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
return new PlaceOrderResponse
|
||||
{
|
||||
Success = false,
|
||||
Message = ex.Message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
public override async Task<CompleteOrderPaymentResponse> CompleteOrderPayment(CompleteOrderPaymentRequest request, ServerCallContext context)
|
||||
{
|
||||
@@ -193,6 +210,48 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
|
||||
public override async Task<CustomerVerifyDiscountOrderPaymentResponse> CustomerVerifyDiscountOrderPayment(
|
||||
CustomerVerifyDiscountOrderPaymentRequest request, ServerCallContext context)
|
||||
{
|
||||
var orderOwner = await _context.DiscountOrders
|
||||
.Where(o => o.Id == request.OrderId)
|
||||
.Select(o => (long?)o.UserId)
|
||||
.FirstOrDefaultAsync(context.CancellationToken);
|
||||
|
||||
if (orderOwner is null or 0)
|
||||
{
|
||||
return new CustomerVerifyDiscountOrderPaymentResponse
|
||||
{
|
||||
Success = false,
|
||||
Message = "سفارش یافت نشد",
|
||||
OrderId = request.OrderId
|
||||
};
|
||||
}
|
||||
|
||||
var verifyKey = !string.IsNullOrEmpty(request.Authority)
|
||||
? request.Authority
|
||||
: request.OrderId.ToString();
|
||||
|
||||
try
|
||||
{
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Verify(orderOwner.Value, verifyKey),
|
||||
PaymentLockStrategy.WaitForRelease,
|
||||
ct => CustomerVerifyDiscountOrderPaymentCore(request, ct),
|
||||
context.CancellationToken);
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
return new CustomerVerifyDiscountOrderPaymentResponse
|
||||
{
|
||||
Success = false,
|
||||
Message = ex.Message,
|
||||
OrderId = request.OrderId
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<CustomerVerifyDiscountOrderPaymentResponse> CustomerVerifyDiscountOrderPaymentCore(
|
||||
CustomerVerifyDiscountOrderPaymentRequest request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
_logger.LogInformation(
|
||||
"CustomerVerifyDiscountOrderPayment called: OrderId={OrderId}, Authority={Authority}, Status={Status}",
|
||||
@@ -203,7 +262,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
// پیدا کردن سفارش و تراکنش
|
||||
var order = await _context.DiscountOrders
|
||||
.Include(o => o.OrderDetails)
|
||||
.FirstOrDefaultAsync(o => o.Id == request.OrderId, context.CancellationToken);
|
||||
.FirstOrDefaultAsync(o => o.Id == request.OrderId, cancellationToken);
|
||||
|
||||
if (order == null)
|
||||
{
|
||||
@@ -218,7 +277,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
|
||||
var transaction = order.TransactionId.HasValue
|
||||
? await _context.Transactions.FirstOrDefaultAsync(
|
||||
t => t.Id == order.TransactionId.Value, context.CancellationToken)
|
||||
t => t.Id == order.TransactionId.Value, cancellationToken)
|
||||
: null;
|
||||
|
||||
// تأیید پرداخت از درگاه
|
||||
@@ -233,14 +292,14 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
request.Authority,
|
||||
request.Status,
|
||||
order.GatewayAmountPaid,
|
||||
context.CancellationToken);
|
||||
cancellationToken);
|
||||
|
||||
paymentSuccess = verifyResult.IsSuccess;
|
||||
refId = verifyResult.TrackingCode ?? verifyResult.RefId;
|
||||
|
||||
// آپدیت PaymentTransaction با نتیجه verify
|
||||
var paymentTx = await _context.PaymentTransactions
|
||||
.FirstOrDefaultAsync(pt => pt.Authority == request.Authority, context.CancellationToken);
|
||||
.FirstOrDefaultAsync(pt => pt.Authority == request.Authority, cancellationToken);
|
||||
if (paymentTx != null)
|
||||
{
|
||||
paymentTx.PaymentStatus = verifyResult.IsSuccess;
|
||||
@@ -249,7 +308,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
paymentTx.CardPan = verifyResult.CardPan;
|
||||
paymentTx.CardHash = verifyResult.CardHash;
|
||||
paymentTx.RefId = verifyResult.TrackingCode;
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
}
|
||||
|
||||
_logger.LogInformation(
|
||||
@@ -268,7 +327,7 @@ public class DiscountOrderService : DiscountOrderContract.DiscountOrderContractB
|
||||
TransactionId = transaction?.Id ?? 0,
|
||||
PaymentSuccess = paymentSuccess,
|
||||
RefId = refId
|
||||
}, context.CancellationToken);
|
||||
}, cancellationToken);
|
||||
|
||||
return new CustomerVerifyDiscountOrderPaymentResponse
|
||||
{
|
||||
|
||||
@@ -10,6 +10,8 @@ using CMSMicroservice.Application.PackageCQ.Queries.GetCustomerPackages;
|
||||
using CMSMicroservice.Application.PackageCQ.Queries.GetCustomerPackageDetails;
|
||||
using CMSMicroservice.Application.PackageCQ.Queries.GetCustomerPurchaseHistory;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Domain.Entities.Payment;
|
||||
using AppModels = CMSMicroservice.Application.Common.Models;
|
||||
using Grpc.Core;
|
||||
@@ -32,6 +34,7 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
private readonly ICurrentUserService _currentUserService;
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public PackageService(
|
||||
IDispatchRequestToCQRS dispatchRequestToCQRS,
|
||||
@@ -39,7 +42,8 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
IApplicationDbContext context,
|
||||
ICurrentUserService currentUserService,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
IConfiguration configuration)
|
||||
IConfiguration configuration,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_dispatchRequestToCQRS = dispatchRequestToCQRS;
|
||||
_sender = sender;
|
||||
@@ -47,6 +51,7 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
_currentUserService = currentUserService;
|
||||
_paymentGateway = paymentGateway;
|
||||
_configuration = configuration;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
public override async Task<CreateNewPackageResponse> CreateNewPackage(CreateNewPackageRequest request, ServerCallContext context)
|
||||
{
|
||||
@@ -139,11 +144,30 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
|
||||
try
|
||||
{
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Initiate(userId),
|
||||
PaymentLockStrategy.FailFast,
|
||||
ct => CustomerPurchasePackageCore(request, userId, ct),
|
||||
context.CancellationToken);
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
throw new RpcException(new Status(StatusCode.FailedPrecondition, ex.Message));
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<CustomerPurchasePackageResponse> CustomerPurchasePackageCore(
|
||||
CustomerPurchasePackageRequest request,
|
||||
long userId,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
// Lookup package
|
||||
var package = await _context.Packages
|
||||
.AsNoTracking()
|
||||
.Where(p => p.Id == request.PackageId && !p.IsDeleted)
|
||||
.FirstOrDefaultAsync(context.CancellationToken);
|
||||
.FirstOrDefaultAsync(cancellationToken);
|
||||
|
||||
if (package == null)
|
||||
throw new RpcException(new Status(StatusCode.NotFound, "پکیج مورد نظر یافت نشد"));
|
||||
@@ -157,7 +181,7 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
Type = Domain.Enums.TransactionType.Buy
|
||||
};
|
||||
_context.Transactions.Add(transaction);
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
// Create purchase record
|
||||
var purchaseMethod = request.PurchaseMethod == PurchaseMethodEnum.PurchaseMethodGateway
|
||||
@@ -174,14 +198,14 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
TransactionId = transaction.Id
|
||||
};
|
||||
_context.UserPackagePurchases.Add(purchase);
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
// Initiate payment with gateway
|
||||
var user = await _context.Users
|
||||
.AsNoTracking()
|
||||
.Where(u => u.Id == userId)
|
||||
.Select(u => new { u.Mobile })
|
||||
.FirstOrDefaultAsync(context.CancellationToken);
|
||||
.FirstOrDefaultAsync(cancellationToken);
|
||||
|
||||
// Callback URL از config — نه از ورودی کاربر (امنیت)
|
||||
var frontOfficeBaseUrl = _configuration["FrontOfficeBaseUrl"] ?? "https://localhost:5268";
|
||||
@@ -194,12 +218,12 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
Mobile = user?.Mobile ?? string.Empty,
|
||||
Description = $"خرید پکیج {package.Title}",
|
||||
CallbackUrl = callbackUrl
|
||||
}, context.CancellationToken);
|
||||
}, cancellationToken);
|
||||
|
||||
if (!paymentResult.IsSuccess)
|
||||
{
|
||||
transaction.PaymentStatus = Domain.Enums.PaymentStatus.Reject;
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
return new CustomerPurchasePackageResponse
|
||||
{
|
||||
@@ -229,7 +253,7 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
OrderId = purchase.Id.ToString()
|
||||
};
|
||||
_context.PaymentTransactions.Add(paymentTx);
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
return new CustomerPurchasePackageResponse
|
||||
{
|
||||
@@ -245,6 +269,36 @@ public class PackageService : PackageContract.PackageContractBase
|
||||
{
|
||||
var ct = context.CancellationToken;
|
||||
|
||||
var purchaseUserId = await _context.UserPackagePurchases
|
||||
.Where(p => p.Id == request.OrderId && !p.IsDeleted)
|
||||
.Select(p => (long?)p.UserId)
|
||||
.FirstOrDefaultAsync(ct);
|
||||
|
||||
if (purchaseUserId is null or 0)
|
||||
throw new RpcException(new Status(StatusCode.NotFound, "سفارش یافت نشد"));
|
||||
|
||||
var verifyKey = !string.IsNullOrEmpty(request.Authority)
|
||||
? request.Authority
|
||||
: request.OrderId.ToString();
|
||||
|
||||
try
|
||||
{
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Verify(purchaseUserId.Value, verifyKey),
|
||||
PaymentLockStrategy.WaitForRelease,
|
||||
lockCt => CustomerVerifyPackagePurchaseCore(request, lockCt),
|
||||
ct);
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
throw new RpcException(new Status(StatusCode.FailedPrecondition, ex.Message));
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<CustomerVerifyPackagePurchaseResponse> CustomerVerifyPackagePurchaseCore(
|
||||
CustomerVerifyPackagePurchaseRequest request,
|
||||
CancellationToken ct)
|
||||
{
|
||||
var purchase = await _context.UserPackagePurchases
|
||||
.Include(p => p.Package)
|
||||
.Where(p => p.Id == request.OrderId && !p.IsDeleted)
|
||||
|
||||
@@ -10,6 +10,8 @@ using CMSMicroservice.Application.TransactionsCQ.Commands.RefundTransaction;
|
||||
using CMSMicroservice.Application.TransactionsCQ.Queries.GetCustomerTransaction;
|
||||
using CMSMicroservice.Application.TransactionsCQ.Queries.GetCustomerTransactionsByFilter;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Domain.Entities.Payment;
|
||||
using AppModels = CMSMicroservice.Application.Common.Models;
|
||||
using Grpc.Core;
|
||||
@@ -28,6 +30,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
private readonly ICurrentUserService _currentUserService;
|
||||
private readonly IPaymentGatewayService _paymentGateway;
|
||||
private readonly IConfiguration _configuration;
|
||||
private readonly IUserPaymentLock _paymentLock;
|
||||
|
||||
public TransactionsService(
|
||||
IDispatchRequestToCQRS dispatchRequestToCQRS,
|
||||
@@ -35,7 +38,8 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
IApplicationDbContext context,
|
||||
ICurrentUserService currentUserService,
|
||||
IPaymentGatewayService paymentGateway,
|
||||
IConfiguration configuration)
|
||||
IConfiguration configuration,
|
||||
IUserPaymentLock paymentLock)
|
||||
{
|
||||
_dispatchRequestToCQRS = dispatchRequestToCQRS;
|
||||
_sender = sender;
|
||||
@@ -43,6 +47,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
_currentUserService = currentUserService;
|
||||
_paymentGateway = paymentGateway;
|
||||
_configuration = configuration;
|
||||
_paymentLock = paymentLock;
|
||||
}
|
||||
public override async Task<CreateNewTransactionsResponse> CreateNewTransactions(CreateNewTransactionsRequest request, ServerCallContext context)
|
||||
{
|
||||
@@ -143,12 +148,31 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
|
||||
try
|
||||
{
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Initiate(userId),
|
||||
PaymentLockStrategy.FailFast,
|
||||
ct => CustomerPaymentRequestCore(request, userId, ct),
|
||||
context.CancellationToken);
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
throw new RpcException(new Status(StatusCode.FailedPrecondition, ex.Message));
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<CustomerPaymentRequestResponse> CustomerPaymentRequestCore(
|
||||
CustomerPaymentRequestRequest request,
|
||||
long userId,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
// Get user mobile for payment gateway
|
||||
var user = await _context.Users
|
||||
.AsNoTracking()
|
||||
.Where(u => u.Id == userId)
|
||||
.Select(u => new { u.Mobile, u.Email })
|
||||
.FirstOrDefaultAsync(context.CancellationToken);
|
||||
.FirstOrDefaultAsync(cancellationToken);
|
||||
|
||||
// Create transaction record in DB
|
||||
var transaction = new CMSMicroservice.Domain.Entities.Transaction
|
||||
@@ -160,7 +184,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
};
|
||||
|
||||
_context.Transactions.Add(transaction);
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
// Callback URL از config — نه از ورودی کاربر (امنیت)
|
||||
var frontOfficeBaseUrl = _configuration["FrontOfficeBaseUrl"] ?? "https://localhost:5268";
|
||||
@@ -174,13 +198,13 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
Mobile = request.Mobile ?? user?.Mobile ?? string.Empty,
|
||||
Description = request.Description ?? "پرداخت آنلاین",
|
||||
CallbackUrl = callbackUrl
|
||||
}, context.CancellationToken);
|
||||
}, cancellationToken);
|
||||
|
||||
if (!paymentResult.IsSuccess)
|
||||
{
|
||||
// Update transaction status to failed
|
||||
transaction.PaymentStatus = Domain.Enums.PaymentStatus.Reject;
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
throw new RpcException(new Status(StatusCode.Internal,
|
||||
paymentResult.ErrorMessage ?? "خطا در ارتباط با درگاه پرداخت"));
|
||||
@@ -206,7 +230,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
TransactionId = transaction.Id
|
||||
};
|
||||
_context.PaymentTransactions.Add(paymentTx);
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
return new CustomerPaymentRequestResponse
|
||||
{
|
||||
@@ -215,11 +239,35 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
}
|
||||
|
||||
public override async Task<CustomerPaymentVerificationResponse> CustomerPaymentVerification(CustomerPaymentVerificationRequest request, ServerCallContext context)
|
||||
{
|
||||
var ct = context.CancellationToken;
|
||||
var userId = GetCurrentUserId();
|
||||
var verifyKey = !string.IsNullOrEmpty(request.Authority)
|
||||
? request.Authority
|
||||
: userId.ToString();
|
||||
|
||||
try
|
||||
{
|
||||
return await _paymentLock.ExecuteAsync(
|
||||
PaymentLockScopes.Verify(userId, verifyKey),
|
||||
PaymentLockStrategy.WaitForRelease,
|
||||
lockCt => CustomerPaymentVerificationCore(request, lockCt),
|
||||
ct);
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
throw new RpcException(new Status(StatusCode.FailedPrecondition, ex.Message));
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<CustomerPaymentVerificationResponse> CustomerPaymentVerificationCore(
|
||||
CustomerPaymentVerificationRequest request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
// Find the transaction by authority/refId
|
||||
var transaction = await _context.Transactions
|
||||
.Where(t => t.RefId == request.Authority && !t.IsDeleted)
|
||||
.FirstOrDefaultAsync(context.CancellationToken);
|
||||
.FirstOrDefaultAsync(cancellationToken);
|
||||
|
||||
if (transaction == null)
|
||||
throw new RpcException(new Status(StatusCode.NotFound, "تراکنش یافت نشد"));
|
||||
@@ -228,7 +276,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
if (request.Status != "OK")
|
||||
{
|
||||
transaction.PaymentStatus = Domain.Enums.PaymentStatus.Reject;
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
return new CustomerPaymentVerificationResponse
|
||||
{
|
||||
@@ -241,13 +289,13 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
|
||||
// واکشی PaymentTransaction برای گرفتن مبلغ (تومان) جهت verify
|
||||
var paymentTx = await _context.PaymentTransactions
|
||||
.FirstOrDefaultAsync(pt => pt.Authority == request.Authority, context.CancellationToken);
|
||||
.FirstOrDefaultAsync(pt => pt.Authority == request.Authority, cancellationToken);
|
||||
|
||||
var amountInToman = paymentTx?.Amount ?? transaction.Amount;
|
||||
|
||||
// Verify with gateway (مبلغ به تومان — سرویس زرینپال خودش ×۱۰ میکنه)
|
||||
var verifyResult = await _paymentGateway.VerifyPaymentAsync(
|
||||
request.Authority, request.Status, (decimal)amountInToman, context.CancellationToken);
|
||||
request.Authority, request.Status, (decimal)amountInToman, cancellationToken);
|
||||
if (paymentTx != null)
|
||||
{
|
||||
paymentTx.PaymentStatus = verifyResult.IsSuccess;
|
||||
@@ -269,7 +317,7 @@ public class TransactionsService : TransactionsContract.TransactionsContractBase
|
||||
transaction.PaymentStatus = Domain.Enums.PaymentStatus.Reject;
|
||||
}
|
||||
|
||||
await _context.SaveChangesAsync(context.CancellationToken);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
|
||||
return new CustomerPaymentVerificationResponse
|
||||
{
|
||||
|
||||
@@ -13,6 +13,7 @@ using CMSMicroservice.Application.UserWalletCQ.Queries.GetCustomerWalletHistory;
|
||||
using CMSMicroservice.Application.UserWalletCQ.Queries.GetCustomerWithdrawals;
|
||||
using CMSMicroservice.Application.UserWalletCQ.Queries.GetCustomerWithdrawalSettings;
|
||||
using CMSMicroservice.Application.Common.Interfaces;
|
||||
using CMSMicroservice.Application.Common.Exceptions;
|
||||
using CMSMicroservice.Domain.Common;
|
||||
using CMSMicroservice.Domain.Enums;
|
||||
using Grpc.Core;
|
||||
@@ -184,6 +185,8 @@ public class UserWalletService : UserWalletContract.UserWalletContractBase
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
|
||||
try
|
||||
{
|
||||
var result = await _sender.Send(new ChargeMagicWalletCommand
|
||||
{
|
||||
UserId = userId,
|
||||
@@ -197,6 +200,15 @@ public class UserWalletService : UserWalletContract.UserWalletContractBase
|
||||
ErrorMessage = result.ErrorMessage ?? ""
|
||||
};
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
return new InitiateMagicChargeResponse
|
||||
{
|
||||
IsSuccess = false,
|
||||
ErrorMessage = ex.Message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// ============= Discount Wallet Methods =============
|
||||
|
||||
@@ -205,6 +217,8 @@ public class UserWalletService : UserWalletContract.UserWalletContractBase
|
||||
{
|
||||
var userId = GetCurrentUserId();
|
||||
|
||||
try
|
||||
{
|
||||
var result = await _sender.Send(new ChargeDiscountWalletCommand
|
||||
{
|
||||
UserId = userId,
|
||||
@@ -218,6 +232,15 @@ public class UserWalletService : UserWalletContract.UserWalletContractBase
|
||||
ErrorMessage = result.ErrorMessage ?? ""
|
||||
};
|
||||
}
|
||||
catch (PaymentInProgressException ex)
|
||||
{
|
||||
return new InitiateDiscountChargeResponse
|
||||
{
|
||||
IsSuccess = false,
|
||||
ErrorMessage = ex.Message
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// ============= Wallet Verify Methods =============
|
||||
|
||||
|
||||
Reference in New Issue
Block a user