braintree = $braintree; $this->braintree->init(); } public function authorizeView(array $data) { $data['gateway'] = $this->braintree; return render('gateways.braintree.paypal.authorize', $data); } public function authorizeResponse($data): \Illuminate\Http\RedirectResponse { return back(); } /** * Credit card payment page. * * @param array $data * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View */ public function paymentView(array $data) { $data['gateway'] = $this->braintree; $data['client_token'] = $this->braintree->gateway->clientToken()->generate(); return render('gateways.braintree.paypal.pay', $data); } public function paymentResponse(PaymentResponseRequest $request) { $state = [ 'server_response' => json_decode($request->gateway_response), 'payment_hash' => $request->payment_hash, ]; $state = array_merge($state, $request->all()); $state['store_card'] = boolval($state['store_card']); $this->braintree->payment_hash->data = array_merge((array)$this->braintree->payment_hash->data, $state); $this->braintree->payment_hash->save(); $customer = $this->braintree->findOrCreateCustomer(); $token = $this->getPaymentToken($request->all(), $customer->id); $result = $this->braintree->gateway->transaction()->sale([ 'amount' => $this->braintree->payment_hash->data->amount_with_fee, 'paymentMethodToken' => $token, 'deviceData' => $state['client-data'], 'options' => [ 'submitForSettlement' => True, 'paypal' => [ 'description' => 'Meaningful description.', ] ], ]); if ($result->success) { $this->braintree->logSuccessfulGatewayResponse( ['response' => $request->server_response, 'data' => $this->braintree->payment_hash], SystemLog::TYPE_BRAINTREE ); if ($request->store_card && is_null($request->token)) { $payment_method = $this->braintree->gateway->paymentMethod()->find($token); $this->storePaymentMethod($payment_method, $customer->id); } return $this->processSuccessfulPayment($result); } return $this->processUnsuccessfulPayment($result); } private function getPaymentToken(array $data, string $customerId) { if (array_key_exists('token', $data) && !is_null($data['token'])) { return $data['token']; } $gateway_response = json_decode($data['gateway_response']); $payment_method = $this->braintree->gateway->paymentMethod()->create([ 'customerId' => $customerId, 'paymentMethodNonce' => $gateway_response->nonce, ]); return $payment_method->paymentMethod->token; } /** * Process & complete the successful PayPal transaction. * * @param $response * @return \Illuminate\Http\RedirectResponse */ private function processSuccessfulPayment($response): \Illuminate\Http\RedirectResponse { $state = $this->braintree->payment_hash->data; $data = [ 'payment_type' => PaymentType::PAYPAL, 'amount' => $this->braintree->payment_hash->data->amount_with_fee, 'transaction_reference' => $response->transaction->id, 'gateway_type_id' => GatewayType::PAYPAL, ]; $payment = $this->braintree->createPayment($data, Payment::STATUS_COMPLETED); SystemLogger::dispatch( ['response' => $response, 'data' => $data], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_BRAINTREE, $this->braintree->client ); return redirect()->route('client.payments.show', ['payment' => $this->braintree->encodePrimaryKey($payment->id)]); } private function processUnsuccessfulPayment($response) { PaymentFailureMailer::dispatch($this->braintree->client, $response->message, $this->braintree->client->company, $this->braintree->payment_hash->data->amount_with_fee); PaymentFailureMailer::dispatch( $this->braintree->client, $response, $this->braintree->client->company, $this->braintree->payment_hash->data->amount_with_fee, ); $message = [ 'server_response' => $response, 'data' => $this->braintree->payment_hash->data, ]; SystemLogger::dispatch( $message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_BRAINTREE, $this->braintree->client ); throw new PaymentFailed($response->message, 0); } private function storePaymentMethod($method, string $customer_reference) { try { $payment_meta = new \stdClass; $payment_meta->email = (string)$method->email; $payment_meta->type = GatewayType::PAYPAL; $data = [ 'payment_meta' => $payment_meta, 'token' => $method->token, 'payment_method_id' => $this->braintree->payment_hash->data->payment_method_id, ]; $this->braintree->storeGatewayToken($data, ['gateway_customer_reference' => $customer_reference]); } catch (\Exception $e) { return $this->braintree->processInternallyFailedPayment($this->braintree, $e); } } }