2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
2016-06-20 16:14:43 +02:00
|
|
|
|
2016-06-23 15:15:52 +02:00
|
|
|
use App\Models\Payment;
|
2016-06-20 16:14:43 +02:00
|
|
|
use App\Models\PaymentMethod;
|
2017-09-04 12:14:58 +02:00
|
|
|
use App\Models\GatewayType;
|
2017-01-30 20:40:43 +01:00
|
|
|
use Cache;
|
|
|
|
use Exception;
|
2017-08-31 14:55:15 +02:00
|
|
|
use App\Models\PaymentType;
|
2016-06-20 16:14:43 +02:00
|
|
|
|
|
|
|
class StripePaymentDriver extends BasePaymentDriver
|
|
|
|
{
|
|
|
|
protected $customerReferenceParam = 'customerReference';
|
2017-05-16 11:20:35 +02:00
|
|
|
public $canRefundPayments = true;
|
2016-06-20 16:14:43 +02:00
|
|
|
|
2016-06-22 20:42:09 +02:00
|
|
|
public function gatewayTypes()
|
2016-06-20 16:14:43 +02:00
|
|
|
{
|
2017-01-30 20:40:43 +01:00
|
|
|
$types = [
|
2016-06-20 16:14:43 +02:00
|
|
|
GATEWAY_TYPE_CREDIT_CARD,
|
2017-01-30 20:40:43 +01:00
|
|
|
GATEWAY_TYPE_TOKEN,
|
2016-06-20 16:14:43 +02:00
|
|
|
];
|
|
|
|
|
2016-06-22 20:42:09 +02:00
|
|
|
if ($this->accountGateway && $this->accountGateway->getAchEnabled()) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$types[] = GATEWAY_TYPE_BANK_TRANSFER;
|
|
|
|
}
|
|
|
|
|
2017-09-04 12:14:58 +02:00
|
|
|
if ($this->accountGateway && $this->accountGateway->getAlipayEnabled()) {
|
|
|
|
$types[] = GATEWAY_TYPE_ALIPAY;
|
|
|
|
}
|
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
return $types;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tokenize()
|
|
|
|
{
|
|
|
|
return $this->accountGateway->getPublishableStripeKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = parent::rules();
|
|
|
|
|
|
|
|
if ($this->isGatewayType(GATEWAY_TYPE_BANK_TRANSFER)) {
|
|
|
|
$rules['authorize_ach'] = 'required';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2016-07-29 13:58:26 +02:00
|
|
|
public function isValid()
|
|
|
|
{
|
|
|
|
$result = $this->makeStripeCall(
|
|
|
|
'GET',
|
|
|
|
'charges',
|
|
|
|
'limit=1'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (array_get($result, 'object') == 'list') {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
protected function checkCustomerExists($customer)
|
|
|
|
{
|
|
|
|
$response = $this->gateway()
|
|
|
|
->fetchCustomer(['customerReference' => $customer->token])
|
|
|
|
->send();
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! $response->isSuccessful()) {
|
2016-06-20 16:14:43 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->tokenResponse = $response->getData();
|
|
|
|
|
|
|
|
// import Stripe tokens created before payment methods table was added
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! count($customer->payment_methods)) {
|
2016-06-20 16:14:43 +02:00
|
|
|
if ($paymentMethod = $this->createPaymentMethod($customer)) {
|
|
|
|
$customer->default_payment_method_id = $paymentMethod->id;
|
|
|
|
$customer->save();
|
|
|
|
$customer->load('payment_methods');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isTwoStep()
|
|
|
|
{
|
|
|
|
return $this->isGatewayType(GATEWAY_TYPE_BANK_TRANSFER) && empty($this->input['plaidPublicToken']);
|
|
|
|
}
|
|
|
|
|
2016-07-21 14:35:23 +02:00
|
|
|
protected function paymentDetails($paymentMethod = false)
|
2016-06-20 16:14:43 +02:00
|
|
|
{
|
|
|
|
$data = parent::paymentDetails($paymentMethod);
|
|
|
|
|
2016-06-26 12:45:50 +02:00
|
|
|
if ($paymentMethod) {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2016-06-28 20:21:54 +02:00
|
|
|
// Stripe complains if the email field is set
|
|
|
|
unset($data['email']);
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! empty($this->input['sourceToken'])) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$data['token'] = $this->input['sourceToken'];
|
|
|
|
unset($data['card']);
|
|
|
|
}
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! empty($this->input['plaidPublicToken'])) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$data['plaidPublicToken'] = $this->input['plaidPublicToken'];
|
|
|
|
$data['plaidAccountId'] = $this->input['plaidAccountId'];
|
|
|
|
unset($data['card']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function createToken()
|
|
|
|
{
|
|
|
|
$invoice = $this->invitation->invoice;
|
|
|
|
$client = $invoice->client;
|
|
|
|
|
|
|
|
$data = $this->paymentDetails();
|
|
|
|
$data['description'] = $client->getDisplayName();
|
|
|
|
|
2017-07-28 15:04:05 +02:00
|
|
|
// if a customer already exists link the token to it
|
|
|
|
if ($customer = $this->customer()) {
|
|
|
|
$data['customerReference'] = $customer->token;
|
|
|
|
// otherwise create a new customer
|
|
|
|
} else {
|
|
|
|
$response = $this->gateway()->createCustomer([
|
|
|
|
'description' => $client->getDisplayName(),
|
|
|
|
'email' => $this->contact()->email,
|
|
|
|
])->send();
|
|
|
|
$data['customerReference'] = $response->getCustomerReference();
|
|
|
|
}
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! empty($data['plaidPublicToken'])) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$plaidResult = $this->getPlaidToken($data['plaidPublicToken'], $data['plaidAccountId']);
|
|
|
|
unset($data['plaidPublicToken']);
|
|
|
|
unset($data['plaidAccountId']);
|
|
|
|
$data['token'] = $plaidResult['stripe_bank_account_token'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$tokenResponse = $this->gateway()
|
|
|
|
->createCard($data)
|
|
|
|
->send();
|
|
|
|
|
|
|
|
if ($tokenResponse->isSuccessful()) {
|
|
|
|
$this->tokenResponse = $tokenResponse->getData();
|
|
|
|
|
|
|
|
return parent::createToken();
|
|
|
|
} else {
|
|
|
|
throw new Exception($tokenResponse->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function creatingCustomer($customer)
|
|
|
|
{
|
2017-07-28 15:04:05 +02:00
|
|
|
if (isset($this->tokenResponse['customer'])) {
|
|
|
|
$customer->token = $this->tokenResponse['customer'];
|
|
|
|
} else {
|
|
|
|
$customer->token = $this->tokenResponse['id'];
|
|
|
|
}
|
2016-06-20 16:14:43 +02:00
|
|
|
|
|
|
|
return $customer;
|
|
|
|
}
|
|
|
|
|
2016-07-21 14:35:23 +02:00
|
|
|
protected function creatingPaymentMethod($paymentMethod)
|
2016-06-20 16:14:43 +02:00
|
|
|
{
|
|
|
|
$data = $this->tokenResponse;
|
2016-09-28 20:07:43 +02:00
|
|
|
$source = false;
|
2016-06-20 16:14:43 +02:00
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! empty($data['object']) && ($data['object'] == 'card' || $data['object'] == 'bank_account')) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$source = $data;
|
2017-01-30 20:40:43 +01:00
|
|
|
} elseif (! empty($data['object']) && $data['object'] == 'customer') {
|
|
|
|
$sources = ! empty($data['sources']) ? $data['sources'] : $data['cards'];
|
2016-06-20 16:14:43 +02:00
|
|
|
$source = reset($sources['data']);
|
2017-01-30 20:40:43 +01:00
|
|
|
} elseif (! empty($data['source'])) {
|
2016-09-28 20:07:43 +02:00
|
|
|
$source = $data['source'];
|
2017-01-30 20:40:43 +01:00
|
|
|
} elseif (! empty($data['card'])) {
|
2016-09-28 20:07:43 +02:00
|
|
|
$source = $data['card'];
|
2016-06-20 16:14:43 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! $source) {
|
2016-06-20 16:14:43 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$paymentMethod->source_reference = $source['id'];
|
|
|
|
$paymentMethod->last4 = $source['last4'];
|
|
|
|
|
2016-07-27 11:53:11 +02:00
|
|
|
// For older users the Stripe account may just have the customer token but not the card version
|
|
|
|
// In that case we'd use GATEWAY_TYPE_TOKEN even though we're creating the credit card
|
|
|
|
if ($this->isGatewayType(GATEWAY_TYPE_CREDIT_CARD) || $this->isGatewayType(GATEWAY_TYPE_TOKEN)) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$paymentMethod->expiration = $source['exp_year'] . '-' . $source['exp_month'] . '-01';
|
2017-08-31 14:55:15 +02:00
|
|
|
$paymentMethod->payment_type_id = PaymentType::parseCardType($source['brand']);
|
2016-06-20 16:14:43 +02:00
|
|
|
} elseif ($this->isGatewayType(GATEWAY_TYPE_BANK_TRANSFER)) {
|
|
|
|
$paymentMethod->routing_number = $source['routing_number'];
|
|
|
|
$paymentMethod->payment_type_id = PAYMENT_TYPE_ACH;
|
|
|
|
$paymentMethod->status = $source['status'];
|
|
|
|
$currency = Cache::get('currencies')->where('code', strtoupper($source['currency']))->first();
|
|
|
|
|
|
|
|
if ($currency) {
|
|
|
|
$paymentMethod->currency_id = $currency->id;
|
|
|
|
$paymentMethod->setRelation('currency', $currency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $paymentMethod;
|
|
|
|
}
|
|
|
|
|
2016-07-21 14:35:23 +02:00
|
|
|
protected function creatingPayment($payment, $paymentMethod)
|
2016-06-20 16:14:43 +02:00
|
|
|
{
|
2016-06-23 19:17:02 +02:00
|
|
|
if ($this->isGatewayType(GATEWAY_TYPE_BANK_TRANSFER, $paymentMethod)) {
|
2016-07-21 14:35:23 +02:00
|
|
|
$payment->payment_status_id = $this->purchaseResponse['status'] == 'succeeded' ? PAYMENT_STATUS_COMPLETED : PAYMENT_STATUS_PENDING;
|
2016-06-20 16:14:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $payment;
|
|
|
|
}
|
|
|
|
|
2016-07-21 14:35:23 +02:00
|
|
|
public function removePaymentMethod($paymentMethod)
|
2016-06-20 16:14:43 +02:00
|
|
|
{
|
2016-06-24 14:40:10 +02:00
|
|
|
parent::removePaymentMethod($paymentMethod);
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! $paymentMethod->relationLoaded('account_gateway_token')) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$paymentMethod->load('account_gateway_token');
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = $this->gateway()->deleteCard([
|
|
|
|
'customerReference' => $paymentMethod->account_gateway_token->token,
|
2017-01-30 20:40:43 +01:00
|
|
|
'cardReference' => $paymentMethod->source_reference,
|
2016-06-20 16:14:43 +02:00
|
|
|
])->send();
|
|
|
|
|
|
|
|
if ($response->isSuccessful()) {
|
2016-06-24 14:40:10 +02:00
|
|
|
return true;
|
2016-06-20 16:14:43 +02:00
|
|
|
} else {
|
|
|
|
throw new Exception($response->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getPlaidToken($publicToken, $accountId)
|
|
|
|
{
|
|
|
|
$clientId = $this->accountGateway->getPlaidClientId();
|
|
|
|
$secret = $this->accountGateway->getPlaidSecret();
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $clientId) {
|
2016-06-20 16:14:43 +02:00
|
|
|
throw new Exception('plaid client id not set'); // TODO use text strings
|
|
|
|
}
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $secret) {
|
2016-06-20 16:14:43 +02:00
|
|
|
throw new Exception('plaid secret not set');
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$subdomain = $this->accountGateway->getPlaidEnvironment() == 'production' ? 'api' : 'tartan';
|
2017-01-30 20:40:43 +01:00
|
|
|
$response = (new \GuzzleHttp\Client(['base_uri' => "https://{$subdomain}.plaid.com"]))->request(
|
2016-06-20 16:14:43 +02:00
|
|
|
'POST',
|
|
|
|
'exchange_token',
|
|
|
|
[
|
|
|
|
'allow_redirects' => false,
|
2017-01-30 20:40:43 +01:00
|
|
|
'headers' => ['content-type' => 'application/x-www-form-urlencoded'],
|
2016-07-03 18:11:58 +02:00
|
|
|
'body' => http_build_query([
|
2016-06-20 16:14:43 +02:00
|
|
|
'client_id' => $clientId,
|
|
|
|
'secret' => $secret,
|
|
|
|
'public_token' => $publicToken,
|
|
|
|
'account_id' => $accountId,
|
2017-01-30 20:40:43 +01:00
|
|
|
]),
|
2016-06-20 16:14:43 +02:00
|
|
|
]
|
|
|
|
);
|
2017-01-30 20:40:43 +01:00
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
return json_decode($response->getBody(), true);
|
|
|
|
} catch (\GuzzleHttp\Exception\BadResponseException $e) {
|
|
|
|
$response = $e->getResponse();
|
|
|
|
$body = json_decode($response->getBody(), true);
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if ($body && ! empty($body['message'])) {
|
2016-06-20 16:14:43 +02:00
|
|
|
throw new Exception($body['message']);
|
|
|
|
} else {
|
|
|
|
throw new Exception($e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function verifyBankAccount($client, $publicId, $amount1, $amount2)
|
|
|
|
{
|
|
|
|
$customer = $this->customer($client->id);
|
|
|
|
$paymentMethod = PaymentMethod::clientId($client->id)
|
|
|
|
->wherePublicId($publicId)
|
|
|
|
->firstOrFail();
|
|
|
|
|
|
|
|
// Omnipay doesn't support verifying payment methods
|
|
|
|
// Also, it doesn't want to urlencode without putting numbers inside the brackets
|
|
|
|
$result = $this->makeStripeCall(
|
|
|
|
'POST',
|
|
|
|
'customers/' . $customer->token . '/sources/' . $paymentMethod->source_reference . '/verify',
|
|
|
|
'amounts[]=' . intval($amount1) . '&amounts[]=' . intval($amount2)
|
|
|
|
);
|
|
|
|
|
2017-06-01 20:36:26 +02:00
|
|
|
if (is_string($result) && $result != 'This bank account has already been verified.') {
|
2016-06-20 16:14:43 +02:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
$paymentMethod->status = PAYMENT_METHOD_STATUS_VERIFIED;
|
|
|
|
$paymentMethod->save();
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! $customer->default_payment_method_id) {
|
2016-06-20 16:14:43 +02:00
|
|
|
$customer->default_payment_method_id = $paymentMethod->id;
|
|
|
|
$customer->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-04 12:14:58 +02:00
|
|
|
public function createSource()
|
|
|
|
{
|
|
|
|
$amount = intval($this->invoice()->getRequestedAmount() * 100);
|
|
|
|
$currency = $this->client()->getCurrencyCode();
|
|
|
|
$gatewayType = GatewayType::getAliasFromId($this->gatewayType);
|
|
|
|
$redirect = url("/complete_source/{$this->invitation->invitation_key}/{$gatewayType}");
|
|
|
|
$email = $this->contact()->email;
|
|
|
|
|
|
|
|
$data = "type=alipay&amount={$amount}¤cy={$currency}&redirect[return_url]={$redirect}&owner[email]={$email}";
|
|
|
|
$response = $this->makeStripeCall('POST', 'sources', $data);
|
|
|
|
|
|
|
|
$this->invitation->transaction_reference = $response['id'];
|
|
|
|
$this->invitation->save();
|
|
|
|
|
|
|
|
return redirect($response['redirect']['url']);
|
|
|
|
}
|
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
public function makeStripeCall($method, $url, $body = null)
|
|
|
|
{
|
|
|
|
$apiKey = $this->accountGateway->getConfig()->apiKey;
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $apiKey) {
|
2016-06-20 16:14:43 +02:00
|
|
|
return 'No API key set';
|
|
|
|
}
|
|
|
|
|
2017-01-30 17:05:31 +01:00
|
|
|
try {
|
2016-06-20 16:14:43 +02:00
|
|
|
$options = [
|
2017-01-30 20:40:43 +01:00
|
|
|
'headers' => ['content-type' => 'application/x-www-form-urlencoded'],
|
2016-06-20 16:14:43 +02:00
|
|
|
'auth' => [$apiKey, ''],
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($body) {
|
|
|
|
$options['body'] = $body;
|
|
|
|
}
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
$response = (new \GuzzleHttp\Client(['base_uri' => 'https://api.stripe.com/v1/']))->request(
|
2016-06-20 16:14:43 +02:00
|
|
|
$method,
|
|
|
|
$url,
|
|
|
|
$options
|
|
|
|
);
|
2017-01-30 20:40:43 +01:00
|
|
|
|
2016-06-20 16:14:43 +02:00
|
|
|
return json_decode($response->getBody(), true);
|
|
|
|
} catch (\GuzzleHttp\Exception\BadResponseException $e) {
|
|
|
|
$response = $e->getResponse();
|
|
|
|
|
|
|
|
$body = json_decode($response->getBody(), true);
|
|
|
|
if ($body && $body['error'] && $body['error']['type'] == 'invalid_request_error') {
|
|
|
|
return $body['error']['message'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
2016-06-23 15:15:52 +02:00
|
|
|
|
2016-06-23 15:27:54 +02:00
|
|
|
public function handleWebHook($input)
|
2016-06-23 15:15:52 +02:00
|
|
|
{
|
2017-09-04 12:14:58 +02:00
|
|
|
if (\Utils::isNinjaDev()) {
|
|
|
|
\Log::info("WEB HOOK: {$eventType} {$eventId}");
|
|
|
|
}
|
|
|
|
|
2016-06-23 15:15:52 +02:00
|
|
|
$eventId = array_get($input, 'id');
|
2017-01-30 20:40:43 +01:00
|
|
|
$eventType = array_get($input, 'type');
|
2016-06-23 15:15:52 +02:00
|
|
|
|
|
|
|
$accountGateway = $this->accountGateway;
|
|
|
|
$accountId = $accountGateway->account_id;
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $eventId) {
|
2016-06-23 15:15:52 +02:00
|
|
|
throw new Exception('Missing event id');
|
|
|
|
}
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $eventType) {
|
2016-06-23 15:15:52 +02:00
|
|
|
throw new Exception('Missing event type');
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
$supportedEvents = [
|
2016-06-23 15:15:52 +02:00
|
|
|
'charge.failed',
|
|
|
|
'charge.succeeded',
|
2016-06-24 14:40:10 +02:00
|
|
|
'charge.refunded',
|
2016-06-23 15:15:52 +02:00
|
|
|
'customer.source.updated',
|
|
|
|
'customer.source.deleted',
|
2016-06-24 14:40:10 +02:00
|
|
|
'customer.bank_account.deleted',
|
2017-09-04 12:50:09 +02:00
|
|
|
'source.chargeable',
|
2016-07-03 18:11:58 +02:00
|
|
|
];
|
2016-06-23 15:15:52 +02:00
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! in_array($eventType, $supportedEvents)) {
|
2016-07-03 18:11:58 +02:00
|
|
|
return ['message' => 'Ignoring event'];
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the event directly from Stripe for security
|
|
|
|
$eventDetails = $this->makeStripeCall('GET', 'events/'.$eventId);
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (is_string($eventDetails) || ! $eventDetails) {
|
2016-08-13 21:19:37 +02:00
|
|
|
return false;
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($eventType != $eventDetails['type']) {
|
2016-08-13 21:19:37 +02:00
|
|
|
return false;
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $eventDetails['pending_webhooks']) {
|
2016-08-13 21:19:37 +02:00
|
|
|
return false;
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
2016-06-24 14:40:10 +02:00
|
|
|
if ($eventType == 'charge.failed' || $eventType == 'charge.succeeded' || $eventType == 'charge.refunded') {
|
2016-06-23 15:15:52 +02:00
|
|
|
$charge = $eventDetails['data']['object'];
|
|
|
|
$transactionRef = $charge['id'];
|
|
|
|
|
|
|
|
$payment = Payment::scope(false, $accountId)->where('transaction_reference', '=', $transactionRef)->first();
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $payment) {
|
2016-08-13 21:19:37 +02:00
|
|
|
return false;
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($eventType == 'charge.failed') {
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $payment->isFailed()) {
|
2016-06-23 15:15:52 +02:00
|
|
|
$payment->markFailed($charge['failure_message']);
|
|
|
|
|
|
|
|
$userMailer = app('App\Ninja\Mailers\UserMailer');
|
|
|
|
$userMailer->sendNotification($payment->user, $payment->invoice, 'payment_failed', $payment);
|
|
|
|
}
|
|
|
|
} elseif ($eventType == 'charge.succeeded') {
|
|
|
|
$payment->markComplete();
|
|
|
|
} elseif ($eventType == 'charge.refunded') {
|
|
|
|
$payment->recordRefund($charge['amount_refunded'] / 100 - $payment->refunded);
|
|
|
|
}
|
2017-01-30 17:05:31 +01:00
|
|
|
} elseif ($eventType == 'customer.source.updated' || $eventType == 'customer.source.deleted' || $eventType == 'customer.bank_account.deleted') {
|
2016-06-23 15:15:52 +02:00
|
|
|
$source = $eventDetails['data']['object'];
|
|
|
|
$sourceRef = $source['id'];
|
|
|
|
|
|
|
|
$paymentMethod = PaymentMethod::scope(false, $accountId)->where('source_reference', '=', $sourceRef)->first();
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! $paymentMethod) {
|
2016-09-12 07:51:41 +02:00
|
|
|
return false;
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
2016-06-24 14:40:10 +02:00
|
|
|
if ($eventType == 'customer.source.deleted' || $eventType == 'customer.bank_account.deleted') {
|
2016-06-23 15:15:52 +02:00
|
|
|
$paymentMethod->delete();
|
|
|
|
} elseif ($eventType == 'customer.source.updated') {
|
2016-06-28 20:21:54 +02:00
|
|
|
//$this->paymentService->convertPaymentMethodFromStripe($source, null, $paymentMethod)->save();
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
2017-09-04 12:50:09 +02:00
|
|
|
} elseif ($eventType == 'source.chargeable') {
|
|
|
|
$source = $eventDetails['data']['object'];
|
|
|
|
$data = sprintf('amount=%d¤cy=%s&source=%s', $sorce['amount'], $source['currency'], $source['id']);
|
|
|
|
$response = $this->makeStripeCall('POST', 'charges', $data);
|
|
|
|
\Log::info('post charge reponse: ' . print_r($response, true));
|
2016-06-23 15:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 'Processed successfully';
|
|
|
|
}
|
2016-06-20 16:14:43 +02:00
|
|
|
}
|