[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: PayPalHttpClient.php
<?php namespace Srmklive\PayPal\Traits; use GuzzleHttp\Client as HttpClient; use GuzzleHttp\Exception\ClientException as HttpClientException; use GuzzleHttp\Utils; use Psr\Http\Message\StreamInterface; use RuntimeException; use Srmklive\PayPal\Services\Str; trait PayPalHttpClient { /** * Http Client class object. * * @var HttpClient */ private $client; /** * Http Client configuration. * * @var array */ private $httpClientConfig; /** * PayPal API Endpoint. * * @var string */ private $apiUrl; /** * PayPal API Endpoint. * * @var string */ private $apiEndPoint; /** * IPN notification url for PayPal. * * @var string */ private $notifyUrl; /** * Http Client request body parameter name. * * @var string */ private $httpBodyParam; /** * Default payment action for PayPal. * * @var string */ private $paymentAction; /** * Default locale for PayPal. * * @var string */ private $locale; /** * Validate SSL details when creating HTTP client. * * @var bool */ private $validateSSL; /** * Request type. * * @var string */ protected $verb = 'post'; /** * Set curl constants if not defined. * * @return void */ protected function setCurlConstants() { $constants = [ 'CURLOPT_SSLVERSION' => 32, 'CURL_SSLVERSION_TLSv1_2' => 6, 'CURLOPT_SSL_VERIFYPEER' => 64, 'CURLOPT_SSLCERT' => 10025, ]; foreach ($constants as $key => $item) { $this->defineCurlConstant($key, $item); } } /** * Declare a curl constant. * * @param string $key * @param string $value * * @return bool */ protected function defineCurlConstant(string $key, string $value) { return defined($key) ? true : define($key, $value); } /** * Function to initialize/override Http Client. * * @param \GuzzleHttp\Client|null $client * * @return void */ public function setClient(HttpClient $client = null) { if ($client instanceof HttpClient) { $this->client = $client; return; } $this->client = new HttpClient([ 'curl' => $this->httpClientConfig, ]); } /** * Function to set Http Client configuration. * * @return void */ protected function setHttpClientConfiguration() { $this->setCurlConstants(); $this->httpClientConfig = [ CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2, CURLOPT_SSL_VERIFYPEER => $this->validateSSL, ]; // Initialize Http Client $this->setClient(); // Set default values. $this->setDefaultValues(); // Set PayPal IPN Notification URL $this->notifyUrl = $this->config['notify_url']; } /** * Set default values for configuration. * * @return void */ private function setDefaultValues() { $paymentAction = empty($this->paymentAction) ? 'Sale' : $this->paymentAction; $this->paymentAction = $paymentAction; $locale = empty($this->locale) ? 'en_US' : $this->locale; $this->locale = $locale; $validateSSL = empty($this->validateSSL) ? true : $this->validateSSL; $this->validateSSL = $validateSSL; $this->showTotals(true); } /** * Perform PayPal API request & return response. * * @throws \Throwable * * @return StreamInterface */ private function makeHttpRequest(): StreamInterface { try { return $this->client->{$this->verb}( $this->apiUrl, $this->options )->getBody(); } catch (HttpClientException $e) { throw new RuntimeException($e->getResponse()->getBody()); } } /** * Function To Perform PayPal API Request. * * @param bool $decode * * @throws \Throwable * * @return array|StreamInterface|string */ private function doPayPalRequest(bool $decode = true) { try { $this->apiUrl = collect([$this->config['api_url'], $this->apiEndPoint])->implode('/'); // Perform PayPal HTTP API request. $response = $this->makeHttpRequest(); return ($decode === false) ? $response->getContents() : Utils::jsonDecode($response, true); } catch (RuntimeException $t) { $error = ($decode === false) || (Str::isJson($t->getMessage()) === false) ? $t->getMessage() : Utils::jsonDecode($t->getMessage(), true); return ['error' => $error]; } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.66 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002