Small fixes
This commit is contained in:
parent
bdb1378868
commit
d6eded539d
@ -1,4 +1,5 @@
|
|||||||
using System.Buffers.Text;
|
using System.Buffers.Text;
|
||||||
|
using System.Dynamic;
|
||||||
using System.Net.Http.Json;
|
using System.Net.Http.Json;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@ -9,47 +10,99 @@ using static System.Net.WebRequestMethods;
|
|||||||
|
|
||||||
namespace LiqPayIntegration
|
namespace LiqPayIntegration
|
||||||
{
|
{
|
||||||
public class LiqPay
|
public class LiqPay
|
||||||
{
|
{
|
||||||
private readonly HttpClient _http;
|
private readonly HttpClient _http;
|
||||||
|
|
||||||
public const string API_URL = "https://www.liqpay.ua/api/request";
|
public const string API_URL = "https://www.liqpay.ua/api/request";
|
||||||
public string PublicKey { get; init; }
|
|
||||||
public string PrivateKey { get; init; }
|
public string PublicKey { get; private set; }
|
||||||
public LiqPay(string publicKey, string privateKey)
|
public string PrivateKey { get; private set; }
|
||||||
{
|
public string CallbackUrl { get; private set; }
|
||||||
_http = new HttpClient();
|
public LiqPay(string publicKey, string privateKey)
|
||||||
PublicKey = publicKey;
|
{
|
||||||
PrivateKey = privateKey;
|
_http = new HttpClient();
|
||||||
|
PublicKey = publicKey;
|
||||||
|
PrivateKey = privateKey;
|
||||||
|
}
|
||||||
|
public LiqPay(string publicKey, string privateKey, string callbackUrl) : this (publicKey, privateKey)
|
||||||
|
{
|
||||||
|
CallbackUrl = callbackUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async ValueTask<PaymentResponse[]> PaymentArchive(DateTime from, DateTime to)
|
public async ValueTask<PaymentResponse[]> PaymentArchive(DateTimeOffset from, DateTimeOffset to)
|
||||||
{
|
{
|
||||||
var json = JsonContent.Create(new
|
var json = JsonContent.Create(new
|
||||||
{
|
{
|
||||||
action = "reports",
|
action = "reports",
|
||||||
version = 3,
|
version = 3,
|
||||||
public_key = PublicKey,
|
public_key = PublicKey,
|
||||||
date_from = (long)from.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds,
|
date_from = from.ToUnixTimeMilliseconds(),
|
||||||
date_to = (long)to.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds
|
date_to = to.ToUnixTimeMilliseconds(),
|
||||||
|
//server_url = CallbackUrl
|
||||||
|
/*date_from = (long)from.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds,
|
||||||
|
date_to = (long)to.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds*/
|
||||||
});
|
});
|
||||||
var data = Convert.ToBase64String(await json.ReadAsByteArrayAsync());
|
var data = Convert.ToBase64String(await json.ReadAsByteArrayAsync());
|
||||||
var signString = PrivateKey + data + PrivateKey;
|
var signString = PrivateKey + data + PrivateKey;
|
||||||
var signature = Convert.ToBase64String(SHA1.HashData(Encoding.UTF8.GetBytes(signString)));
|
var signature = Convert.ToBase64String(SHA1.HashData(Encoding.UTF8.GetBytes(signString)));
|
||||||
var requestContent = new FormUrlEncodedContent(new[] {
|
var requestContent = new FormUrlEncodedContent(new[] {
|
||||||
new KeyValuePair<string, string>("data", data),
|
new KeyValuePair<string, string>("data", data),
|
||||||
new KeyValuePair<string, string>("signature", signature)
|
new KeyValuePair<string, string>("signature", signature)
|
||||||
|
});
|
||||||
|
var response = await _http.PostAsync(API_URL, requestContent);
|
||||||
|
var rawResponse = await response.Content.ReadAsStringAsync();
|
||||||
|
var jsonResponse = JsonNode.Parse(rawResponse);
|
||||||
|
if (jsonResponse["result"] == null)
|
||||||
|
throw new NullReferenceException("jsonResponse[\"result\"]");
|
||||||
|
var result = jsonResponse["result"].Deserialize<string>();
|
||||||
|
if (result != "success")
|
||||||
|
throw new Exception("result isn't success");
|
||||||
|
var paymentResponses = jsonResponse["data"].Deserialize<PaymentResponse[]>();
|
||||||
|
return paymentResponses;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<(string data, string signature)> GetCheckout(double amount, string description, string order_id)
|
||||||
|
{
|
||||||
|
var json = JsonContent.Create(new
|
||||||
|
{
|
||||||
|
action = "pay",
|
||||||
|
version = 3,
|
||||||
|
public_key = PublicKey,
|
||||||
|
amount = amount,
|
||||||
|
currency = "UAH",
|
||||||
|
description = description,
|
||||||
|
order_id = order_id,
|
||||||
|
server_url = CallbackUrl
|
||||||
});
|
});
|
||||||
var response = await _http.PostAsync(API_URL, requestContent);
|
var data = Convert.ToBase64String(await json.ReadAsByteArrayAsync());
|
||||||
var rawResponse = await response.Content.ReadAsStringAsync();
|
var signString = PrivateKey + data + PrivateKey;
|
||||||
var jsonResponse = JsonNode.Parse(rawResponse);
|
var signature = Convert.ToBase64String(SHA1.HashData(Encoding.UTF8.GetBytes(signString)));
|
||||||
if (jsonResponse["result"] == null)
|
return (data, signature);
|
||||||
throw new NullReferenceException("jsonResponse[\"result\"]");
|
}
|
||||||
var result = jsonResponse["result"].Deserialize<string>();
|
|
||||||
if (result != "success")
|
public string GetPaymentUrl(string data, string signature)
|
||||||
throw new Exception("result isn't success");
|
{
|
||||||
var paymentResponses = jsonResponse["data"].Deserialize<PaymentResponse[]>();
|
return "https://www.liqpay.ua/api/3/checkout?data=" + data + "&signature=" + signature;
|
||||||
return paymentResponses;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public async ValueTask<string> GetPaymentUrl(double amount, string description, string order_id)
|
||||||
|
{
|
||||||
|
var vars = await GetCheckout(amount, description, order_id);
|
||||||
|
return "https://www.liqpay.ua/api/3/checkout?data=" + vars.data + "&signature=" + vars.signature;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*public async void ReceiptOfReceipt(string orderId, string email)
|
||||||
|
{
|
||||||
|
var json = JsonContent.Create(new
|
||||||
|
{
|
||||||
|
action = "reports",
|
||||||
|
version = 3,
|
||||||
|
public_key = PublicKey,
|
||||||
|
date_from = (long)from.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds,
|
||||||
|
date_to = (long)to.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds
|
||||||
|
});
|
||||||
|
}*/
|
||||||
|
}
|
||||||
}
|
}
|
@ -7,193 +7,193 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace LiqPayIntegration
|
namespace LiqPayIntegration
|
||||||
{
|
{
|
||||||
public class PaymentResponse
|
public class PaymentResponse
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id платежу в системі LiqPay
|
/// Id платежу в системі LiqPay
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("payment_id")]
|
[JsonPropertyName("payment_id")]
|
||||||
public long PaymentId { get; set; }
|
public long PaymentId { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Тип операції.
|
/// Тип операції.
|
||||||
/// Можливі значення: <c>pay</c> - платіж,
|
/// Можливі значення: <c>pay</c> - платіж,
|
||||||
/// <c>hold</c> - блокування коштів на рахунку відправника,
|
/// <c>hold</c> - блокування коштів на рахунку відправника,
|
||||||
/// <c>paysplit</c> - розщеплення платежу,
|
/// <c>paysplit</c> - розщеплення платежу,
|
||||||
/// <c>subscribe</c> - створення регулярного платежу,
|
/// <c>subscribe</c> - створення регулярного платежу,
|
||||||
/// <c>paydonate</c> - пожертвування,
|
/// <c>paydonate</c> - пожертвування,
|
||||||
/// <c>auth</c> - предавторізація картки,
|
/// <c>auth</c> - предавторізація картки,
|
||||||
/// <c>regular</c> - регулярний платіж
|
/// <c>regular</c> - регулярний платіж
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("action")]
|
[JsonPropertyName("action")]
|
||||||
public string Action { get; set; }
|
public string Action { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Статус платежу.
|
/// Статус платежу.
|
||||||
/// Можливі значення:
|
/// Можливі значення:
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("status")]
|
[JsonPropertyName("status")]
|
||||||
public string Status { get; set; }
|
public string Status { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Версія API. Поточне значення - <c>3</c>
|
/// Версія API. Поточне значення - <c>3</c>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("version")]
|
[JsonPropertyName("version")]
|
||||||
public int Version { get; set; }
|
public int Version { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Тип платежу
|
/// Тип платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("type")]
|
[JsonPropertyName("type")]
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Спосіб оплати.
|
/// Спосіб оплати.
|
||||||
/// Можливі значення:
|
/// Можливі значення:
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("paytype")]
|
[JsonPropertyName("paytype")]
|
||||||
public string PayType { get; set; }
|
public string PayType { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Публічний ключ магазину
|
/// Публічний ключ магазину
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("public_key")]
|
[JsonPropertyName("public_key")]
|
||||||
public string PublicKey { get; set; }
|
public string PublicKey { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ID еквайера
|
/// ID еквайера
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("acq_id")]
|
[JsonPropertyName("acq_id")]
|
||||||
public int AcqId { get; set; }
|
public int AcqId { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order_id платежу
|
/// Order_id платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("order_id")]
|
[JsonPropertyName("order_id")]
|
||||||
public string OrderId { get; set; }
|
public string OrderId { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Order_id платежу в системі LiqPay
|
/// Order_id платежу в системі LiqPay
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("liqpay_order_id")]
|
[JsonPropertyName("liqpay_order_id")]
|
||||||
public string LiqPayOrderId { get; set; }
|
public string LiqPayOrderId { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Коментар до платежу
|
/// Коментар до платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("description")]
|
[JsonPropertyName("description")]
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Карта відправника
|
/// Карта відправника
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_card_mask2")]
|
[JsonPropertyName("sender_card_mask2")]
|
||||||
public string SenderCardMask2 { get; set; }
|
public string SenderCardMask2 { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Банк відправника
|
/// Банк відправника
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_card_bank")]
|
[JsonPropertyName("sender_card_bank")]
|
||||||
public string SenderCardBank { get; set; }
|
public string SenderCardBank { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Тип картки відправника MC/Visa
|
/// Тип картки відправника MC/Visa
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_card_type")]
|
[JsonPropertyName("sender_card_type")]
|
||||||
public string SenderCardType { get; set; }
|
public string SenderCardType { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Країна картки відправника. Цифровий <see href="https://uk.wikipedia.org/wiki/ISO_3166-1">ISO 3166-1 код</see>
|
/// Країна картки відправника. Цифровий <see href="https://uk.wikipedia.org/wiki/ISO_3166-1">ISO 3166-1 код</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_card_country")]
|
[JsonPropertyName("sender_card_country")]
|
||||||
public int SenderCardCountry { get; set; }
|
public int SenderCardCountry { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("ip")]
|
[JsonPropertyName("ip")]
|
||||||
public string Ip { get; set; }
|
public string Ip { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Сума платежу
|
/// Сума платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("amount")]
|
[JsonPropertyName("amount")]
|
||||||
public double Amount { get; set; }
|
public double Amount { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Валюта платежу
|
/// Валюта платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("currency")]
|
[JsonPropertyName("currency")]
|
||||||
public string Currency { get; set; }
|
public string Currency { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Комісія з відправника у валюті платежу
|
/// Комісія з відправника у валюті платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_commission")]
|
[JsonPropertyName("sender_commission")]
|
||||||
public double SenderCommission { get; set; }
|
public double SenderCommission { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Комісія з одержувача у валюті платежу
|
/// Комісія з одержувача у валюті платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("receiver_commission")]
|
[JsonPropertyName("receiver_commission")]
|
||||||
public double ReceiverCommission { get; set; }
|
public double ReceiverCommission { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Комісія агента в валюті платежу
|
/// Комісія агента в валюті платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("agent_commission")]
|
[JsonPropertyName("agent_commission")]
|
||||||
public double AgentCommission { get; set; }
|
public double AgentCommission { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Сума транзакції debit у валюті <see cref="CurrencyDebit">currency_debit</see>
|
/// Сума транзакції debit у валюті <see cref="CurrencyDebit">currency_debit</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("amount_debit")]
|
[JsonPropertyName("amount_debit")]
|
||||||
public double AmountDebit { get; set; }
|
public double AmountDebit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Сума транзакції credit в валюті <see cref="CurrencyCredit">amount_credit</see>
|
/// Сума транзакції credit в валюті <see cref="CurrencyCredit">amount_credit</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("amount_credit")]
|
[JsonPropertyName("amount_credit")]
|
||||||
public double AmountCredit { get; set; }
|
public double AmountCredit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Комісія з відправника у валюті <see cref="CurrencyDebit">currency_debit</see>
|
/// Комісія з відправника у валюті <see cref="CurrencyDebit">currency_debit</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("commission_debit")]
|
[JsonPropertyName("commission_debit")]
|
||||||
public double CommissionDebit { get; set; }
|
public double CommissionDebit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Комісія з одержувача у валюті <see cref="CurrencyCredit">currency_credit</see>
|
/// Комісія з одержувача у валюті <see cref="CurrencyCredit">currency_credit</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("commission_credit")]
|
[JsonPropertyName("commission_credit")]
|
||||||
public double CommissionCredit { get; set; }
|
public double CommissionCredit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Валюта транзакції debit
|
/// Валюта транзакції debit
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("currency_debit")]
|
[JsonPropertyName("currency_debit")]
|
||||||
public string CurrencyDebit { get; set; }
|
public string CurrencyDebit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Валюта транзакції credit
|
/// Валюта транзакції credit
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("currency_credit")]
|
[JsonPropertyName("currency_credit")]
|
||||||
public string CurrencyCredit { get; set; }
|
public string CurrencyCredit { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Бонус відправника у валюті платежу
|
/// Бонус відправника у валюті платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("sender_bonus")]
|
[JsonPropertyName("sender_bonus")]
|
||||||
public double SenderBonus { get; set; }
|
public double SenderBonus { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Бонус відправника у валюті платежу debit
|
/// Бонус відправника у валюті платежу debit
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("amount_bonus")]
|
[JsonPropertyName("amount_bonus")]
|
||||||
public double AmountBonus { get; set; }
|
public double AmountBonus { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Можливі значення: 5 - транзакція пройшла з 3DS (емітент і еквайєр підтримують технологію 3D-Secure), 6 - емітент картки платника не підтримує технологію 3D-Secure, 7 - операція пройшла без 3D-Secure
|
/// Можливі значення: 5 - транзакція пройшла з 3DS (емітент і еквайєр підтримують технологію 3D-Secure), 6 - емітент картки платника не підтримує технологію 3D-Secure, 7 - операція пройшла без 3D-Secure
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("mpi_eci")]
|
[JsonPropertyName("mpi_eci")]
|
||||||
public string MpiEci { get; set; }
|
public string MpiEci { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Можливі значення:
|
/// Можливі значення:
|
||||||
/// <c>true</c> - транзакція пройшла з 3DS перевіркою,
|
/// <c>true</c> - транзакція пройшла з 3DS перевіркою,
|
||||||
/// <c>false</c> - транзакція пройшла без 3DS перевірки
|
/// <c>false</c> - транзакція пройшла без 3DS перевірки
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("is_3ds")]
|
[JsonPropertyName("is_3ds")]
|
||||||
public bool Is3ds { get; set; }
|
public bool Is3ds { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("language")]
|
[JsonPropertyName("language")]
|
||||||
public string Language { get; set; }
|
public string Language { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Дата створення платежу
|
/// Дата створення платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("create_date")]
|
[JsonPropertyName("create_date")]
|
||||||
public long CreateDate { get; set; }
|
public long CreateDate { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Дата завершення/зміни платежу
|
/// Дата завершення/зміни платежу
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("end_date")]
|
[JsonPropertyName("end_date")]
|
||||||
public long EndDate { get; set; }
|
public long EndDate { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Id транзакції в системі LiqPay
|
/// Id транзакції в системі LiqPay
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("transaction_id")]
|
[JsonPropertyName("transaction_id")]
|
||||||
public long TransactionId { get; set; }
|
public long TransactionId { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
27
Server/Controllers/PaymentsController.cs
Normal file
27
Server/Controllers/PaymentsController.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Server.Services;
|
||||||
|
using SharedModels.DataTransferObjects;
|
||||||
|
|
||||||
|
[Route("api/payment")]
|
||||||
|
[ApiController]
|
||||||
|
public class PaymentController : ControllerBase
|
||||||
|
{
|
||||||
|
private readonly IPaymentsService _paymentsService;
|
||||||
|
public PaymentController(IPaymentsService paymentsService)
|
||||||
|
{
|
||||||
|
_paymentsService = paymentsService;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
public async Task<IActionResult> GetPaymentLink([FromQuery] PaymentDto payment)
|
||||||
|
{
|
||||||
|
var result = await _paymentsService.GetPaymentUrl(payment);
|
||||||
|
|
||||||
|
if (!result.isSucceed)
|
||||||
|
{
|
||||||
|
return result.actionResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Ok(result.url);
|
||||||
|
}
|
||||||
|
}
|
@ -149,6 +149,8 @@ services.AddScoped<VehicleEnrollmentSearchService>();
|
|||||||
services.AddScoped<IReportService, ReportService>();
|
services.AddScoped<IReportService, ReportService>();
|
||||||
services.AddScoped<IStatisticsService, StatisticsService>();
|
services.AddScoped<IStatisticsService, StatisticsService>();
|
||||||
|
|
||||||
|
builder.Services.AddScoped<IPaymentsService, PaymentsService>();
|
||||||
|
|
||||||
// Adding DB Context with PostgreSQL
|
// Adding DB Context with PostgreSQL
|
||||||
var connectionString = configuration.GetConnectionString("DefaultConnection");
|
var connectionString = configuration.GetConnectionString("DefaultConnection");
|
||||||
services.AddDbContext<ApplicationDbContext>(options =>
|
services.AddDbContext<ApplicationDbContext>(options =>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
@ -36,8 +36,9 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\LiqPayIntegration\LiqPayIntegration.csproj" />
|
||||||
<ProjectReference Include="..\SharedModels\SharedModels.csproj" />
|
<ProjectReference Include="..\SharedModels\SharedModels.csproj" />
|
||||||
<ProjectReference Include="..\Utils\Utils.csproj" />
|
<ProjectReference Include="..\Utils\Utils.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
12
Server/Services/IPaymentsService.cs
Normal file
12
Server/Services/IPaymentsService.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using LiqPayIntegration;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using SharedModels.DataTransferObjects;
|
||||||
|
using System.Dynamic;
|
||||||
|
|
||||||
|
namespace Server.Services;
|
||||||
|
|
||||||
|
public interface IPaymentsService
|
||||||
|
{
|
||||||
|
Task<(bool isSucceed, IActionResult? actionResult, IEnumerable<PaymentResponse> payments)> GetPayments(DateTime from, DateTime to);
|
||||||
|
Task<(bool isSucceed, IActionResult? actionResult, string url)> GetPaymentUrl(PaymentDto payment);
|
||||||
|
}
|
23
Server/Services/PaymentsService.cs
Normal file
23
Server/Services/PaymentsService.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
using LiqPayIntegration;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using SharedModels.DataTransferObjects;
|
||||||
|
|
||||||
|
namespace Server.Services;
|
||||||
|
|
||||||
|
public class PaymentsService : IPaymentsService
|
||||||
|
{
|
||||||
|
|
||||||
|
// LiqpayIntegration
|
||||||
|
LiqPay liqPay = new LiqPay("sandbox_i23432845039", "sandbox_gymL9PdryqdfAznNQbb7ynLvASDQ5SJCCNJvF2iV");
|
||||||
|
|
||||||
|
public async Task<(bool isSucceed, IActionResult? actionResult, IEnumerable<PaymentResponse> payments)> GetPayments(DateTime from, DateTime to)
|
||||||
|
{
|
||||||
|
return(true, null, (await liqPay.PaymentArchive(from, to)).AsEnumerable());
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<(bool isSucceed, IActionResult? actionResult, string url)> GetPaymentUrl(PaymentDto payment)
|
||||||
|
{
|
||||||
|
return (true, null, (await liqPay.GetPaymentUrl(payment.Amount, payment.Description, payment.OrderId)));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
14
SharedModels/DataTransferObjects/PaymentDto.cs
Normal file
14
SharedModels/DataTransferObjects/PaymentDto.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
|
namespace SharedModels.DataTransferObjects;
|
||||||
|
|
||||||
|
public class PaymentDto
|
||||||
|
{
|
||||||
|
[Required]
|
||||||
|
public double Amount { get; set; }
|
||||||
|
[Required]
|
||||||
|
public string Description { get; set; }
|
||||||
|
[Required]
|
||||||
|
[StringLength(maximumLength: 255, ErrorMessage = "Order Id is too long")]
|
||||||
|
public string OrderId { get; set; }
|
||||||
|
}
|
@ -1,8 +1,14 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{0DCB2130-10E7-4C98-AB94-5F8D68032B9F}"
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.5.33516.290
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Server", "Server\Server.csproj", "{0DCB2130-10E7-4C98-AB94-5F8D68032B9F}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedModels", "SharedModels\SharedModels.csproj", "{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharedModels", "SharedModels\SharedModels.csproj", "{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiqPayIntegration", "LiqPayIntegration\LiqPayIntegration.csproj", "{D1DE3296-E918-4702-997D-A10B755FF2CB}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Utils", "..\auto.bus_api\Utils\Utils.csproj", "{B1AC0E7C-E77C-4F2F-82A0-A2AB2D126B71}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@ -18,5 +24,19 @@ Global
|
|||||||
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Release|Any CPU.Build.0 = Release|Any CPU
|
{34E01155-5DA4-45DA-8F58-63AEFCC56B4B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{D1DE3296-E918-4702-997D-A10B755FF2CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{D1DE3296-E918-4702-997D-A10B755FF2CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{D1DE3296-E918-4702-997D-A10B755FF2CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{D1DE3296-E918-4702-997D-A10B755FF2CB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B1AC0E7C-E77C-4F2F-82A0-A2AB2D126B71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B1AC0E7C-E77C-4F2F-82A0-A2AB2D126B71}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B1AC0E7C-E77C-4F2F-82A0-A2AB2D126B71}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B1AC0E7C-E77C-4F2F-82A0-A2AB2D126B71}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {067793F9-205E-4946-A13B-5C70752D57A3}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
Loading…
Reference in New Issue
Block a user