2020-06-10 03:06:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-06-10 03:06:37 +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)
|
2020-06-10 03:06:37 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-06-10 03:06:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\PaymentDrivers\Authorize;
|
|
|
|
|
2020-06-10 07:21:11 +02:00
|
|
|
use App\Exceptions\GenericPaymentDriverFailure;
|
|
|
|
use App\Models\Client;
|
2020-06-10 03:06:37 +02:00
|
|
|
use App\PaymentDrivers\AuthorizePaymentDriver;
|
2020-06-10 07:21:11 +02:00
|
|
|
use net\authorize\api\contract\v1\CreateCustomerProfileRequest;
|
|
|
|
use net\authorize\api\contract\v1\CustomerProfileType;
|
2021-01-25 12:48:12 +01:00
|
|
|
use net\authorize\api\contract\v1\GetCustomerProfileRequest;
|
2020-06-10 07:21:11 +02:00
|
|
|
use net\authorize\api\controller\CreateCustomerProfileController;
|
2021-01-25 12:48:12 +01:00
|
|
|
use net\authorize\api\controller\GetCustomerProfileController;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-06-10 03:06:37 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class BaseDriver.
|
2020-06-10 03:06:37 +02:00
|
|
|
*/
|
|
|
|
class AuthorizeCreateCustomer
|
|
|
|
{
|
|
|
|
public $authorize;
|
|
|
|
|
2020-06-10 07:21:11 +02:00
|
|
|
public $client;
|
|
|
|
|
|
|
|
public function __construct(AuthorizePaymentDriver $authorize, Client $client)
|
2020-06-10 03:06:37 +02:00
|
|
|
{
|
|
|
|
$this->authorize = $authorize;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
|
|
|
$this->client = $client;
|
2020-06-10 03:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function create($data = null)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
2020-06-10 07:21:11 +02:00
|
|
|
|
2020-06-10 10:11:53 +02:00
|
|
|
$this->authorize->init();
|
2020-06-10 07:21:11 +02:00
|
|
|
// Create the Bill To info for new payment type
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-06-10 07:21:11 +02:00
|
|
|
$contact = $this->client->primary_contact()->first();
|
2020-09-06 11:38:10 +02:00
|
|
|
$refId = 'ref'.time();
|
|
|
|
|
2020-06-10 07:21:11 +02:00
|
|
|
// Create a new CustomerProfileType and add the payment profile object
|
|
|
|
$customerProfile = new CustomerProfileType();
|
|
|
|
$customerProfile->setDescription($this->client->present()->name());
|
2020-09-06 11:38:10 +02:00
|
|
|
$customerProfile->setMerchantCustomerId('M_'.time());
|
2020-06-10 07:21:11 +02:00
|
|
|
$customerProfile->setEmail($this->client->present()->email());
|
|
|
|
|
|
|
|
// Assemble the complete transaction request
|
|
|
|
$request = new CreateCustomerProfileRequest();
|
2020-06-10 10:11:53 +02:00
|
|
|
$request->setMerchantAuthentication($this->authorize->merchant_authentication);
|
2020-06-10 07:21:11 +02:00
|
|
|
$request->setRefId($refId);
|
|
|
|
$request->setProfile($customerProfile);
|
|
|
|
|
|
|
|
// Create the controller and get the response
|
|
|
|
$controller = new CreateCustomerProfileController($request);
|
|
|
|
$response = $controller->executeWithApiResponse($this->authorize->mode());
|
2020-06-10 03:06:37 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (($response != null) && ($response->getMessages()->getResultCode() == 'Ok')) {
|
|
|
|
return $response->getCustomerProfileId();
|
2020-06-10 07:21:11 +02:00
|
|
|
} else {
|
2020-09-06 11:38:10 +02:00
|
|
|
$errorMessages = $response->getMessages()->getMessage();
|
2020-06-10 07:21:11 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$message = 'Unable to add customer to Authorize.net gateway';
|
2020-06-10 07:21:11 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (is_array($errorMessages)) {
|
|
|
|
$message = $errorMessages[0]->getCode().' '.$errorMessages[0]->getText();
|
|
|
|
}
|
2020-06-10 07:21:11 +02:00
|
|
|
|
|
|
|
throw new GenericPaymentDriverFailure($message);
|
|
|
|
}
|
2020-06-10 03:06:37 +02:00
|
|
|
}
|
2021-01-25 12:48:12 +01:00
|
|
|
|
|
|
|
public function get($profileIdRequested)
|
|
|
|
{
|
|
|
|
|
|
|
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
|
|
|
|
|
|
|
$this->authorize->init();
|
|
|
|
$request = new GetCustomerProfileRequest();
|
|
|
|
$request->setMerchantAuthentication($this->authorize->merchant_authentication);
|
|
|
|
$request->setCustomerProfileId($profileIdRequested);
|
2021-01-25 13:16:43 +01:00
|
|
|
|
2021-01-25 12:48:12 +01:00
|
|
|
$controller = new GetCustomerProfileController($request);
|
|
|
|
$response = $controller->executeWithApiResponse($this->authorize->merchant_authentication);
|
|
|
|
|
|
|
|
if (($response != null) && ($response->getMessages()->getResultCode() == "Ok") )
|
|
|
|
{
|
|
|
|
echo "GetCustomerProfile SUCCESS : " . "\n";
|
|
|
|
$profileSelected = $response->getProfile();
|
|
|
|
$paymentProfilesSelected = $profileSelected->getPaymentProfiles();
|
|
|
|
echo "Profile Has " . count($paymentProfilesSelected). " Payment Profiles" . "\n";
|
|
|
|
|
|
|
|
if($response->getSubscriptionIds() != null)
|
|
|
|
{
|
|
|
|
if($response->getSubscriptionIds() != null)
|
|
|
|
{
|
|
|
|
|
|
|
|
echo "List of subscriptions:";
|
|
|
|
foreach($response->getSubscriptionIds() as $subscriptionid)
|
|
|
|
echo $subscriptionid . "\n";
|
2021-01-25 13:16:43 +01:00
|
|
|
|
2021-01-25 12:48:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "ERROR : GetCustomerProfile: Invalid response\n";
|
|
|
|
$errorMessages = $response->getMessages()->getMessage();
|
|
|
|
echo "Response : " . $errorMessages[0]->getCode() . " " .$errorMessages[0]->getText() . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|