symfony-billing/BillingBundle/Service/BillingSrv.php

58 lines
1.6 KiB
PHP
Raw Normal View History

<?php
namespace Bluesquare\BillingBundle\Service;
2019-07-16 14:44:22 +02:00
use Symfony\Component\DependencyInjection\ContainerInterface;
class BillingSrv
{
2019-07-16 14:44:22 +02:00
private $container;
public function __construct(ContainerInterface $container)
{
2019-07-16 14:44:22 +02:00
$this->container = $container;
}
2019-07-16 14:58:49 +02:00
private function setApiKey()
2019-07-16 14:44:22 +02:00
{
$apiKey = $this->container->getParameter('stripe_api_key_secret');
\Stripe\Stripe::setApiKey($apiKey);
}
public function createPurchase($customer, $items, $cbFormatter)
{
$this->setApiKey();
$line_items = [];
2019-07-16 18:23:05 +02:00
foreach ($items as $item) $line_items[] = $cbFormatter($item);
2019-07-17 16:46:37 +02:00
$ngrok_url = $this->container->getParameter('dev_ngrok_prefix');
2019-07-16 14:44:22 +02:00
return (
\Stripe\Checkout\Session::create([
'customer' => $customer,
'payment_method_types' => $this->container->getParameter('payment_method'),
'line_items' => $line_items,
2019-07-17 16:46:37 +02:00
'success_url' => $ngrok_url . $this->container->getParameter('stripe_success_url'),
'cancel_url' => $ngrok_url . $this->container->getParameter('stripe_cancel_url'),
2019-07-16 14:44:22 +02:00
])
);
}
2019-07-19 18:14:21 +02:00
public function confirmPayment($paimentIntent)
{
$infoIntent = $this->retrievePurchase($paimentIntent);
return ($infoIntent['amount'] == $infoIntent['amount_received'] && $infoIntent['amount_capturable'] == 0);
}
public function retrievePurchase($paimentIntent)
{
$this->setApiKey();
2019-07-19 18:00:44 +02:00
return \Stripe\PaymentIntent::retrieve($paimentIntent);
}
}