symfony-billing/BillingBundle/Service/BillingSrv.php

37 lines
1.1 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
public function createPurchase($user_email, $items, $cbFormatter)
2019-07-16 14:44:22 +02:00
{
$apiKey = $this->container->getParameter('stripe_api_key_secret');
\Stripe\Stripe::setApiKey($apiKey);
$line_items = [];
2019-07-16 18:23:05 +02:00
foreach ($items as $item) $line_items[] = $cbFormatter($item);
2019-07-16 14:44:22 +02:00
return (
\Stripe\Checkout\Session::create([
'customer_email' => $user_email,
'payment_method_types' => $this->container->getParameter('payment_method'),
'line_items' => $line_items,
'success_url' => 'http://18d049f8.ngrok.io' . $this->container->getParameter('stripe_success_url'),
'cancel_url' => 'http://18d049f8.ngrok.io' . $this->container->getParameter('stripe_cancel_url'),
2019-07-16 14:44:22 +02:00
])
);
}
}