C# Класс Nop.Plugin.Payments.PayPalDirect.PayPalDirectPaymentProcessor

PayPalDirect payment processor
Наследование: Nop.Core.Plugins.BasePlugin, IPaymentMethod
Показать файл Открыть проект

Открытые методы

Метод Описание
CanRePostProcessPayment ( Nop.Core.Domain.Orders.Order order ) : bool

Gets a value indicating whether customers can complete a payment after order is placed but not completed (for redirection payment methods)

CancelRecurringPayment ( Nop.Services.Payments.CancelRecurringPaymentRequest cancelPaymentRequest ) : Nop.Services.Payments.CancelRecurringPaymentResult

Cancels a recurring payment

Capture ( Nop.Services.Payments.CapturePaymentRequest capturePaymentRequest ) : Nop.Services.Payments.CapturePaymentResult

Captures payment

GetAdditionalHandlingFee ( IList cart ) : decimal

Gets additional handling fee

GetConfigurationRoute ( string &actionName, string &controllerName, RouteValueDictionary &routeValues ) : void

Gets a route for provider configuration

GetControllerType ( ) : Type
GetPaymentInfoRoute ( string &actionName, string &controllerName, RouteValueDictionary &routeValues ) : void

Gets a route for payment info

Install ( ) : void
PayPalDirectPaymentProcessor ( Nop.Plugin.Payments.PayPalDirect.PayPalDirectPaymentSettings paypalDirectPaymentSettings, ISettingService settingService, ITaxService taxService, IPriceCalculationService priceCalculationService, ICurrencyService currencyService, ICustomerService customerService, Nop.Core.Domain.Directory.CurrencySettings currencySettings, IWebHelper webHelper, IOrderTotalCalculationService orderTotalCalculationService, Nop.Core.Domain.StoreInformationSettings storeInformationSettings ) : System
PostProcessPayment ( Nop.Services.Payments.PostProcessPaymentRequest postProcessPaymentRequest ) : void

Post process payment (used by payment gateways that require redirecting to a third-party URL)

ProcessPayment ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest ) : Nop.Services.Payments.ProcessPaymentResult

Process a payment

ProcessRecurringPayment ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest ) : Nop.Services.Payments.ProcessPaymentResult

Process recurring payment

Refund ( Nop.Services.Payments.RefundPaymentRequest refundPaymentRequest ) : Nop.Services.Payments.RefundPaymentResult

Refunds a payment

Uninstall ( ) : void
VerifyIPN ( string formString, string>.Dictionary &values ) : bool

Verifies IPN

Void ( Nop.Services.Payments.VoidPaymentRequest voidPaymentRequest ) : Nop.Services.Payments.VoidPaymentResult

Voids a payment

Защищенные методы

Метод Описание
AuthorizeOrSale ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest, bool authorizeOnly ) : Nop.Services.Payments.ProcessPaymentResult
GetApiVersion ( ) : string
GetPaypalCountryCodeType ( Nop.Core.Domain.Directory.Country country ) : CountryCodeType

Get Paypal country code

GetPaypalCreditCardType ( string creditCardType ) : CreditCardTypeType

Get Paypal credit card type

Приватные методы

Метод Описание
GetPaypalUrl ( ) : string

Gets Paypal URL

Описание методов

AuthorizeOrSale() защищенный Метод

protected AuthorizeOrSale ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest, bool authorizeOnly ) : Nop.Services.Payments.ProcessPaymentResult
processPaymentRequest Nop.Services.Payments.ProcessPaymentRequest
authorizeOnly bool
Результат Nop.Services.Payments.ProcessPaymentResult

CanRePostProcessPayment() публичный Метод

Gets a value indicating whether customers can complete a payment after order is placed but not completed (for redirection payment methods)
public CanRePostProcessPayment ( Nop.Core.Domain.Orders.Order order ) : bool
order Nop.Core.Domain.Orders.Order Order
Результат bool

CancelRecurringPayment() публичный Метод

Cancels a recurring payment
public CancelRecurringPayment ( Nop.Services.Payments.CancelRecurringPaymentRequest cancelPaymentRequest ) : Nop.Services.Payments.CancelRecurringPaymentResult
cancelPaymentRequest Nop.Services.Payments.CancelRecurringPaymentRequest Request
Результат Nop.Services.Payments.CancelRecurringPaymentResult

Capture() публичный Метод

Captures payment
public Capture ( Nop.Services.Payments.CapturePaymentRequest capturePaymentRequest ) : Nop.Services.Payments.CapturePaymentResult
capturePaymentRequest Nop.Services.Payments.CapturePaymentRequest Capture payment request
Результат Nop.Services.Payments.CapturePaymentResult

