This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Payments.php

145 lines
3.4 KiB
PHP
Raw Normal View History

2015-06-29 12:40:00 +00:00
<?php
/*
2015-07-01 00:16:22 +00:00
* Payment components (only slightly convoluted)
2015-06-29 12:40:00 +00:00
*/
2015-06-29 12:40:00 +00:00
namespace Sakura;
use \PayPal\Api\Amount;
use \PayPal\Api\Details;
2015-07-01 00:16:22 +00:00
use \PayPal\Api\Item;
use \PayPal\Api\ItemList;
use \PayPal\Api\Payer;
2015-07-01 00:16:22 +00:00
use \PayPal\Api\Payment;
use \PayPal\Api\PaymentExecution;
use \PayPal\Api\RedirectUrls;
use \PayPal\Api\Transaction;
2015-06-29 12:40:00 +00:00
/**
* Class Payments
* @package Sakura
*/
class Payments
{
2015-07-01 00:16:22 +00:00
// Container for PayPal API
private static $paypal;
// Initialise PayPal API
public static function init()
{
2015-07-01 00:16:22 +00:00
// Set PayPal object
try {
self::$paypal = new \PayPal\Rest\ApiContext(
new \PayPal\Auth\OAuthTokenCredential(
Config::getConfig('paypal_client_id'),
Config::getConfig('paypal_secret')
2015-07-01 00:16:22 +00:00
)
);
} catch (\Exception $e) {
2015-07-01 00:16:22 +00:00
return false;
}
return true;
}
// Create transaction
public static function createTransaction($total, $itemName, $transDescription, $returnUrl)
{
2015-07-01 00:16:22 +00:00
// Create the payer object
$payer = new Payer();
// Set the method
$payer->setPaymentMethod('paypal');
// Create the item
$item = new Item();
// Set the item details
$item->setName($itemName)
->setCurrency('EUR')
->setQuantity(1)
->setPrice($total);
2015-07-01 00:16:22 +00:00
// Create itemlist
$list = new ItemList();
// Add the items
$list->setItems([$item]);
// Create details
$details = new Details();
// Set details
$details->setSubtotal($total);
// Create amount
$amount = new Amount();
// Set amount data
$amount->setCurrency('EUR')
->setTotal($total)
->setDetails($details);
2015-07-01 00:16:22 +00:00
// Create transaction
$trans = new Transaction();
2015-09-14 21:41:43 +00:00
// Set transaction data
$trans->setAmount($amount)
->setItemList($list)
->setDescription($transDescription)
->setInvoiceNumber(uniqid());
2015-07-01 00:16:22 +00:00
// Create redirect url object
$redir = new RedirectUrls();
// Set redirect url data
$redir->setReturnUrl($returnUrl . '?mode=finish&success=true')
->setCancelUrl($returnUrl . '?mode=finish&success=false');
2015-07-01 00:16:22 +00:00
// Create payment object
$payment = new Payment();
// Set payment data (finally)
$payment->setIntent('sale')
->setPayer($payer)
->setRedirectUrls($redir)
->setTransactions([$trans]);
2015-07-01 00:16:22 +00:00
// Try to create payment
try {
$payment->create(self::$paypal);
} catch (\Exception $ex) {
2015-07-01 00:16:22 +00:00
return false;
}
// Return the approval link if everything is gucci
return $payment->getApprovalLink();
}
// Complete the PayPal transaction
public static function completeTransaction($paymentId, $payerId)
{
2015-07-01 00:16:22 +00:00
// Attempt to get the payment
$payment = Payment::get($paymentId, self::$paypal);
// Create payment execution object
$execute = new PaymentExecution();
// Set the payer ID
$execute->setPayerId($payerId);
// Attempt to charge the fucker
try {
$payment->execute($execute, self::$paypal);
} catch (\Exception $ex) {
2015-07-01 00:16:22 +00:00
return false;
}
// If everything was cute return true
return true;
}
2015-06-29 12:40:00 +00:00
}