-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPayInStorePaymentProcessor.cs
More file actions
303 lines (264 loc) · 12.3 KB
/
PayInStorePaymentProcessor.cs
File metadata and controls
303 lines (264 loc) · 12.3 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
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 System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Grand.Plugin.Payments.PayInStore
{
/// <summary>
/// PayInStore payment processor
/// </summary>
public class PayInStorePaymentProcessor : BasePlugin, IPaymentMethod
{
#region Fields
private readonly PayInStorePaymentSettings _payInStorePaymentSettings;
private readonly ISettingService _settingService;
private readonly IOrderTotalCalculationService _orderTotalCalculationService;
private readonly ILocalizationService _localizationService;
private readonly IWebHelper _webHelper;
private readonly ILanguageService _languageService;
#endregion
#region Ctor
public PayInStorePaymentProcessor(PayInStorePaymentSettings payInStorePaymentSettings,
ISettingService settingService, IOrderTotalCalculationService orderTotalCalculationService,
ILocalizationService localizationService, IWebHelper webHelper, ILanguageService languageService)
{
_payInStorePaymentSettings = payInStorePaymentSettings;
_settingService = settingService;
_orderTotalCalculationService = orderTotalCalculationService;
_localizationService = localizationService;
_webHelper = webHelper;
_languageService = languageService;
}
#endregion
#region Methods
/// <summary>
/// Gets a configuration page URL
/// </summary>
public override string GetConfigurationPageUrl()
{
return $"{_webHelper.GetStoreLocation()}Admin/PaymentPayInStore/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
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,
_payInStorePaymentSettings.AdditionalFee, _payInStorePaymentSettings.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);
}
public override async Task Install()
{
var settings = new PayInStorePaymentSettings()
{
DescriptionText = "<p>Reserve items at your local store, and pay in store when you pick up your order.<br />Our store location: USA, New York,...</p><p>P.S. You can edit this text from admin panel.</p>"
};
await _settingService.SaveSetting(settings);
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.DescriptionText", "Description");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.DescriptionText.Hint", "Enter info that will be shown to customers during checkout");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.PaymentMethodDescription", "Pay In Store");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFee", "Additional fee");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFee.Hint", "The additional fee.");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFeePercentage", "Additional fee. Use percentage");
await this.AddOrUpdatePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFeePercentage.Hint", "Determines whether to apply a percentage additional fee to the order total. If not enabled, a fixed value is used.");
await base.Install();
}
public override async Task Uninstall()
{
//settings
await _settingService.DeleteSetting<PayInStorePaymentSettings>();
//locales
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFee");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFee.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFeePercentage");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.AdditionalFeePercentage.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.DescriptionText");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.DescriptionText.Hint");
await this.DeletePluginLocaleResource(_localizationService, _languageService, "Plugins.Payment.PayInStore.PaymentMethodDescription");
await base.Uninstall();
}
public async Task<IList<string>> ValidatePaymentForm(IFormCollection form)
{
return await Task.FromResult(new List<string>());
}
public async Task<ProcessPaymentRequest> GetPaymentInfo(IFormCollection form)
{
return await Task.FromResult(new ProcessPaymentRequest());
}
public void GetPublicViewComponent(out string viewComponentName)
{
viewComponentName = "PaymentPayInStore";
}
#endregion
#region Properies
/// <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.PayInStore.PaymentMethodDescription"));
}
#endregion
}
}