-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCheckMoneyOrderPaymentProcessor.cs
More file actions
398 lines (348 loc) · 17.1 KB
/
CheckMoneyOrderPaymentProcessor.cs
File metadata and controls
398 lines (348 loc) · 17.1 KB
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
using Grand.Core;
using Grand.Domain.Orders;
using Grand.Domain.Payments;
using Grand.Core.Plugins;
using Grand.Services.Configuration;
using Grand.Services.Localization;
using Grand.Services.Orders;
using Grand.Services.Payments;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Grand.Framework.Menu;
using Grand.Services.Security;
using System.Linq;
namespace Grand.Plugin.Payments.CheckMoneyOrder
{
/// <summary>
/// CheckMoneyOrder payment processor
/// </summary>
public class CheckMoneyOrderPaymentProcessor : BasePlugin, IPaymentMethod, IAdminMenuPlugin
{
#region Fields
private readonly CheckMoneyOrderPaymentSettings _checkMoneyOrderPaymentSettings;
private readonly ISettingService _settingService;
private readonly IOrderTotalCalculationService _orderTotalCalculationService;
private readonly ILocalizationService _localizationService;
private readonly IWebHelper _webHelper;
private readonly ILanguageService _languageService;
private readonly IWorkContext _workContext;
private readonly IPermissionService _permissionService;
#endregion
#region Ctor
public CheckMoneyOrderPaymentProcessor(CheckMoneyOrderPaymentSettings checkMoneyOrderPaymentSettings,
ISettingService settingService, IOrderTotalCalculationService orderTotalCalculationService,
ILocalizationService localizationService, IWebHelper webHelper, ILanguageService languageService,
IWorkContext workContext, IPermissionService permissionService)
{
_checkMoneyOrderPaymentSettings = checkMoneyOrderPaymentSettings;
_settingService = settingService;
_orderTotalCalculationService = orderTotalCalculationService;
_localizationService = localizationService;
_webHelper = webHelper;
_languageService = languageService;
_workContext = workContext;
_permissionService = permissionService;
}
#endregion
#region Methods
/// <summary>
/// Gets a configuration page URL
/// </summary>
public override string GetConfigurationPageUrl()
{
return $"{_webHelper.GetStoreLocation()}Admin/PaymentCheckMoneyOrder/Configure";
}
/// <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 result = new ProcessPaymentResult();
result.NewPaymentStatus = PaymentStatus.Pending;
return await Task.FromResult(result);
}
/// <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
if (_checkMoneyOrderPaymentSettings.ShippableProductRequired && !cart.RequiresShipping())
return true;
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)
{
var result = await this.CalculateAdditionalFee(_orderTotalCalculationService, cart,
_checkMoneyOrderPaymentSettings.AdditionalFee, _checkMoneyOrderPaymentSettings.AdditionalFeePercentage);
return 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("order");
//it's not a redirection payment method. So we always return false
return await Task.FromResult(false);
}
/// <summary>
/// Gets a route for provider configuration
/// </summary>
/// <param name="actionName">Action name</param>
/// <param name="controllerName">Controller name</param>
/// <param name="routeValues">Route values</param>
public void GetConfigurationRoute(out string actionName, out string controllerName, out RouteValueDictionary routeValues)
{
actionName = "Configure";
controllerName = "PaymentCheckMoneyOrder";
routeValues = new RouteValueDictionary { { "Namespaces", "Grand.Plugin.Payments.CheckMoneyOrder.Controllers" }, { "area", null } };
}
/// <summary>
/// Gets a route for payment info
/// </summary>
/// <param name="actionName">Action name</param>
/// <param name="controllerName">Controller name</param>
/// <param name="routeValues">Route values</param>
public void GetPaymentInfoRoute(out string actionName, out string controllerName, out RouteValueDictionary routeValues)
{
actionName = "PaymentInfo";
controllerName = "PaymentCheckMoneyOrder";
routeValues = new RouteValueDictionary { { "Namespaces", "Grand.Plugin.Payments.CheckMoneyOrder.Controllers" }, { "area", null } };
}
public override async Task Install()
{
//settings
var settings = new CheckMoneyOrderPaymentSettings
{
DescriptionText = "<p>Mail Personal or Business Check, Cashier's Check or money order to:</p><p><br /><b>GRANDNODE</b> <br /><b>your address here,</b> <br /><b>New York, NY 10001 </b> <br /><b>USA</b></p><p>Notice that if you pay by Personal or Business Check, your order may be held for up to 10 days after we receive your check to allow enough time for the check to clear. If you want us to ship faster upon receipt of your payment, then we recommend your send a money order or Cashier's check.</p><p>P.S. You can edit this text from admin panel.</p>"
};
await _settingService.SaveSetting(settings);
//locales
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.DescriptionText", "Description");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.DescriptionText.Hint", "Enter info that will be shown to customers during checkout");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.PaymentMethodDescription", "Pay by check or money order");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.AdditionalFee", "Additional fee");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.AdditionalFee.Hint", "The additional fee.");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.AdditionalFeePercentage", "Additional fee. Use percentage");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.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.Payment.CheckMoneyOrder.ShippableProductRequired", "Shippable product required");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.ShippableProductRequired.Hint", "An option indicating whether shippable products are required in order to display this payment method during checkout.");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "GrandNode.Sitemap.Extensions", "Extensions");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder", "Check Money Order");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.Support", "Support");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.CheckMoneyOrder.Settings", "Settings");
await base.Install();
}
public override async Task Uninstall()
{
//settings
await _settingService.DeleteSetting<CheckMoneyOrderPaymentSettings>();
//locales
var en = _localizationService.GetAllResources(_workContext.WorkingLanguage.Id)
.Where(r => r.ResourceName.StartsWith(string.Format("Plugins.Payment.CheckMoneyOrder.{0}", PluginDescriptor.SystemName)));
foreach (var item in en)
{
await _localizationService.DeleteLocaleStringResource(item);
}
await base.Uninstall();
}
public async Task ManageSiteMap(SiteMapNode rootNode)
{
if (await _permissionService.Authorize(StandardPermissionProvider.ManagePaymentMethods))
{
var pluginNode = rootNode.ChildNodes.FirstOrDefault(x => x.SystemName == "extensions");
if (pluginNode == null)
{
rootNode.ChildNodes.Add(new SiteMapNode() {
SystemName = "extensions",
ResourceName = "GrandNode.Sitemap.Extensions",
Visible = true,
IconClass = "icon-paper-clip"
});
pluginNode = rootNode.ChildNodes.FirstOrDefault(x => x.SystemName == "extensions");
}
SiteMapNode Menu = new SiteMapNode();
Menu.ResourceName = "Plugins.Payment.CheckMoneyOrder";
Menu.Visible = true;
Menu.SystemName = "CheckMoneyOrder";
Menu.ChildNodes.Add(new SiteMapNode() {
ResourceName = "Plugins.Payment.CheckMoneyOrder.Settings",
Visible = true,
SystemName = "CheckMoneyOrder.Settings",
IconClass = "",
ControllerName = "PaymentCheckMoneyOrder",
ActionName = "Configure",
});
Menu.ChildNodes.Add(new SiteMapNode() {
ResourceName = "Plugins.Payment.CheckMoneyOrder.Support",
Visible = true,
SystemName = "CheckMoneyOrder.Support",
IconClass = "",
Url = "https://grandnode.com/boards/forum/59f6f028ba1646279c61a5e4/community-plugins-themes"
});
if (pluginNode != null)
pluginNode.ChildNodes.Add(Menu);
else
rootNode.ChildNodes.Add(Menu);
}
}
public async Task<IList<string>> ValidatePaymentForm(IFormCollection form)
{
var warnings = new List<string>();
return await Task.FromResult(warnings);
}
public async Task<ProcessPaymentRequest> GetPaymentInfo(IFormCollection form)
{
var paymentInfo = new ProcessPaymentRequest();
return await Task.FromResult(paymentInfo);
}
public void GetPublicViewComponent(out string viewComponentName)
{
viewComponentName = "PaymentCheckMoneyOrder";
}
#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);
}
public async Task<string> PaymentMethodDescription()
{
return await Task.FromResult(_localizationService.GetResource("Plugins.Payment.CheckMoneyOrder.PaymentMethodDescription"));
}
#endregion
}
}