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/app/Payments.php

161 lines
3.9 KiB
PHP
Raw Normal View History

2015-06-29 12:40:00 +00:00
<?php
2016-02-03 22:22:56 +00:00
/**
* Holds the payments handler.
* @package Sakura
*/
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
/**
2016-02-02 21:04:15 +00:00
* Sakura PayPal API wrapper.
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Kamil Rakowski <admin@krakow.pw>
* @author Julian van de Groep <me@flash.moe>
*/
class Payments
{
2016-02-02 21:04:15 +00:00
/**
* Container for the PayPal API
* @var \PayPal\Rest\ApiContext
*/
2015-07-01 00:16:22 +00:00
private static $paypal;
2016-02-02 21:04:15 +00:00
/**
* Initialise the wrapper.
*/
2016-12-04 16:33:52 +00:00
public static function init(): void
{
2015-07-01 00:16:22 +00:00
// Set PayPal object
2016-12-04 16:33:52 +00:00
self::$paypal = new \PayPal\Rest\ApiContext(
new \PayPal\Auth\OAuthTokenCredential(
config("paypal.client_id"),
config("paypal.secret_id")
)
);
2015-07-01 00:16:22 +00:00
2016-02-02 21:04:15 +00:00
// Set the configuration
2016-01-11 00:05:50 +00:00
self::$paypal->setConfig([
2016-07-26 17:29:53 +00:00
'mode' => config("paypal.mode"),
2016-01-11 00:05:50 +00:00
]);
2015-07-01 00:16:22 +00:00
}
2016-02-02 21:04:15 +00:00
/**
* Create a new transaction.
2016-08-05 02:35:37 +00:00
* @param float $total
* @param string $itemName
* @param string $transDescription
* @param string $returnUrl
2016-12-04 16:33:52 +00:00
* @return string
2016-02-02 21:04:15 +00:00
*/
2016-12-04 16:33:52 +00:00
public static function createTransaction(float $total, string $itemName, string $transDescription, string $returnUrl): string
{
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) {
2016-12-04 16:33:52 +00:00
return route('premium.error');
2015-07-01 00:16:22 +00:00
}
// Return the approval link if everything is gucci
return $payment->getApprovalLink();
}
2016-02-02 21:04:15 +00:00
/**
* Complete the PayPal transaction.
2016-08-05 02:35:37 +00:00
* @param string $paymentId
* @param string $payerId
* @return bool
2016-02-02 21:04:15 +00:00
*/
2016-12-04 16:33:52 +00:00
public static function completeTransaction(string $paymentId, string $payerId): bool
{
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
}