forked from grandnode/grandnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrainTreePaymentProcessor.cs
451 lines (394 loc) · 19.8 KB
/
BrainTreePaymentProcessor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
using Braintree;
using Grand.Core;
using Grand.Domain.Orders;
using Grand.Domain.Payments;
using Grand.Core.Plugins;
using Grand.Plugin.Payments.BrainTree.Models;
using Grand.Plugin.Payments.BrainTree.Validators;
using Grand.Services.Cms;
using Grand.Services.Configuration;
using Grand.Services.Customers;
using Grand.Services.Localization;
using Grand.Services.Orders;
using Grand.Services.Payments;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Primitives;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Environment = Braintree.Environment;
namespace Grand.Plugin.Payments.BrainTree
{
public class BrainTreePaymentProcessor : BasePlugin, IPaymentMethod, IWidgetPlugin
{
#region Fields
private readonly ICustomerService _customerService;
private readonly ISettingService _settingService;
private readonly IOrderTotalCalculationService _orderTotalCalculationService;
private readonly IPaymentService _paymentService;
private readonly BrainTreePaymentSettings _brainTreePaymentSettings;
private readonly ILocalizationService _localizationService;
private readonly IWebHelper _webHelper;
private readonly ILanguageService _languageService;
#endregion
#region Ctor
public BrainTreePaymentProcessor(ICustomerService customerService,
ISettingService settingService,
IOrderTotalCalculationService orderTotalCalculationService,
IPaymentService paymentService,
BrainTreePaymentSettings brainTreePaymentSettings,
ILocalizationService localizationService,
IWebHelper webHelper,
ILanguageService languageService)
{
_customerService = customerService;
_settingService = settingService;
_orderTotalCalculationService = orderTotalCalculationService;
_paymentService = paymentService;
_brainTreePaymentSettings = brainTreePaymentSettings;
_localizationService = localizationService;
_webHelper = webHelper;
_languageService = languageService;
}
#endregion
#region Methods
/// <summary>
/// Process a payment
/// </summary>
/// <param name="processPaymentRequest">Payment info required for an order processing</param>
/// <returns>Process payment result</returns>
public async Task<ProcessPaymentResult> ProcessPayment(ProcessPaymentRequest processPaymentRequest)
{
var processPaymentResult = new ProcessPaymentResult();
//get customer
var customer = await _customerService.GetCustomerById(processPaymentRequest.CustomerId);
//get settings
var useSandBox = _brainTreePaymentSettings.UseSandBox;
var merchantId = _brainTreePaymentSettings.MerchantId;
var publicKey = _brainTreePaymentSettings.PublicKey;
var privateKey = _brainTreePaymentSettings.PrivateKey;
//new gateway
var gateway = new BraintreeGateway {
Environment = useSandBox ? Environment.SANDBOX : Environment.PRODUCTION,
MerchantId = merchantId,
PublicKey = publicKey,
PrivateKey = privateKey
};
//new transaction request
var transactionRequest = new TransactionRequest {
Amount = processPaymentRequest.OrderTotal,
};
if (_brainTreePaymentSettings.Use3DS)
{
transactionRequest.PaymentMethodNonce = processPaymentRequest.CustomValues["CardNonce"].ToString();
}
else
{
//transaction credit card request
var transactionCreditCardRequest = new TransactionCreditCardRequest {
Number = processPaymentRequest.CreditCardNumber,
CVV = processPaymentRequest.CreditCardCvv2,
ExpirationDate = processPaymentRequest.CreditCardExpireMonth + "/" + processPaymentRequest.CreditCardExpireYear
};
transactionRequest.CreditCard = transactionCreditCardRequest;
}
//address request
var addressRequest = new AddressRequest {
FirstName = customer.BillingAddress.FirstName,
LastName = customer.BillingAddress.LastName,
StreetAddress = customer.BillingAddress.Address1,
PostalCode = customer.BillingAddress.ZipPostalCode
};
transactionRequest.BillingAddress = addressRequest;
//transaction options request
var transactionOptionsRequest = new TransactionOptionsRequest {
SubmitForSettlement = true
};
transactionRequest.Options = transactionOptionsRequest;
//sending a request
var result = gateway.Transaction.Sale(transactionRequest);
//result
if (result.IsSuccess())
{
processPaymentResult.NewPaymentStatus = PaymentStatus.Paid;
}
else
{
processPaymentResult.AddError("Error processing payment." + result.Message);
}
return processPaymentResult;
}
/// <summary>
/// Post process payment (used by payment gateways that require redirecting to a third-party URL)
/// </summary>
/// <param name="postProcessPaymentRequest">Payment info required for an order processing</param>
public Task PostProcessPayment(PostProcessPaymentRequest postProcessPaymentRequest)
{
//nothing
return Task.CompletedTask;
}
/// <summary>
/// Returns a value indicating whether payment method should be hidden during checkout
/// </summary>
/// <param name="cart">Shoping cart</param>
/// <returns>true - hide; false - display.</returns>
public async Task<bool> HidePaymentMethod(IList<ShoppingCartItem> cart)
{
//you can put any logic here
//for example, hide this payment method if all products in the cart are downloadable
//or hide this payment method if current customer is from certain country
//return false;
return await Task.FromResult(false);
}
/// <summary>
/// Gets additional handling fee
/// </summary>
/// <param name="cart">Shoping cart</param>
/// <returns>Additional handling fee</returns>
public async Task<decimal> GetAdditionalHandlingFee(IList<ShoppingCartItem> cart)
{
if (_brainTreePaymentSettings.AdditionalFee <= 0)
return _brainTreePaymentSettings.AdditionalFee;
decimal result;
if (_brainTreePaymentSettings.AdditionalFeePercentage)
{
//percentage
var subtotal = await _orderTotalCalculationService.GetShoppingCartSubTotal(cart, true);
result = (decimal)((((float)subtotal.subTotalWithDiscount) * ((float)_brainTreePaymentSettings.AdditionalFee)) / 100f);
}
else
{
//fixed value
result = _brainTreePaymentSettings.AdditionalFee;
}
//return result;
return await Task.FromResult(result);
}
/// <summary>
/// Captures payment
/// </summary>
/// <param name="capturePaymentRequest">Capture payment request</param>
/// <returns>Capture payment result</returns>
public async Task<CapturePaymentResult> Capture(CapturePaymentRequest capturePaymentRequest)
{
var result = new CapturePaymentResult();
result.AddError("Capture method not supported");
return await Task.FromResult(result);
}
/// <summary>
/// Refunds a payment
/// </summary>
/// <param name="refundPaymentRequest">Request</param>
/// <returns>Result</returns>
public async Task<RefundPaymentResult> Refund(RefundPaymentRequest refundPaymentRequest)
{
var result = new RefundPaymentResult();
result.AddError("Refund method not supported");
return await Task.FromResult(result);
}
/// <summary>
/// Voids a payment
/// </summary>
/// <param name="voidPaymentRequest">Request</param>
/// <returns>Result</returns>
public async Task<VoidPaymentResult> Void(VoidPaymentRequest voidPaymentRequest)
{
var result = new VoidPaymentResult();
result.AddError("Void method not supported");
return await Task.FromResult(result);
}
/// <summary>
/// Process recurring payment
/// </summary>
/// <param name="processPaymentRequest">Payment info required for an order processing</param>
/// <returns>Process payment result</returns>
public async Task<ProcessPaymentResult> ProcessRecurringPayment(ProcessPaymentRequest processPaymentRequest)
{
var result = new ProcessPaymentResult();
result.AddError("Recurring payment not supported");
return await Task.FromResult(result);
}
/// <summary>
/// Cancels a recurring payment
/// </summary>
/// <param name="cancelPaymentRequest">Request</param>
/// <returns>Result</returns>
public async Task<CancelRecurringPaymentResult> CancelRecurringPayment(CancelRecurringPaymentRequest cancelPaymentRequest)
{
var result = new CancelRecurringPaymentResult();
result.AddError("Recurring payment not supported");
return await Task.FromResult(result);
}
/// <summary>
/// Gets a value indicating whether customers can complete a payment after order is placed but not completed (for redirection payment methods)
/// </summary>
/// <param name="order">Order</param>
/// <returns>Result</returns>
public async Task<bool> CanRePostProcessPayment(Order order)
{
if (order == null)
throw new ArgumentNullException(nameof(order));
//it's not a redirection payment method. So we always return false
return await Task.FromResult(false);
}
public override string GetConfigurationPageUrl()
{
return $"{_webHelper.GetStoreLocation()}Admin/PaymentBrainTree/Configure";
}
public async Task<IList<string>> ValidatePaymentForm(IFormCollection form)
{
var warnings = new List<string>();
//validate
var validator = new PaymentInfoValidator(_brainTreePaymentSettings, _localizationService);
var model = new PaymentInfoModel {
CardholderName = form["CardholderName"],
CardNumber = form["CardNumber"],
CardCode = form["CardCode"],
ExpireMonth = form["ExpireMonth"],
ExpireYear = form["ExpireYear"],
CardNonce = form["CardNonce"]
};
var validationResult = validator.Validate(model);
if (!validationResult.IsValid)
foreach (var error in validationResult.Errors)
{
warnings.Add(error.ErrorMessage);
}
return await Task.FromResult(warnings);
}
public async Task<ProcessPaymentRequest> GetPaymentInfo(IFormCollection form)
{
var paymentInfo = _brainTreePaymentSettings.Use3DS ? new ProcessPaymentRequest() : new ProcessPaymentRequest {
CreditCardName = form["CardholderName"],
CreditCardNumber = form["CardNumber"],
CreditCardExpireMonth = int.Parse(form["ExpireMonth"]),
CreditCardExpireYear = int.Parse(form["ExpireYear"]),
CreditCardCvv2 = form["CardCode"]
};
if (form.TryGetValue("CardNonce", out var cardNonce) && !StringValues.IsNullOrEmpty(cardNonce))
paymentInfo.CustomValues.Add("CardNonce", cardNonce.ToString());
return await Task.FromResult(paymentInfo);
}
public void GetPublicViewComponent(out string viewComponentName)
{
viewComponentName = "PaymentBrainTree";
}
public override async Task Install()
{
//settings
var settings = new BrainTreePaymentSettings {
UseSandBox = true,
MerchantId = "",
PrivateKey = "",
PublicKey = ""
};
await _settingService.SaveSetting(settings);
//locales
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.Use3DS", "Use the 3D secure");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.Use3DS.Hint", "Check to enable the 3D secure integration");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.UseSandbox", "Use Sandbox");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.UseSandbox.Hint", "Check to enable Sandbox (testing environment).");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.MerchantId", "Merchant ID");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.MerchantId.Hint", "Enter Merchant ID");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PublicKey", "Public Key");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PublicKey.Hint", "Enter Public key");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PrivateKey", "Private Key");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PrivateKey.Hint", "Enter Private key");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFee", "Additional fee");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFee.Hint", "Enter additional fee to charge your customers.");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFeePercentage", "Additional fee. Use percentage");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFeePercentage.Hint", "Determines whether to apply a percentage additional fee to the order total. If not enabled, a fixed value is used.");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.PaymentMethodDescription", "Pay by credit / debit card");
await base.Install();
}
public override async Task Uninstall()
{
//settings
await _settingService.DeleteSetting<BrainTreePaymentSettings>();
//locales
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.UseSandbox");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.UseSandbox.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.MerchantId");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.MerchantId.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PublicKey");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PublicKey.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PrivateKey");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.PrivateKey.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFee");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFee.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFeePercentage");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.Fields.AdditionalFeePercentage.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payments.BrainTree.PaymentMethodDescription");
await base.Uninstall();
}
#endregion
#region Properties
/// <summary>
/// Gets a value indicating whether capture is supported
/// </summary>
public async Task<bool> SupportCapture()
{
return await Task.FromResult(false);
}
/// <summary>
/// Gets a value indicating whether partial refund is supported
/// </summary>
public async Task<bool> SupportPartiallyRefund()
{
return await Task.FromResult(false);
}
/// <summary>
/// Gets a value indicating whether refund is supported
/// </summary>
public async Task<bool> SupportRefund()
{
return await Task.FromResult(false);
}
/// <summary>
/// Gets a value indicating whether void is supported
/// </summary>
public async Task<bool> SupportVoid()
{
return await Task.FromResult(false);
}
/// <summary>
/// Gets a recurring payment type of payment method
/// </summary>
public RecurringPaymentType RecurringPaymentType {
get {
return RecurringPaymentType.NotSupported;
}
}
/// <summary>
/// Gets a payment method type
/// </summary>
public PaymentMethodType PaymentMethodType {
get {
return PaymentMethodType.Standard;
}
}
/// <summary>
/// Gets a value indicating whether we should display a payment information page for this plugin
/// </summary>
public async Task<bool> SkipPaymentInfo()
{
return await Task.FromResult(false);
}
/// <summary>
/// Gets a payment method description that will be displayed on checkout pages in the public store
/// </summary>
public async Task<string> PaymentMethodDescription()
{
return await Task.FromResult(_localizationService.GetResource("Plugins.Payments.BrainTree.PaymentMethodDescription"));
}
public IList<string> GetWidgetZones()
{
return new string[] { "opc_content_before", "checkout_payment_info_top" };
}
public void GetPublicViewComponent(string widgetZone, out string viewComponentName)
{
viewComponentName = "PaymentBrainTreeScripts";
}
#endregion
}
}