114 lines
3.5 KiB
PHP
114 lines
3.5 KiB
PHP
<?php
|
|
|
|
// # Order Create Using PayPal
|
|
// In a call to the /payment resource, provide the payment details. In the intent field, specify order, and set the payment_method to paypal. Creating an order is similar to creating a payment.
|
|
// API used: /v1/payments/payment
|
|
|
|
require __DIR__ . '/../bootstrap.php';
|
|
use PayPal\Api\Amount;
|
|
use PayPal\Api\Details;
|
|
use PayPal\Api\Item;
|
|
use PayPal\Api\ItemList;
|
|
use PayPal\Api\Payer;
|
|
use PayPal\Api\Payment;
|
|
use PayPal\Api\RedirectUrls;
|
|
use PayPal\Api\Transaction;
|
|
|
|
// ### Payer
|
|
// A resource representing a Payer that funds a payment
|
|
// For paypal account payments, set payment method
|
|
// to 'paypal'.
|
|
$payer = new Payer();
|
|
$payer->setPaymentMethod("paypal");
|
|
|
|
// ### Itemized information
|
|
// (Optional) Lets you specify item wise
|
|
// information
|
|
$item1 = new Item();
|
|
$item1->setName('Ground Coffee 40 oz')
|
|
->setCurrency('USD')
|
|
->setQuantity(1)
|
|
->setPrice(7.5);
|
|
$item2 = new Item();
|
|
$item2->setName('Granola bars')
|
|
->setCurrency('USD')
|
|
->setQuantity(5)
|
|
->setPrice(2);
|
|
|
|
$itemList = new ItemList();
|
|
$itemList->setItems(array($item1, $item2));
|
|
|
|
// ### Additional payment details
|
|
// Use this optional field to set additional
|
|
// payment information such as tax, shipping
|
|
// charges etc.
|
|
$details = new Details();
|
|
$details->setShipping(1.2)
|
|
->setTax(1.3)
|
|
->setSubtotal(17.50);
|
|
|
|
// ### Amount
|
|
// Lets you specify a payment amount.
|
|
// You can also specify additional details
|
|
// such as shipping, tax.
|
|
$amount = new Amount();
|
|
$amount->setCurrency("USD")
|
|
->setTotal(20)
|
|
->setDetails($details);
|
|
|
|
// ### Transaction
|
|
// A transaction defines the contract of a
|
|
// payment - what is the payment for and who
|
|
// is fulfilling it.
|
|
$transaction = new Transaction();
|
|
$transaction->setAmount($amount)
|
|
->setItemList($itemList)
|
|
->setDescription("Payment description")
|
|
->setInvoiceNumber(uniqid());
|
|
|
|
// ### Redirect urls
|
|
// Set the urls that the buyer must be redirected to after
|
|
// payment approval/ cancellation.
|
|
$baseUrl = getBaseUrl();
|
|
$redirectUrls = new RedirectUrls();
|
|
$redirectUrls->setReturnUrl("$baseUrl/OrderGet.php?success=true")
|
|
->setCancelUrl("$baseUrl/OrderGet.php?success=false");
|
|
|
|
// ### Payment
|
|
// A Payment Resource; create one using
|
|
// the above types and intent set to 'order'
|
|
$payment = new Payment();
|
|
$payment->setIntent("order")
|
|
->setPayer($payer)
|
|
->setRedirectUrls($redirectUrls)
|
|
->setTransactions(array($transaction));
|
|
|
|
|
|
// For Sample Purposes Only.
|
|
$request = clone $payment;
|
|
|
|
// ### Create Payment
|
|
// Create a payment by calling the 'create' method
|
|
// passing it a valid apiContext.
|
|
// (See bootstrap.php for more on `ApiContext`)
|
|
// The return object contains the state and the
|
|
// url to which the buyer must be redirected to
|
|
// for payment approval
|
|
try {
|
|
$payment->create($apiContext);
|
|
} catch (Exception $ex) {
|
|
// NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
|
|
ResultPrinter::printError("Created Payment Order Using PayPal. Please visit the URL to Approve.", "Payment", null, $request, $ex);
|
|
exit(1);
|
|
}
|
|
|
|
// ### Get redirect url
|
|
// The API response provides the url that you must redirect
|
|
// the buyer to. Retrieve the url from the $payment->getApprovalLink()
|
|
// method
|
|
$approvalUrl = $payment->getApprovalLink();
|
|
|
|
// NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
|
|
ResultPrinter::printResult("Created Payment Order Using PayPal. Please visit the URL to Approve.", "Payment", "<a href='$approvalUrl' >$approvalUrl</a>", $request, $payment);
|
|
|
|
return $payment;
|