Wt
3.3.8
|
A paypal express checkout process. More...
#include <Wt/Payment/Paypal>
Public Types | |
Public Types inherited from Wt::WObject | |
typedef void(WObject::* | Method) () |
Typedef for a WObject method without arguments. | |
Public Member Functions | |
void | setPaymentAction (PaymentAction action) |
Sets the payment action. More... | |
PaymentAction | paymentAction () const |
Returns the payment action. More... | |
void | setParameter (const std::string &name, const std::string &value) |
Adds or overrides a PayPal API request parameter. More... | |
const Customer & | customer () const |
Returns the customer information. More... | |
const Order & | order () const |
Returns the order information. More... | |
Signal< Result > & | setup () |
Setup the transaction. More... | |
void | startPayment () |
Start the payment. More... | |
Signal< Result > & | updateCustomerDetails () |
Updates customer information from PayPal. More... | |
Signal< Result > & | completePayment (const Money &totalAmount) |
Completes the payment. More... | |
Signal< Approval > & | paymentApproved () |
The payment approval signal. More... | |
Public Member Functions inherited from Wt::WObject | |
WObject (WObject *parent=0) | |
Create a WObject with a given parent object. More... | |
virtual | ~WObject () |
Destructor. More... | |
virtual const std::string | id () const |
Returns the (unique) identifier for this object. More... | |
virtual void | setObjectName (const std::string &name) |
Sets an object name. More... | |
virtual std::string | objectName () const |
Returns the object name. More... | |
void | resetLearnedSlots () |
Resets learned stateless slot implementations. More... | |
template<class T > | |
void | resetLearnedSlot (void(T::*method)()) |
Resets a learned stateless slot implementation. More... | |
template<class T > | |
WStatelessSlot * | implementStateless (void(T::*method)()) |
Declares a slot to be stateless and learn client-side behaviour on first invocation. More... | |
template<class T > | |
WStatelessSlot * | implementStateless (void(T::*method)(), void(T::*undoMethod)()) |
Declares a slot to be stateless and learn client-side behaviour in advance. More... | |
void | isNotStateless () |
Marks the current function as not stateless. More... | |
template<class T > | |
WStatelessSlot * | implementJavaScript (void(T::*method)(), const std::string &jsCode) |
Provides a JavaScript implementation for a method. More... | |
void | addChild (WObject *child) |
Adds a child object. More... | |
virtual void | removeChild (WObject *child) |
Removes a child object. More... | |
const std::vector< WObject * > & | children () const |
Returns the children. | |
WObject * | parent () const |
Returns the parent object. | |
Additional Inherited Members | |
Protected Member Functions inherited from Wt::WObject | |
virtual WStatelessSlot * | getStateless (Method method) |
On-demand stateless slot implementation. More... | |
Static Protected Member Functions inherited from Wt::WObject | |
static WObject * | sender () |
Returns the sender of the current slot call. More... | |
A paypal express checkout process.
This implements the PayPal Express Checkout process.
For more information about the PayPal API see: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_ECGettingStarted
Use flow:
For an example, see the paypal feature example. This example reads the necessary variables from the wt_config.xml file.
For the api server url you should use API signature with the SOAP format. More information about the necessary url's and SOAP: https://developer.paypal.com/docs/classic/api/endpoints/ and https://developer.paypal.com/docs/integration/direct/identity/seamless-checkout/#nvp-soap-credentials.
The login credentials can be found in a paypal business account. You can create a sandbox test account by following the documentantion: https://developer.paypal.com/docs/classic/lifecycle/sb_create-accounts.
Enumeration for payment actions.
See more information at PayPal:
Enumerator | |
---|---|
SaleAction |
A Sale action. |
AuthorizationAction |
An Authorization action. |
OrderAction |
An Order action. |
Completes the payment.
This is the last step of a PayPal checkout, which uses the PayPal DoExpressCheckoutPayment API call to confirm the payment.
This may update the exact amount (for example to reflect accurate shipping information knowing the customer's shipping address).
This is an asynchronous call, which returns a signal that is emitted when the call has finished.
const Customer & Wt::Payment::PayPalExpressCheckout::customer | ( | ) | const |
Returns the customer information.
const Order & Wt::Payment::PayPalExpressCheckout::order | ( | ) | const |
Returns the order information.
PayPalExpressCheckout::PaymentAction Wt::Payment::PayPalExpressCheckout::paymentAction | ( | ) | const |
Returns the payment action.
The payment approval signal.
void Wt::Payment::PayPalExpressCheckout::setParameter | ( | const std::string & | name, |
const std::string & | value | ||
) |
Adds or overrides a PayPal API request parameter.
If value is empty, then this will remove a request parameter.
Useful use examples:
void Wt::Payment::PayPalExpressCheckout::setPaymentAction | ( | PaymentAction | action | ) |
Sets the payment action.
The default payment action is SaleAction.
Setup the transaction.
This uses the PayPal SetExpressCheckout API call to initiate the payment process, preparing things for a subsequent call to startPayment().
This is an asynchronous call, which returns a signal that is emitted when the call has finished.
void Wt::Payment::PayPalExpressCheckout::startPayment | ( | ) |
Start the payment.
This redirects to PayPal. It should be directly connected to a clicked event (on the PayPal button), to allow a JavaScript popup window to be used.
This is an asynchronous call, whose result will be indicated using the paymentApproved() signal.
Updates customer information from PayPal.
This fetches customer information that is kept at PayPal for the current user. This call is optional, and can be used only after the user approved the payment (see paymentApproved()).
This uses the PayPal GetExpressCheckoutDetails API call.
This is an asynchronous call, which returns a signal that is emitted when the call has finished.