|
| CyberSourceProcessor () |
|
virtual | ~CyberSourceProcessor () |
|
virtual | ~CreditCardProcessor () |
|
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 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...
|
|
|
virtual int | buildCommon (const int pccardid, const QString &pcvv, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, const CCTransaction ptranstype) |
|
virtual int | doAuthorize (const int pccardid, const QString &pcvv, 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) |
| 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) |
| Placeholder for subclasses to override. More...
|
|
virtual int | doChargePreauthorized (const int pccardid, const QString &pcvv, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
| Placeholder for subclasses to override. 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) |
| Placeholder for subclasses to override. More...
|
|
virtual int | doReverseAuthorize (const int pccardid, const double pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
|
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 | handleResponse (const QString &presponse, const int pccardid, const CCTransaction ptype, double &pamount, const int pcurrid, QString &pneworder, QString &preforder, int &pccpayid, ParameterList &pparams) |
|
virtual bool | handlesCreditCards () |
| Returns whether the subclass handles credit cards. More...
|
|
virtual QVariant | xqresult (QXmlQuery *xq, QString query, QVariant::Type type=QVariant::String) |
| Return the result of extracting a given value from an XML response from CyberSource. More...
|
|
| CreditCardProcessor () |
| Construct and initialize a default CreditCardProcessor. More...
|
|
virtual FraudCheckResult * | avsCodeLookup (QChar pcode) |
|
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 | doReversePreauthorized (const double pamount, const int pcurrid, QString &pneworder, QString &preforder, 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 | 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...
|
|
|
enum | CCTransaction {
Authorize,
Reverse,
Capture,
Charge,
Credit,
Void
} |
|
enum | FraudCheck {
Match = 0x0000,
NoMatch = 0x0001,
NotAvail = 0x0002,
Address = 0x0004,
PostalCode = 0x0008,
Name = 0x0010,
NotProcessed = 0x0020,
Invalid = 0x0040,
ServiceUnavailable = 0x0080,
IssuerNotCertified = 0x0100,
Suspicious = 0x0200,
Unsupported = 0x0400
} |
|
static Q_INVOKABLE ParameterList | authorize (const ParameterList &) |
| Processes pre-authorization transactions. More...
|
|
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...
|
|
void | sslErrors (const QList< QSslError > &errors) |
|
static double | currToCurr (const int, const int, const double, int *=0) |
| Convert between two currencies. More...
|
|
static QString | _errorMsg = "" |
|
static QHash< int, QString > | _msgHash |
|
The implementation of CyberSource-specific credit card handling.