#include <paymentechprocessor.h>
Public Types | |
enum | CCTransaction { Authorize, Reverse, Capture, Charge, Credit, Void } |
enum | FraudCheck { Match, NoMatch, NotAvail, Address, PostalCode, Name, NotProcessed, Invalid, ServiceUnavailable, IssuerNotCertified, Suspicious, Unsupported } |
Public Member Functions | |
PaymentechProcessor () | |
virtual int | authorize (const int pccardid, const QString &pcvv, const double pamount, double ptax, bool ptaxexempt, double pfreight, double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, QString preftype, int &prefid) |
Processes pre-authorization transactions. More... | |
virtual Q_INVOKABLE int | canProcessCCTrans (int pCardId, int pCurrId) |
Checks if all accounting related setup and mapping is valid for a Credit Card and Currency. More... | |
virtual int | charge (const int pccardid, const QString &pcvv, const double pamount, const double ptax, const bool ptaxexempt, const double pfreight, const double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, QString preftype, int &prefid) |
Processes charge transactions. More... | |
virtual int | chargePreauthorized (const QString &pcvv, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid) |
Processes 'capture' transactions, or charges against a prior preauthorization. More... | |
virtual int | credit (const int pccardid, const QString &pcvv, const double pamount, const double ptax, const bool ptaxexempt, const double pfreight, const double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, QString preftype, int &prefid) |
Processes credit transactions. More... | |
virtual Q_INVOKABLE int | defaultPort (bool=false) |
Return the default port expected by the subclass. More... | |
virtual Q_INVOKABLE QString | defaultServer () |
Return the default server expected by the subclass. More... | |
virtual Q_INVOKABLE bool | handlesChecks () |
Returns whether the subclass handles checks. More... | |
virtual Q_INVOKABLE bool | isLive () |
Returns whether credit card processing is configured in live mode. More... | |
virtual Q_INVOKABLE bool | isTest () |
Returns whether credit card processing is configured in test mode. More... | |
virtual Q_INVOKABLE void | reset () |
Reset error handling internal settings so previous transactions don't interfere with new transactions. More... | |
virtual int | reversePreauthorized (const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, QString preftype, int prefid) |
Reverse a preauthorization. More... | |
virtual Q_INVOKABLE int | testConfiguration () |
Test whether common credit card processing configuration options are consistent. More... | |
virtual int | voidPrevious (int &) |
Processes void transactions. More... | |
Static Public Member Functions | |
static Q_INVOKABLE ParameterList | authorize (const ParameterList &) |
Processes pre-authorization transactions. More... | |
static Q_INVOKABLE bool | certificateIsValid (const QSslCertificate *cert) |
static Q_INVOKABLE ParameterList | charge (const ParameterList &) |
Processes charge transactions. More... | |
static Q_INVOKABLE ParameterList | chargePreauthorized (const ParameterList &) |
Captures preauthorized transactions. More... | |
static Q_INVOKABLE ParameterList | credit (const ParameterList &) |
Processes credit transactions. More... | |
static Q_INVOKABLE QString | errorMsg () |
Returns the most recent error message set by CreditCardProcessor or one of its subclasses. More... | |
static Q_INVOKABLE QString | errorMsg (const int) |
Returns the error message associated with the given pcode. More... | |
static Q_INVOKABLE CreditCardProcessor * | getProcessor (const QString=QString()) |
Get a new instance of a specific CreditCardProcessor subclass. More... | |
static Q_INVOKABLE int | printReceipt (const int) |
Print the CCReceipt report for a credit card transaction. More... | |
static Q_INVOKABLE QString | typeToCode (CCTransaction ptranstype) |
static Q_INVOKABLE ParameterList | voidPrevious (const ParameterList &) |
Processes void transactions. More... | |
Protected Slots | |
void | sslErrors (const QList< QSslError > &errors) |
Protected Member Functions | |
virtual FraudCheckResult * | avsCodeLookup (QChar pcode) |
virtual int | buildCommon (QString &pordernum, const int pccardid, const QString &pcvv, const double pamount, const int pcurrid, QString &prequest, QString pordertype, const QString &pAuthcode=QString::null, const QString &pRespdate=QString::null) |
virtual QString | buildURL (const QString, const QString, const bool) |
Construct a valid URL from the information in the configuration. More... | |
virtual int | checkCreditCard (const int pccid, const QString &pcvv, QString &pccard_x) |
Check if the given credit card is consistent and active. More... | |
virtual int | checkCreditCardProcessor () |
virtual FraudCheckResult * | cvvCodeLookup (QChar pcode) |
virtual int | doAuthorize (const int, const QString &pcvv, double &, const double, const bool, const double, const double, const int, QString &, QString &, int &, ParameterList &) |
Placeholder for subclasses to override. More... | |
virtual int | doCharge (const int pccardid, const QString &pcvv, const double pamount, const double ptax, const bool ptaxexempt, const double pfreight, const double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
This function actually does an Authorization then a Charge Preauth. Changes don't occurr real-time so we do the preauth real-time and if that succeeds just put the record in the correct state to be charged later. If the processor can't do the charge then the transaction must be undone. More... | |
virtual int | doChargePreauthorized (const int pccardid, const QString &pcvv, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
Updated a previously created auth record as a charge with approved string "SUBMITTED" and a separate process will do the actuall processing of the charge updating the record appropriately. If the later processing fails then the appropriate step must be taken to undo any record money. More... | |
virtual int | doCredit (const int pccardid, const QString &pcvv, const double pamount, const double ptax, const bool ptaxexempt, const double pfreight, const double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
Create a credit record that will be processed later by a processor. If the processing fails then the record needs to undo any transactions. More... | |
virtual int | doReversePreauthorized (const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int pccpayid, ParameterList &pparams) |
Placeholder for subclasses to override. More... | |
virtual int | doTestConfiguration () |
Placeholder for subclasses to override. More... | |
virtual int | doVoidPrevious (const int pccardid, const QString &pcvv, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, QString &papproval, int &pccpayid, ParameterList &pparams) |
Placeholder for subclasses to override. More... | |
virtual int | fraudChecks () |
Handle fraud checking as determined by the system configuration. More... | |
virtual int | handleResponse (const QString &, const int, const QString &, const double, const int, QString &, QString &, int &, ParameterList &) |
virtual bool | handlesCreditCards () |
Returns whether the subclass handles credit cards. More... | |
virtual int | sendViaHTTP (const QString &, QString &) |
Send an HTTP request to the configured credit card service and wait for its response. More... | |
virtual int | updateCCPay (int &, ParameterList &) |
Insert into or update the ccpay table based on parameters extracted from the credit card processing service' response to a transaction request. More... | |
virtual bool | waitForHTTP () |
Wait for the HTTP request sent by _manager to finish. Added for Qt5. More... | |
Static Protected Member Functions | |
static double | currToCurr (const int, const int, const double, int *=0) |
Convert between two currencies. More... | |
Protected Attributes | |
QList< FraudCheckResult * > | _avsCodes |
QString | _company |
QList< FraudCheckResult * > | _cvvCodes |
int | _defaultLivePort |
QString | _defaultLiveServer |
int | _defaultTestPort |
QString | _defaultTestServer |
QList< QPair< QString, QString > > | _extraHeaders |
QHttp * | _http |
bool | _ignoreSslErrors |
bool | _passedAvs |
bool | _passedCvv |
QString | _pemfile |
QString | _plogin |
QString | _ppassword |
QString | _pport |
QString | _pserver |
Static Protected Attributes | |
static QString | _errorMsg |
static QHash< int, QString > | _msgHash |
|
inherited |
|
inherited |
PaymentechProcessor::PaymentechProcessor | ( | ) |
|
virtualinherited |
Processes pre-authorization transactions.
This method performs application-level error checking and all of the database work required to handle a pre-authorization transaction. It calls doAuthorize to handle the direct communication with the service.
[in] | pccardid | The internal id of the credit card to preauthorize |
[in] | pcvv | The CVV/CCV code of the credit card to preauthorize |
[in] | pamount | The total amount to preauthorize. If the credit card processor does not preauthorize the full amount requested, the database will store the actual amount that was authorized If this occurs, the application will display an error if the amount authorized is 0 or a warning if the amount authorized is greater than 0. |
[in] | ptax | The subportion of the total which is tax |
[in] | ptaxexempt | Whether or not this transaction is tax exempt |
[in] | pfreight | The subportion of the total which is freight |
[in] | pduty | The subportion of the total which is customs duty |
[in] | pcurrid | The currency of the amount to preauthorize |
[in,out] | pneworder | The order number associated with this preauthorization |
[out] | preforder | The reference number associated with this preauthorization (may be required to 'capture' the preauthorization) |
[out] | pccpayid | The ccpay_id of the record created by this transaction |
[in] | preftype | Either cohead or cashrcpt or blank |
[in,out] | prefid | The cashrcpt_id or cohead_id associated with this transaction |
|
staticinherited |
Processes pre-authorization transactions.
This version of authorize is intended for use by scripts. Instead of passing all of the arguments in order, this method allows creating a QtScript object and setting properties on this object by name. Then the script can pass this object to authorize(const int pccardid, const int pcvv, const double pamount, double ptax, bool ptaxexempt, double pfreight, double pduty, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, QString preftype, int &prefid):
pinput | The parameter list to unpack and use to call authorize |
|
protectedvirtualinherited |
|
protectedvirtual |
|
protectedvirtualinherited |
Construct a valid URL from the information in the configuration.
Handle the case where someone leaves off a piece of the URL when entering the basic configuration. Note that a lot of people are used to typing in web browsers, which fill in some parts for them.
If the user did not enter values for the server or the port on the configuration, use the defaults provided by the service' subclass.
pserver | Use this server, or the defaultServer if blank |
pport | Use this port, or the defaultPort if blank |
pinclport | Flag whether the port should be part of the constructed URL or not |
|
virtualinherited |
Checks if all accounting related setup and mapping is valid for a Credit Card and Currency.
Calls the database stored procedure, canProcessPaymentGatewayTransaction() to check if setup is valid.
|
staticinherited |
|
virtualinherited |
Processes charge transactions.
This method performs application-level error checking and all of the database work required to handle a credit card charge transaction. It calls doCharge to handle the direct communication with the service.
[in] | pccardid | The internal id of the credit card to charge |
[in] | pcvv | The CVV/CCV code of the credit card to charge |
[in] | pamount | The total amount to charge |
[in] | ptax | The subportion of the total which is tax |
[in] | ptaxexempt | Whether or not this transaction is tax exempt |
[in] | pfreight | The subportion of the total which is freight |
[in] | pduty | The subportion of the total which is customs duty |
[in] | pcurrid | The currency of the amount to charge |
[in,out] | pneworder | The order number associated with this charge |
[out] | preforder | The reference number associated with this charge |
[out] | pccpayid | The ccpay_id of the record created by this transaction |
[in] | preftype | Either cohead or cashrcpt or blank |
[in,out] | prefid | The cashrcpt_id or cohead_id associated with this transaction |
|
staticinherited |
Processes charge transactions.
This version of charge is intended for use by scripts. Instead of passing all of the arguments in order, this method allows creating a QtScript object and setting properties on this object by name. Then the script can pass this object to charge.
pinput | The parameter list to unpack and use to call charge |
|
staticinherited |
Captures preauthorized transactions.
This version of chargePreauthorized is intended for use by scripts. Instead of passing all of the arguments in order, this method allows creating a QtScript object and setting properties on this object by name. Then the script can pass this object to chargePreauthorized.
pinput | The parameter list to unpack and use to call chargePreauthorized |
|
virtualinherited |
Processes 'capture' transactions, or charges against a prior preauthorization.
This method performs application-level error checking and all of the database work required to 'capture' or complete the charge against a prior preauthorization. It calls doChargePreauthorized to handle the direct communication with the service.
[in] | pcvv | The CVV/CCV code of the credit card to charge |
[in] | pamount | The total amount to charge |
[in] | pcurrid | The currency of the amount to charge |
[in,out] | pneworder | The order number associated with this charge |
[in,out] | preforder | The reference number (preforder) generated by the preauthorization transaction |
[in,out] | pccpayid | When calling the method, pccpayid should be the ccpay_id of the preauthorization record. On return, this is the ccpay_id of the charge record, which may be the same as the preauthorization record. |
|
protectedvirtualinherited |
Check if the given credit card is consistent and active.
This consistency check is used in a number of places before executing a credit card transaction. It confirms that the given card is marked as active in the system and has not expired. If the card has expired based on the expiration month and year, then it is marked as expired in the database. It also makes sure that the CVV has been entered if the system is configured to require it.
pccid | The ccard_id of the credit card to check | |
pcvv | The CVV from the card holder, -1 if not known, -2 if the caller knows it is not required or available (such as for void transactions). | |
[out] | pccard_x | The credit card number, with most of the digits replaced with X . Used for reporting errors. |
|
inlineprotectedvirtualinherited |
|
virtualinherited |
Processes credit transactions.
This method performs application-level error checking and all of the database work required to credit a prior charge. It calls doCredit to handle the direct communication with the service.
[in] | pccardid | The internal id of the credit card to credit |
[in] | pcvv | The CVV/CCV code of the credit card to credit |
[in] | pamount | The total amount to credit |
[in] | ptax | The subportion of the total which is tax |
[in] | ptaxexempt | Whether or not this transaction is tax exempt |
[in] | pfreight | The subportion of the total which is freight |
[in] | pduty | The subportion of the total which is customs duty |
[in] | pcurrid | The currency of the amount to credit |
[in,out] | pneworder | The order number associated with this credit |
[in,out] | preforder | The reference number (preforder) generated by the charge transaction |
[in,out] | pccpayid | When calling the method, pccpayid should be the ccpay_id of the original charge record. On return, this is the ccpay_id of the credit record. |
[in] | preftype | Either cohead or cashrcpt or blank |
[in,out] | prefid | The cashrcpt_id or cohead_id associated with this transaction |
|
staticinherited |
Processes credit transactions.
This version of credit is intended for use by scripts. Instead of passing all of the arguments in order, this method allows creating a QtScript object and setting properties on this object by name. Then the script can pass this object to credit.
pinput | The parameter list to unpack and use to call credit |
|
staticprotectedinherited |
Convert between two currencies.
This is slightly different than the version in the CurrDisplay widget because credit card processing has special error reporting needs.
pfrom | The source currency | |
pto | The destination currency | |
pamount | The value of the transaction in the source currency | |
[out] | perror | The CreditCardProcessor error code for a failed conversion |
|
protectedvirtualinherited |
|
virtualinherited |
Return the default port expected by the subclass.
This can differ depending on whether running in live or test mode. It is the subclass' responsibility to set both default ports.
|
virtualinherited |
Return the default server expected by the subclass.
This can differ depending on whether running in live or test mode. It is the subclass' responsibility to set both default servers.
|
protectedvirtual |
|
protectedvirtual |
This function actually does an Authorization then a Charge Preauth. Changes don't occurr real-time so we do the preauth real-time and if that succeeds just put the record in the correct state to be charged later. If the processor can't do the charge then the transaction must be undone.
Reimplemented from CreditCardProcessor.
|
protectedvirtual |
Updated a previously created auth record as a charge with approved string "SUBMITTED" and a separate process will do the actuall processing of the charge updating the record appropriately. If the later processing fails then the appropriate step must be taken to undo any record money.
Reimplemented from CreditCardProcessor.
|
protectedvirtual |
Create a credit record that will be processed later by a processor. If the processing fails then the record needs to undo any transactions.
Reimplemented from CreditCardProcessor.
|
protectedvirtualinherited |
Placeholder for subclasses to override.
|
protectedvirtual |
Placeholder for subclasses to override.
Reimplemented from CreditCardProcessor.
|
protectedvirtual |
Placeholder for subclasses to override.
Reimplemented from CreditCardProcessor.
|
staticinherited |
Returns the most recent error message set by CreditCardProcessor or one of its subclasses.
|
staticinherited |
Returns the error message associated with the given pcode.
|
protectedvirtualinherited |
Handle fraud checking as determined by the system configuration.
|
staticinherited |
Get a new instance of a specific CreditCardProcessor subclass.
This method is used to retrieve a CreditCardProcessor for actual use by the application, rather than calling CreditCardProcessor::CreditCardProcessor.
getProcessor retrieves the right subclass for the current configuration.
pcompany | This causes the method to instantiate the subclass for the named service, rather than the configured service. pcompany should be an empty string except when checking for errors in configCC |
|
protectedvirtual |
|
virtualinherited |
Returns whether the subclass handles checks.
|
protectedvirtual |
Returns whether the subclass handles credit cards.
Reimplemented from CreditCardProcessor.
|
virtualinherited |
Returns whether credit card processing is configured in live mode.
|
virtualinherited |
Returns whether credit card processing is configured in test mode.
|
staticinherited |
Print the CCReceipt report for a credit card transaction.
pccpayid | The internal id of the transaction for which to print the receipt |
|
virtualinherited |
Reset error handling internal settings so previous transactions don't interfere with new transactions.
|
virtualinherited |
Reverse a preauthorization.
This method performs application-level error checking and all of the database work required to reverse a prior preauthorization. This makes available to the card holder the funds that have been reserved by that preauthorization.
pamount | The amount to be reversed, not necessarily the same as the amount originally authorized. |
pcurrid | The currency of the amount. |
pneworder | The order number associated with the preauthorization |
preforder | The reference number (preforder) generated by the preauthorization transaction |
pccpayid | The internal id of the preauthorization transaction |
preftype | Either cohead or cashrcpt or blank |
prefid | The cashrcpt_id or cohead_id associated with the preauthorization transaction |
|
protectedvirtualinherited |
Send an HTTP request to the configured credit card service and wait for its response.
This method is intended to be called by subclasses of CreditCardProcessor. It sends a message to the service using HTTP or HTTPS, as set by the configuration, and waits for a response. If necessary it applies a local certificate for bidirectional encryption.
It is the caller's responsibility to format an appropriate message and decode the response.
[in] | prequest | The string to send via HTTP |
[out] | presponse | The string returned by the service |
|
protectedslotinherited |
|
virtualinherited |
Test whether common credit card processing configuration options are consistent.
Calls toTestConfiguration to check if service-specific options are set.
Reimplemented in ExternalCCProcessor.
|
staticinherited |
|
protectedvirtualinherited |
Insert into or update the ccpay table based on parameters extracted from the credit card processing service' response to a transaction request.
|
staticinherited |
Processes void transactions.
This version of voidPrevious is intended for use by scripts. Instead of passing all of the arguments in order, this method allows creating a QtScript object and setting properties on this object by name. Then the script can pass this object to voidPrevious.
pinput | The parameter list to unpack and use to call voidPrevious |
|
virtualinherited |
Processes void transactions.
This method performs application-level error checking and all of the database work required to void a prior transaction. It calls doVoid to handle the direct communication with the service.
pccpayid | This should be the ccpay_id of the original transaction record. |
|
protectedvirtualinherited |
Wait for the HTTP request sent by _manager to finish. Added for Qt5.
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
staticprotectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
staticprotectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
Generated on Fri Apr 9 2021 | xTuple ERP Programmer Reference, Version 5.1.0 | 1.8.17 |