GetAdditionalHandlingFee() публичный Метод

Gets additional handling fee
public GetAdditionalHandlingFee ( IList cart ) : decimal
cart IList Shoping cart
Результат decimal

GetApiVersion() защищенный Метод

protected GetApiVersion ( ) : string
Результат string

GetConfigurationRoute() публичный Метод

Gets a route for provider configuration
public GetConfigurationRoute ( string &actionName, string &controllerName, RouteValueDictionary &routeValues ) : void
actionName string Action name
controllerName string Controller name
routeValues RouteValueDictionary Route values
Результат void

GetControllerType() публичный Метод

public GetControllerType ( ) : Type
Результат System.Type

GetPaymentInfoRoute() публичный Метод

Gets a route for payment info
public GetPaymentInfoRoute ( string &actionName, string &controllerName, RouteValueDictionary &routeValues ) : void
actionName string Action name
controllerName string Controller name
routeValues RouteValueDictionary Route values
Результат void

GetPaypalCountryCodeType() защищенный Метод

Get Paypal country code
protected GetPaypalCountryCodeType ( Nop.Core.Domain.Directory.Country country ) : CountryCodeType
country Nop.Core.Domain.Directory.Country Country
Результат CountryCodeType

GetPaypalCreditCardType() защищенный Метод

Get Paypal credit card type
protected GetPaypalCreditCardType ( string creditCardType ) : CreditCardTypeType
creditCardType string Credit card type
Результат CreditCardTypeType

Install() публичный Метод

public Install ( ) : void
Результат void

PayPalDirectPaymentProcessor() публичный Метод

public PayPalDirectPaymentProcessor ( Nop.Plugin.Payments.PayPalDirect.PayPalDirectPaymentSettings paypalDirectPaymentSettings, ISettingService settingService, ITaxService taxService, IPriceCalculationService priceCalculationService, ICurrencyService currencyService, ICustomerService customerService, Nop.Core.Domain.Directory.CurrencySettings currencySettings, IWebHelper webHelper, IOrderTotalCalculationService orderTotalCalculationService, Nop.Core.Domain.StoreInformationSettings storeInformationSettings ) : System
paypalDirectPaymentSettings Nop.Plugin.Payments.PayPalDirect.PayPalDirectPaymentSettings
settingService ISettingService
taxService ITaxService
priceCalculationService IPriceCalculationService
currencyService ICurrencyService
customerService ICustomerService
currencySettings Nop.Core.Domain.Directory.CurrencySettings
webHelper IWebHelper
orderTotalCalculationService IOrderTotalCalculationService
storeInformationSettings Nop.Core.Domain.StoreInformationSettings
Результат System

PostProcessPayment() публичный Метод

Post process payment (used by payment gateways that require redirecting to a third-party URL)
public PostProcessPayment ( Nop.Services.Payments.PostProcessPaymentRequest postProcessPaymentRequest ) : void
postProcessPaymentRequest Nop.Services.Payments.PostProcessPaymentRequest Payment info required for an order processing
Результат void

ProcessPayment() публичный Метод

Process a payment
public ProcessPayment ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest ) : Nop.Services.Payments.ProcessPaymentResult
processPaymentRequest Nop.Services.Payments.ProcessPaymentRequest Payment info required for an order processing
Результат Nop.Services.Payments.ProcessPaymentResult

ProcessRecurringPayment() публичный Метод

Process recurring payment
public ProcessRecurringPayment ( Nop.Services.Payments.ProcessPaymentRequest processPaymentRequest ) : Nop.Services.Payments.ProcessPaymentResult
processPaymentRequest Nop.Services.Payments.ProcessPaymentRequest Payment info required for an order processing
Результат Nop.Services.Payments.ProcessPaymentResult

Refund() публичный Метод

Refunds a payment
public Refund ( Nop.Services.Payments.RefundPaymentRequest refundPaymentRequest ) : Nop.Services.Payments.RefundPaymentResult
refundPaymentRequest Nop.Services.Payments.RefundPaymentRequest Request
Результат Nop.Services.Payments.RefundPaymentResult

Uninstall() публичный Метод

public Uninstall ( ) : void
Результат void

VerifyIPN() публичный Метод

Verifies IPN
public VerifyIPN ( string formString, string>.Dictionary &values ) : bool
formString string Form string
values string>.Dictionary Values
Результат bool

Void() публичный Метод

Voids a payment
public Void ( Nop.Services.Payments.VoidPaymentRequest voidPaymentRequest ) : Nop.Services.Payments.VoidPaymentResult
voidPaymentRequest Nop.Services.Payments.VoidPaymentRequest Request
Результат Nop.Services.Payments.VoidPaymentResult