2019-09-05 09:00:12 +02:00
< ? php
2020-06-24 16:07:12 +02:00
2019-09-05 09:00:12 +02:00
/**
2020-09-06 11:38:10 +02:00
* Invoice Ninja ( https :// invoiceninja . com ) .
2019-09-05 09:00:12 +02:00
*
* @ link https :// github . com / invoiceninja / invoiceninja source repository
*
2021-01-03 22:54:54 +01:00
* @ copyright Copyright ( c ) 2021. Invoice Ninja LLC ( https :// invoiceninja . com )
2019-09-05 09:00:12 +02:00
*
2021-06-16 08:58:16 +02:00
* @ license https :// www . elastic . co / licensing / elastic - license
2019-09-05 09:00:12 +02:00
*/
namespace App\PaymentDrivers ;
2021-06-15 18:52:15 +02:00
use App\Exceptions\PaymentFailed ;
2021-08-15 08:21:18 +02:00
use App\Exceptions\StripeConnectFailure ;
2019-09-25 07:55:52 +02:00
use App\Factory\PaymentFactory ;
2020-06-27 17:39:28 +02:00
use App\Http\Requests\Payments\PaymentWebhookRequest ;
2020-11-01 18:47:48 +01:00
use App\Http\Requests\Request ;
2019-10-29 03:55:26 +01:00
use App\Jobs\Util\SystemLogger ;
2019-09-17 07:42:10 +02:00
use App\Models\ClientGatewayToken ;
2019-09-08 14:13:55 +02:00
use App\Models\GatewayType ;
2019-09-25 07:55:52 +02:00
use App\Models\Payment ;
2020-09-04 00:01:17 +02:00
use App\Models\PaymentHash ;
2021-09-14 14:01:28 +02:00
use App\Models\PaymentType ;
2019-10-29 03:55:26 +01:00
use App\Models\SystemLog ;
2021-01-19 16:07:58 +01:00
use App\PaymentDrivers\Stripe\ACH ;
2020-06-23 16:47:29 +02:00
use App\PaymentDrivers\Stripe\Alipay ;
2021-08-16 00:54:11 +02:00
use App\PaymentDrivers\Stripe\ApplePay ;
2020-07-14 14:50:16 +02:00
use App\PaymentDrivers\Stripe\Charge ;
2021-08-15 07:13:20 +02:00
use App\PaymentDrivers\Stripe\Connect\Verify ;
2020-06-23 16:47:29 +02:00
use App\PaymentDrivers\Stripe\CreditCard ;
2021-05-17 10:56:14 +02:00
use App\PaymentDrivers\Stripe\ImportCustomers ;
2020-06-23 16:47:29 +02:00
use App\PaymentDrivers\Stripe\SOFORT ;
2021-10-06 08:49:59 +02:00
use App\PaymentDrivers\Stripe\SEPA ;
2021-10-09 16:13:04 +02:00
use App\PaymentDrivers\Stripe\iDeal ;
2021-05-17 06:02:43 +02:00
use App\PaymentDrivers\Stripe\UpdatePaymentMethods ;
2020-06-01 14:17:29 +02:00
use App\PaymentDrivers\Stripe\Utilities ;
2019-09-25 07:55:52 +02:00
use App\Utils\Traits\MakesHash ;
2020-12-21 11:46:10 +01:00
use Exception ;
2021-06-29 12:32:44 +02:00
use Illuminate\Http\RedirectResponse ;
2019-09-25 07:55:52 +02:00
use Illuminate\Support\Carbon ;
2021-06-29 12:32:44 +02:00
use Laracasts\Presenter\Exceptions\PresenterException ;
2021-05-12 05:00:46 +02:00
use Stripe\Account ;
2020-10-28 11:10:49 +01:00
use Stripe\Customer ;
2020-12-21 11:46:10 +01:00
use Stripe\Exception\ApiErrorException ;
2019-09-13 00:33:48 +02:00
use Stripe\PaymentIntent ;
2020-12-21 11:46:10 +01:00
use Stripe\PaymentMethod ;
2019-09-14 14:34:05 +02:00
use Stripe\SetupIntent ;
2019-09-05 14:42:26 +02:00
use Stripe\Stripe ;
2020-10-28 11:10:49 +01:00
use Stripe\StripeClient ;
2019-09-05 14:42:26 +02:00
2020-10-10 05:32:10 +02:00
class StripePaymentDriver extends BaseDriver
2019-09-05 09:00:12 +02:00
{
2020-06-01 14:17:29 +02:00
use MakesHash , Utilities ;
2019-09-25 07:55:52 +02:00
2020-07-15 07:05:02 +02:00
public $refundable = true ;
2019-09-05 09:00:12 +02:00
2020-07-15 07:05:02 +02:00
public $token_billing = true ;
2019-09-06 07:22:05 +02:00
2020-07-15 07:05:02 +02:00
public $can_authorise_credit_card = true ;
2019-09-15 13:40:46 +02:00
2021-06-29 12:32:44 +02:00
/** @var StripeClient */
2020-11-01 18:47:48 +01:00
public $stripe ;
2020-09-18 14:35:53 +02:00
2019-12-30 22:59:12 +01:00
protected $customer_reference = 'customerReferenceParam' ;
2019-09-06 07:22:05 +02:00
2020-10-10 05:32:10 +02:00
public $payment_method ;
2020-06-01 14:03:18 +02:00
2021-04-20 13:30:52 +02:00
public $stripe_connect = false ;
public $stripe_connect_auth = [];
2020-06-23 16:47:29 +02:00
public static $methods = [
GatewayType :: CREDIT_CARD => CreditCard :: class ,
2021-01-19 16:07:58 +01:00
GatewayType :: BANK_TRANSFER => ACH :: class ,
2020-06-23 16:47:29 +02:00
GatewayType :: ALIPAY => Alipay :: class ,
GatewayType :: SOFORT => SOFORT :: class ,
2021-08-16 00:54:11 +02:00
GatewayType :: APPLE_PAY => ApplePay :: class ,
2021-10-06 07:54:58 +02:00
GatewayType :: SEPA => SEPA :: class ,
2021-10-09 16:13:04 +02:00
GatewayType :: IDEAL => iDeal :: class ,
2020-06-23 16:47:29 +02:00
];
2020-11-16 13:36:29 +01:00
const SYSTEM_LOG_TYPE = SystemLog :: TYPE_STRIPE ;
2019-09-17 12:27:48 +02:00
/**
2020-09-06 11:38:10 +02:00
* Initializes the Stripe API .
2019-09-17 12:27:48 +02:00
* @ return void
*/
2021-08-18 02:15:11 +02:00
public function init ()
2019-12-30 22:59:12 +01:00
{
2021-04-20 13:30:52 +02:00
if ( $this -> stripe_connect )
{
Stripe :: setApiKey ( config ( 'ninja.ninja_stripe_key' ));
2021-05-11 15:15:51 +02:00
2021-08-14 23:33:56 +02:00
if ( strlen ( $this -> company_gateway -> getConfigField ( 'account_id' )) > 1 )
$this -> stripe_connect_auth = [ " stripe_account " => $this -> company_gateway -> getConfigField ( 'account_id' )];
2021-08-15 07:30:46 +02:00
else
2021-08-15 08:21:18 +02:00
throw new StripeConnectFailure ( 'Stripe Connect has not been configured' );
2021-04-20 13:30:52 +02:00
}
else
{
$this -> stripe = new StripeClient (
$this -> company_gateway -> getConfigField ( 'apiKey' )
);
2020-09-18 14:35:53 +02:00
2021-04-20 13:30:52 +02:00
Stripe :: setApiKey ( $this -> company_gateway -> getConfigField ( 'apiKey' ));
}
2021-08-18 02:15:11 +02:00
return $this ;
2019-12-30 22:59:12 +01:00
}
2019-09-17 12:27:48 +02:00
2020-06-23 16:47:29 +02:00
public function setPaymentMethod ( $payment_method_id )
2020-06-01 14:03:18 +02:00
{
2020-06-23 16:47:29 +02:00
$class = self :: $methods [ $payment_method_id ];
2020-06-24 16:07:12 +02:00
2020-06-23 16:47:29 +02:00
$this -> payment_method = new $class ( $this );
2020-06-01 14:03:18 +02:00
return $this ;
}
2019-12-30 22:59:12 +01:00
/**
2020-09-06 11:38:10 +02:00
* Returns the gateway types .
2019-12-30 22:59:12 +01:00
*/
2020-06-24 16:07:12 +02:00
public function gatewayTypes () : array
2019-09-08 14:13:55 +02:00
{
$types = [
2021-07-05 00:11:43 +02:00
// GatewayType::CRYPTO,
2021-06-30 13:21:46 +02:00
GatewayType :: CREDIT_CARD
2021-10-04 18:09:10 +02:00
];
2021-06-29 12:32:44 +02:00
2021-03-22 12:18:57 +01:00
if ( $this -> client
2021-01-27 13:36:10 +01:00
&& isset ( $this -> client -> country )
&& in_array ( $this -> client -> country -> iso_3166_3 , [ 'AUT' , 'BEL' , 'DEU' , 'ITA' , 'NLD' , 'ESP' ])) {
2019-09-08 14:13:55 +02:00
$types [] = GatewayType :: SOFORT ;
2019-12-30 22:59:12 +01:00
}
2019-09-08 14:13:55 +02:00
2021-03-22 12:18:57 +01:00
if ( $this -> client
2021-01-27 13:36:10 +01:00
&& isset ( $this -> client -> country )
2021-06-29 12:32:44 +02:00
&& in_array ( $this -> client -> country -> iso_3166_3 , [ 'USA' ])
2021-06-30 13:21:46 +02:00
) {
2021-01-27 13:36:10 +01:00
$types [] = GatewayType :: BANK_TRANSFER ;
}
2021-03-22 12:18:57 +01:00
if ( $this -> client
2021-01-27 13:36:10 +01:00
&& isset ( $this -> client -> country )
&& in_array ( $this -> client -> country -> iso_3166_3 , [ 'AUS' , 'DNK' , 'DEU' , 'ITA' , 'LUX' , 'NOR' , 'SVN' , 'GBR' , 'AUT' , 'EST' , 'GRC' , 'JPN' , 'MYS' , 'PRT' , 'ESP' , 'USA' , 'BEL' , 'FIN' , 'HKG' , 'LVA' , 'NLD' , 'SGP' , 'SWE' , 'CAN' , 'FRA' , 'IRL' , 'LTU' , 'NZL' , 'SVK' , 'CHE' ])) {
$types [] = GatewayType :: ALIPAY ;
}
2021-10-04 18:09:10 +02:00
2021-10-04 17:33:35 +02:00
if ( $this -> client
&& isset ( $this -> client -> country )
2021-10-04 18:09:10 +02:00
&& in_array ( $this -> client -> country -> iso_3166_3 , [ 'AUS' , 'DNK' , 'DEU' , 'ITA' , 'LUX' , 'NOR' , 'SVN' , 'GBR' , 'EST' , 'GRC' , 'JPN' , 'PRT' , 'ESP' , 'USA' , 'BEL' , 'FIN' ])) { // TODO: More has to be added https://stripe.com/docs/payments/sepa-debit
2021-10-06 07:54:58 +02:00
$types [] = GatewayType :: SEPA ;
2021-10-04 17:33:35 +02:00
}
2021-01-27 13:36:10 +01:00
2021-10-09 11:23:53 +02:00
if ( $this -> client
&& isset ( $this -> client -> country )
&& in_array ( $this -> client -> country -> iso_3166_3 , [ " DEU " ])) // TODO: change to netherlands
$types [] = GatewayType :: IDEAL ;
2019-09-08 14:13:55 +02:00
return $types ;
2019-09-12 13:46:09 +02:00
}
2019-09-18 04:39:53 +02:00
public function viewForType ( $gateway_type_id )
2019-09-12 13:46:09 +02:00
{
2019-12-30 22:59:12 +01:00
switch ( $gateway_type_id ) {
case GatewayType :: CREDIT_CARD :
2020-03-23 18:10:42 +01:00
return 'gateways.stripe.credit_card' ;
2019-12-30 22:59:12 +01:00
break ;
case GatewayType :: SOFORT :
2020-03-23 18:10:42 +01:00
return 'gateways.stripe.sofort' ;
2019-12-30 22:59:12 +01:00
break ;
case GatewayType :: BANK_TRANSFER :
2020-03-23 18:10:42 +01:00
return 'gateways.stripe.ach' ;
2019-12-30 22:59:12 +01:00
break ;
case GatewayType :: SEPA :
2020-03-23 18:10:42 +01:00
return 'gateways.stripe.sepa' ;
2019-12-30 22:59:12 +01:00
break ;
case GatewayType :: CRYPTO :
case GatewayType :: ALIPAY :
case GatewayType :: APPLE_PAY :
2020-03-23 18:10:42 +01:00
return 'gateways.stripe.other' ;
2019-12-30 22:59:12 +01:00
break ;
2021-10-09 11:23:53 +02:00
case GatewayType :: IDEAL :
return 'gateways.stripe.ideal' ;
2019-12-30 22:59:12 +01:00
default :
break ;
}
2019-09-08 14:13:55 +02:00
}
2019-09-13 00:33:48 +02:00
2021-01-13 13:31:00 +01:00
public function getClientRequiredFields () : array
{
2021-06-28 12:55:31 +02:00
$fields = [];
2021-02-15 14:58:25 +01:00
if ( $this -> company_gateway -> require_client_name ) {
$fields [] = [ 'name' => 'client_name' , 'label' => ctrans ( 'texts.client_name' ), 'type' => 'text' , 'validation' => 'required' ];
}
if ( $this -> company_gateway -> require_contact_name ) {
$fields [] = [ 'name' => 'contact_first_name' , 'label' => ctrans ( 'texts.first_name' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'contact_last_name' , 'label' => ctrans ( 'texts.last_name' ), 'type' => 'text' , 'validation' => 'required' ];
}
if ( $this -> company_gateway -> require_contact_email ) {
$fields [] = [ 'name' => 'contact_email' , 'label' => ctrans ( 'texts.email' ), 'type' => 'text' , 'validation' => 'required,email:rfc' ];
}
2021-06-28 12:55:31 +02:00
if ( $this -> company_gateway -> require_client_phone ) {
$fields [] = [ 'name' => 'client_phone' , 'label' => ctrans ( 'texts.client_phone' ), 'type' => 'tel' , 'validation' => 'required' ];
}
2021-02-15 14:58:25 +01:00
if ( $this -> company_gateway -> require_billing_address ) {
$fields [] = [ 'name' => 'client_address_line_1' , 'label' => ctrans ( 'texts.address1' ), 'type' => 'text' , 'validation' => 'required' ];
2021-05-25 18:30:50 +02:00
// $fields[] = ['name' => 'client_address_line_2', 'label' => ctrans('texts.address2'), 'type' => 'text', 'validation' => 'nullable'];
2021-02-15 14:58:25 +01:00
$fields [] = [ 'name' => 'client_city' , 'label' => ctrans ( 'texts.city' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'client_state' , 'label' => ctrans ( 'texts.state' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'client_country_id' , 'label' => ctrans ( 'texts.country' ), 'type' => 'text' , 'validation' => 'required' ];
}
2021-06-29 12:32:44 +02:00
2021-08-09 14:05:39 +02:00
if ( $this -> company_gateway -> require_postal_code ) {
2021-07-15 13:00:24 +02:00
$fields [] = [ 'name' => 'client_postal_code' , 'label' => ctrans ( 'texts.postal_code' ), 'type' => 'text' , 'validation' => 'required' ];
2021-08-09 14:05:39 +02:00
}
2021-02-15 14:58:25 +01:00
if ( $this -> company_gateway -> require_shipping_address ) {
$fields [] = [ 'name' => 'client_shipping_address_line_1' , 'label' => ctrans ( 'texts.shipping_address1' ), 'type' => 'text' , 'validation' => 'required' ];
2021-05-25 18:30:50 +02:00
// $fields[] = ['name' => 'client_shipping_address_line_2', 'label' => ctrans('texts.shipping_address2'), 'type' => 'text', 'validation' => 'sometimes'];
2021-02-15 14:58:25 +01:00
$fields [] = [ 'name' => 'client_shipping_city' , 'label' => ctrans ( 'texts.shipping_city' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'client_shipping_state' , 'label' => ctrans ( 'texts.shipping_state' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'client_shipping_postal_code' , 'label' => ctrans ( 'texts.shipping_postal_code' ), 'type' => 'text' , 'validation' => 'required' ];
$fields [] = [ 'name' => 'client_shipping_country_id' , 'label' => ctrans ( 'texts.shipping_country' ), 'type' => 'text' , 'validation' => 'required' ];
}
2021-06-28 12:55:31 +02:00
2021-02-15 14:58:25 +01:00
return $fields ;
2021-01-13 13:31:00 +01:00
}
2019-09-25 07:55:52 +02:00
/**
2020-06-01 14:03:18 +02:00
* Proxy method to pass the data into payment method authorizeView () .
2020-09-06 11:38:10 +02:00
*
* @ param array $data
2021-06-29 12:32:44 +02:00
* @ return RedirectResponse | mixed
2019-09-25 07:55:52 +02:00
*/
2020-06-01 14:03:18 +02:00
public function authorizeView ( array $data )
2019-09-14 14:34:05 +02:00
{
2020-06-01 14:03:18 +02:00
return $this -> payment_method -> authorizeView ( $data );
2019-09-16 13:03:25 +02:00
}
2019-09-25 07:55:52 +02:00
/**
2020-03-23 18:10:42 +01:00
* Processes the gateway response for credit card authorization .
*
2020-12-21 11:46:10 +01:00
* @ param \Illuminate\Http\Request $request
2021-06-29 12:32:44 +02:00
* @ return RedirectResponse | mixed
2019-09-25 07:55:52 +02:00
*/
2020-06-26 13:25:58 +02:00
public function authorizeResponse ( $request )
2019-09-16 13:03:25 +02:00
{
2020-06-01 14:14:41 +02:00
return $this -> payment_method -> authorizeResponse ( $request );
2019-09-14 14:34:05 +02:00
}
2019-09-25 04:07:33 +02:00
/**
2020-03-23 18:10:42 +01:00
* Process the payment with gateway .
2019-12-30 22:59:12 +01:00
*
2020-03-23 18:10:42 +01:00
* @ param array $data
2021-06-29 12:32:44 +02:00
* @ return RedirectResponse | mixed
2019-09-25 04:07:33 +02:00
*/
2019-09-25 06:03:28 +02:00
public function processPaymentView ( array $data )
2019-09-25 04:07:33 +02:00
{
2020-06-01 14:29:41 +02:00
return $this -> payment_method -> paymentView ( $data );
2019-09-25 04:07:33 +02:00
}
2021-01-27 13:36:10 +01:00
public function processPaymentResponse ( $request )
2019-09-25 06:03:28 +02:00
{
2020-06-01 16:19:03 +02:00
return $this -> payment_method -> paymentResponse ( $request );
2019-10-01 11:59:32 +02:00
}
2019-09-13 00:33:48 +02:00
/**
2020-09-06 11:38:10 +02:00
* Creates a new String Payment Intent .
2019-12-30 22:59:12 +01:00
*
2020-10-28 11:10:49 +01:00
* @ param array $data The data array to be passed to Stripe
2019-09-13 00:33:48 +02:00
* @ return PaymentIntent The Stripe payment intent object
2020-12-21 11:46:10 +01:00
* @ throws ApiErrorException
2019-09-13 00:33:48 +02:00
*/
2020-09-06 11:38:10 +02:00
public function createPaymentIntent ( $data ) : ? PaymentIntent
2019-09-13 00:33:48 +02:00
{
2019-09-16 06:59:59 +02:00
$this -> init ();
2021-05-25 18:30:50 +02:00
2021-05-11 23:58:18 +02:00
$meta = $this -> stripe_connect_auth ;
2019-09-17 13:54:14 +02:00
2021-05-11 23:58:18 +02:00
return PaymentIntent :: create ( $data , $meta );
2019-09-13 00:33:48 +02:00
}
2019-09-14 14:34:05 +02:00
/**
2019-12-30 22:59:12 +01:00
* Returns a setup intent that allows the user
2019-09-17 13:54:14 +02:00
* to enter card details without initiating a transaction .
2019-09-14 14:34:05 +02:00
*
2020-10-28 11:10:49 +01:00
* @ return SetupIntent
2020-12-21 11:46:10 +01:00
* @ throws ApiErrorException
2019-09-14 14:34:05 +02:00
*/
2020-09-06 11:38:10 +02:00
public function getSetupIntent () : SetupIntent
2019-09-14 14:34:05 +02:00
{
2019-09-16 06:59:59 +02:00
$this -> init ();
2019-09-17 13:54:14 +02:00
2021-05-11 23:58:18 +02:00
$params = [];
$meta = $this -> stripe_connect_auth ;
return SetupIntent :: create ( $params , $meta );
2019-09-14 14:34:05 +02:00
}
2019-09-17 13:54:14 +02:00
/**
2020-09-06 11:38:10 +02:00
* Returns the Stripe publishable key .
* @ return null | string The stripe publishable key
2019-09-17 13:54:14 +02:00
*/
2020-06-24 16:07:12 +02:00
public function getPublishableKey () : ? string
2019-09-14 14:34:05 +02:00
{
return $this -> company_gateway -> getPublishableKey ();
}
2019-09-16 06:59:59 +02:00
2019-09-17 13:54:14 +02:00
/**
2020-09-06 11:38:10 +02:00
* Finds or creates a Stripe Customer object .
2019-12-30 22:59:12 +01:00
*
2020-10-28 11:10:49 +01:00
* @ return null | Customer A Stripe customer object
2021-06-29 12:32:44 +02:00
* @ throws PresenterException
2020-12-21 11:46:10 +01:00
* @ throws ApiErrorException
2019-09-17 13:54:14 +02:00
*/
2020-10-28 11:10:49 +01:00
public function findOrCreateCustomer () : ? Customer
2019-12-30 22:59:12 +01:00
{
2019-09-16 06:59:59 +02:00
$customer = null ;
$this -> init ();
2021-05-25 18:30:50 +02:00
2021-10-01 04:57:34 +02:00
$client_gateway_token = ClientGatewayToken :: whereClientId ( $this -> client -> id )
-> whereCompanyGatewayId ( $this -> company_gateway -> id )
-> first ();
2019-09-16 06:59:59 +02:00
2021-09-01 00:22:24 +02:00
//Search by customer reference
2019-12-30 22:59:12 +01:00
if ( $client_gateway_token && $client_gateway_token -> gateway_customer_reference ) {
2021-05-11 23:58:18 +02:00
2021-09-01 00:22:24 +02:00
$customer = Customer :: retrieve ( $client_gateway_token -> gateway_customer_reference , $this -> stripe_connect_auth );
2019-09-17 07:59:09 +02:00
2021-09-01 00:22:24 +02:00
if ( $customer )
return $customer ;
2021-10-04 18:09:10 +02:00
}
2021-09-01 00:22:24 +02:00
//Search by email
$searchResults = \Stripe\Customer :: all ([
" email " => $this -> client -> present () -> email (),
" limit " => 2 ,
" starting_after " => null
], $this -> stripe_connect_auth );
if ( count ( $searchResults ) == 1 )
return $searchResults -> data [ 0 ];
2021-10-04 18:09:10 +02:00
2021-09-01 00:22:24 +02:00
//Else create a new record
$data [ 'name' ] = $this -> client -> present () -> name ();
$data [ 'phone' ] = $this -> client -> present () -> phone ();
2021-10-04 18:09:10 +02:00
2021-09-01 00:22:24 +02:00
if ( filter_var ( $this -> client -> present () -> email (), FILTER_VALIDATE_EMAIL )) {
$data [ 'email' ] = $this -> client -> present () -> email ();
2019-09-16 06:59:59 +02:00
}
2019-09-17 07:42:10 +02:00
2021-09-01 00:22:24 +02:00
$customer = Customer :: create ( $data , $this -> stripe_connect_auth );
2020-09-18 09:48:53 +02:00
if ( ! $customer ) {
2020-12-21 11:46:10 +01:00
throw new Exception ( 'Unable to create gateway customer' );
2019-12-30 22:59:12 +01:00
}
2019-09-25 04:07:33 +02:00
2019-09-16 06:59:59 +02:00
return $customer ;
}
2020-10-10 05:32:10 +02:00
public function refund ( Payment $payment , $amount , $return_client_response = false )
2020-05-14 03:04:23 +02:00
{
2020-09-18 14:35:53 +02:00
$this -> init ();
2021-05-11 23:58:18 +02:00
$meta = $this -> stripe_connect_auth ;
2020-12-01 13:46:09 +01:00
/** Response from Stripe SDK/API. */
$response = null ;
2020-09-18 14:35:53 +02:00
2020-12-01 13:46:09 +01:00
try {
2021-09-09 13:46:03 +02:00
// $response = $this->stripe
// ->refunds
// ->create(['charge' => $payment->transaction_reference, 'amount' => $this->convertToStripeAmount($amount, $this->client->currency()->precision, $this->client->currency())], $meta);
$response = \Stripe\Refund :: create ([
2021-10-04 18:09:10 +02:00
'charge' => $payment -> transaction_reference ,
2021-09-09 13:46:03 +02:00
'amount' => $this -> convertToStripeAmount ( $amount , $this -> client -> currency () -> precision , $this -> client -> currency ())
], $meta );
2020-12-01 13:46:09 +01:00
if ( $response -> status == $response :: STATUS_SUCCEEDED ) {
2021-05-19 03:12:23 +02:00
SystemLogger :: dispatch ([ 'server_response' => $response , 'data' => request () -> all (),], SystemLog :: CATEGORY_GATEWAY_RESPONSE , SystemLog :: EVENT_GATEWAY_SUCCESS , SystemLog :: TYPE_STRIPE , $this -> client , $this -> client -> company );
2020-12-01 13:46:09 +01:00
return [
'transaction_reference' => $response -> charge ,
'transaction_response' => json_encode ( $response ),
'success' => $response -> status == $response :: STATUS_SUCCEEDED ? true : false ,
'description' => $response -> metadata ,
'code' => $response ,
];
}
2020-05-14 03:04:23 +02:00
2021-05-19 03:12:23 +02:00
SystemLogger :: dispatch ([ 'server_response' => $response , 'data' => request () -> all (),], SystemLog :: CATEGORY_GATEWAY_RESPONSE , SystemLog :: EVENT_GATEWAY_FAILURE , SystemLog :: TYPE_STRIPE , $this -> client , $this -> client -> company );
2020-06-24 16:07:12 +02:00
return [
2020-12-01 13:46:09 +01:00
'transaction_reference' => null ,
2020-09-18 14:35:53 +02:00
'transaction_response' => json_encode ( $response ),
2020-12-01 13:46:09 +01:00
'success' => false ,
'description' => $response -> failure_reason ,
'code' => 422 ,
2020-06-24 16:07:12 +02:00
];
2020-12-21 11:46:10 +01:00
} catch ( Exception $e ) {
2021-05-19 03:12:23 +02:00
SystemLogger :: dispatch ([ 'server_response' => $response , 'data' => request () -> all (),], SystemLog :: CATEGORY_GATEWAY_RESPONSE , SystemLog :: EVENT_GATEWAY_FAILURE , SystemLog :: TYPE_STRIPE , $this -> client , $this -> client -> company );
2020-05-14 03:04:23 +02:00
2020-12-29 22:10:03 +01:00
nlog ( $e -> getMessage ());
2020-06-24 16:07:12 +02:00
2020-12-01 13:46:09 +01:00
return [
'transaction_reference' => null ,
'transaction_response' => json_encode ( $response ),
'success' => false ,
'description' => $e -> getMessage (),
'code' => 422 ,
];
}
2020-05-14 03:04:23 +02:00
}
2019-09-16 06:59:59 +02:00
2020-06-09 14:42:23 +02:00
public function verificationView ( ClientGatewayToken $payment_method )
{
return $this -> payment_method -> verificationView ( $payment_method );
}
2020-11-01 18:47:48 +01:00
public function processVerification ( Request $request , ClientGatewayToken $payment_method )
2020-06-09 14:42:23 +02:00
{
2020-11-01 18:47:48 +01:00
return $this -> payment_method -> processVerification ( $request , $payment_method );
2020-06-09 14:42:23 +02:00
}
2021-08-04 16:19:01 +02:00
public function processWebhookRequest ( PaymentWebhookRequest $request )
2020-06-27 17:39:28 +02:00
{
2021-08-13 07:53:00 +02:00
// Allow app to catch up with webhook request.
sleep ( 2 );
2021-09-20 08:11:05 +02:00
if ( $request -> type === 'charge.succeeded' || $request -> type === 'payment_intent.succeeded' ) {
2021-09-14 14:02:06 +02:00
2021-08-04 16:19:01 +02:00
foreach ( $request -> data as $transaction ) {
$payment = Payment :: query ()
-> where ( 'transaction_reference' , $transaction [ 'id' ])
-> where ( 'company_id' , $request -> getCompany () -> id )
-> first ();
if ( $payment ) {
$payment -> status_id = Payment :: STATUS_COMPLETED ;
$payment -> save ();
}
}
2021-09-14 15:25:30 +02:00
} elseif ( $request -> type === 'source.chargeable' ) {
2021-09-14 14:01:28 +02:00
$this -> init ();
2021-09-14 15:25:30 +02:00
foreach ( $request -> data as $transaction ) {
$charge = \Stripe\Charge :: create ([
'amount' => $request -> data [ 'object' ][ 'amount' ],
'currency' => $request -> data [ 'object' ][ 'currency' ],
'source' => $request -> data [ 'object' ][ 'id' ],
], $this -> stripe_connect_auth );
if ( $charge -> captured ) {
$payment = Payment :: query ()
-> where ( 'transaction_reference' , $transaction [ 'id' ])
-> where ( 'company_id' , $request -> getCompany () -> id )
-> first ();
2021-09-14 14:01:28 +02:00
2021-09-14 15:25:30 +02:00
if ( $payment ) {
$payment -> status_id = Payment :: STATUS_COMPLETED ;
$payment -> save ();
}
}
2021-09-14 14:01:28 +02:00
}
}
2021-05-29 12:57:39 +02:00
2021-08-04 16:19:01 +02:00
return response () -> json ([], 200 );
2020-06-27 17:39:28 +02:00
}
2020-09-06 11:38:10 +02:00
public function tokenBilling ( ClientGatewayToken $cgt , PaymentHash $payment_hash )
2020-07-14 14:50:16 +02:00
{
2021-01-27 11:38:28 +01:00
return ( new Charge ( $this )) -> tokenBilling ( $cgt , $payment_hash );
2020-07-15 07:05:02 +02:00
}
2020-09-18 09:48:53 +02:00
2020-10-28 16:31:47 +01:00
/**
2020-11-25 15:19:52 +01:00
* Attach Stripe payment method to Stripe client .
*
* @ param string $payment_method
* @ param mixed $customer
*
* @ return void
2020-10-28 16:31:47 +01:00
*/
public function attach ( string $payment_method , $customer ) : void
{
2021-05-12 04:03:46 +02:00
$this -> init ();
2020-10-28 16:31:47 +01:00
try {
2021-05-12 04:03:46 +02:00
2020-10-28 16:31:47 +01:00
$stripe_payment_method = $this -> getStripePaymentMethod ( $payment_method );
2021-05-12 04:03:46 +02:00
$stripe_payment_method -> attach ([ 'customer' => $customer -> id ], $this -> stripe_connect_auth );
2020-12-21 11:46:10 +01:00
} catch ( ApiErrorException | Exception $e ) {
2021-05-12 04:03:46 +02:00
nlog ( $e -> getMessage ());
SystemLogger :: dispatch ([
2021-05-25 18:30:50 +02:00
'server_response' => $e -> getMessage (),
2021-05-12 04:03:46 +02:00
'data' => request () -> all (),
2021-05-25 18:30:50 +02:00
],
SystemLog :: CATEGORY_GATEWAY_RESPONSE ,
SystemLog :: EVENT_GATEWAY_FAILURE ,
SystemLog :: TYPE_STRIPE ,
2021-05-19 03:12:23 +02:00
$this -> client , $this -> client -> company );
2021-05-12 04:03:46 +02:00
2020-10-28 16:31:47 +01:00
}
}
2020-09-18 09:48:53 +02:00
/**
* Detach payment method from the Stripe .
* https :// stripe . com / docs / api / payment_methods / detach
2020-10-28 11:10:49 +01:00
*
* @ param ClientGatewayToken $token
2020-12-01 13:46:09 +01:00
* @ return void
*/
2020-09-18 09:48:53 +02:00
public function detach ( ClientGatewayToken $token )
{
2021-05-12 04:03:46 +02:00
$this -> init ();
try {
2021-05-25 18:30:50 +02:00
2021-05-12 04:03:46 +02:00
$pm = $this -> getStripePaymentMethod ( $token -> token );
$pm -> detach ([], $this -> stripe_connect_auth );
} catch ( ApiErrorException | Exception $e ) {
nlog ( $e -> getMessage ());
2020-09-18 09:48:53 +02:00
SystemLogger :: dispatch ([
2021-05-25 18:30:50 +02:00
'server_response' => $e -> getMessage (),
2021-05-12 04:03:46 +02:00
'data' => request () -> all (),
2021-05-25 18:30:50 +02:00
],
SystemLog :: CATEGORY_GATEWAY_RESPONSE ,
SystemLog :: EVENT_GATEWAY_FAILURE ,
SystemLog :: TYPE_STRIPE ,
2021-05-19 03:12:23 +02:00
$this -> client , $this -> client -> company );
2021-05-12 04:03:46 +02:00
2020-09-18 09:48:53 +02:00
}
}
2020-12-01 13:46:09 +01:00
2020-10-10 05:32:10 +02:00
public function getCompanyGatewayId () : int
{
return $this -> company_gateway -> id ;
}
2020-10-28 16:31:47 +01:00
/**
* Retrieve payment method from Stripe .
*
2020-11-25 15:19:52 +01:00
* @ param string $source
*
2020-12-21 11:46:10 +01:00
* @ return PaymentMethod | void
2020-10-28 16:31:47 +01:00
*/
public function getStripePaymentMethod ( string $source )
{
try {
2021-05-12 04:03:46 +02:00
2021-05-11 23:58:18 +02:00
return PaymentMethod :: retrieve ( $source , $this -> stripe_connect_auth );
2021-05-12 04:03:46 +02:00
2020-12-21 11:46:10 +01:00
} catch ( ApiErrorException | Exception $e ) {
2021-06-15 18:52:15 +02:00
throw new PaymentFailed ( $e -> getMessage (), $e -> getCode ());
2020-10-28 16:31:47 +01:00
}
}
2021-05-12 05:00:46 +02:00
public function getAllConnectedAccounts ()
{
$this -> init ();
return Account :: all ();
}
2021-05-17 06:02:43 +02:00
2021-09-14 14:01:28 +02:00
public function setClientFromCustomer ( $customer )
{
$this -> client = ClientGatewayToken :: where ( 'gateway_customer_reference' , $customer ) -> client ;
}
2021-05-17 06:02:43 +02:00
/**
* Pull all client payment methods and update
* the respective tokens in the system .
2021-05-25 18:30:50 +02:00
*
2021-05-17 06:02:43 +02:00
*/
2021-06-15 03:09:12 +02:00
public function updateAllPaymentMethods ()
{
return ( new UpdatePaymentMethods ( $this )) -> run ();
}
2021-05-17 06:02:43 +02:00
/**
* Imports stripe customers and their payment methods
2021-05-25 18:30:50 +02:00
* Matches users in the system based on the $match_on_record
2021-05-17 06:02:43 +02:00
* ie . email
2021-05-25 18:30:50 +02:00
*
2021-05-17 06:02:43 +02:00
* Phone
* Email
*/
2021-05-17 10:56:14 +02:00
public function importCustomers ()
2021-05-17 06:02:43 +02:00
{
2021-05-17 10:56:14 +02:00
return ( new ImportCustomers ( $this )) -> run ();
2021-05-17 06:02:43 +02:00
//match clients based on the gateway_customer_reference column
}
2021-08-15 07:13:20 +02:00
2021-08-18 02:15:11 +02:00
public function importMatchedClients ()
{
return ( new ImportCustomers ( $this )) -> match ();
}
2021-08-20 14:44:39 +02:00
public function importCustomer ( $customer_id )
{
return ( new ImportCustomers ( $this )) -> importCustomer ( $customer_id );
}
2021-08-15 07:13:20 +02:00
public function verifyConnect ()
{
return ( new Verify ( $this )) -> run ();
}
2021-08-17 06:01:11 +02:00
public function disconnect ()
{
if ( ! $this -> stripe_connect )
return true ;
if ( ! strlen ( $this -> company_gateway -> getConfigField ( 'account_id' )) > 1 )
throw new StripeConnectFailure ( 'Stripe Connect has not been configured' );
Stripe :: setApiKey ( config ( 'ninja.ninja_stripe_key' ));
try {
\Stripe\OAuth :: deauthorize ([
'client_id' => config ( 'ninja.ninja_stripe_client_id' ),
'stripe_user_id' => $this -> company_gateway -> getConfigField ( 'account_id' ),
]);
}
catch ( \Exception $e ){
throw new StripeConnectFailure ( 'Unable to disconnect Stripe Connect' );
}
return response () -> json ([ 'message' => 'success' ], 200 );
}
2021-09-21 13:38:35 +02:00
public function decodeUnicodeString ( $string )
{
return html_entity_decode ( $string , ENT_QUOTES , 'UTF-8' );
// return iconv("UTF-8", "ISO-8859-1//TRANSLIT", $this->decode_encoded_utf8($string));
}
public function decode_encoded_utf8 ( $string ){
return preg_replace_callback ( '#\\\\u([0-9a-f]{4})#ism' , function ( $matches ) { return mb_convert_encoding ( pack ( " H* " , $matches [ 1 ]), " UTF-8 " , " UCS-2BE " ); }, $string );
}
2019-12-30 22:59:12 +01:00
}