!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html_v5_10/vendor/omnipay/paypal/src/Message/   drwxr-xr-x
Free 28.48 GB of 117.98 GB (24.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AbstractRestRequest.php (5.81 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * PayPal Abstract REST Request
 */

namespace Omnipay\PayPal\Message;

use 
Omnipay\Common\Exception\InvalidResponseException;

/**
 * PayPal Abstract REST Request
 *
 * This class forms the base class for PayPal REST requests via the PayPal REST APIs.
 *
 * A complete REST operation is formed by combining an HTTP method (or “verb”) with
 * the full URI to the resource you’re addressing. For example, here is the operation
 * to create a new payment:
 *
 * <code>
 * POST https://api.paypal.com/v1/payments/payment
 * </code>
 *
 * To create a complete request, combine the operation with the appropriate HTTP headers
 * and any required JSON payload.
 *
 * @link https://developer.paypal.com/docs/api/
 * @link https://devtools-paypal.com/integrationwizard/
 * @link http://paypal.github.io/sdk/
 * @see Omnipay\PayPal\RestGateway
 */
abstract class AbstractRestRequest extends \Omnipay\Common\Message\AbstractRequest
{
    const 
API_VERSION 'v1';

    
/**
     * Sandbox Endpoint URL
     *
     * The PayPal REST APIs are supported in two environments. Use the Sandbox environment
     * for testing purposes, then move to the live environment for production processing.
     * When testing, generate an access token with your test credentials to make calls to
     * the Sandbox URIs. When you’re set to go live, use the live credentials assigned to
     * your app to generate a new access token to be used with the live URIs.
     *
     * @var string URL
     */
    
protected $testEndpoint 'https://api.sandbox.paypal.com';

    
/**
     * Live Endpoint URL
     *
     * When you’re set to go live, use the live credentials assigned to
     * your app to generate a new access token to be used with the live URIs.
     *
     * @var string URL
     */
    
protected $liveEndpoint 'https://api.paypal.com';

    
/**
     * PayPal Payer ID
     *
     * @var string PayerID
     */
    
protected $payerId null;

    public function 
getClientId()
    {
        return 
$this->getParameter('clientId');
    }

    public function 
setClientId($value)
    {
        return 
$this->setParameter('clientId'$value);
    }

    public function 
getSecret()
    {
        return 
$this->getParameter('secret');
    }

    public function 
setSecret($value)
    {
        return 
$this->setParameter('secret'$value);
    }

    public function 
getToken()
    {
        return 
$this->getParameter('token');
    }

    public function 
setToken($value)
    {
        return 
$this->setParameter('token'$value);
    }

    public function 
getPayerId()
    {
        return 
$this->getParameter('payerId');
    }

    public function 
setPayerId($value)
    {
        return 
$this->setParameter('payerId'$value);
    }

    
/**
     * Get HTTP Method.
     *
     * This is nearly always POST but can be over-ridden in sub classes.
     *
     * @return string
     */
    
protected function getHttpMethod()
    {
        return 
'POST';
    }

    protected function 
getEndpoint()
    {
        
$base $this->getTestMode() ? $this->testEndpoint $this->liveEndpoint;
        return 
$base '/' self::API_VERSION;
    }

    public function 
sendData($data)
    {

        
// Guzzle HTTP Client createRequest does funny things when a GET request
        // has attached data, so don't send the data if the method is GET.
        
if ($this->getHttpMethod() == 'GET') {
            
$requestUrl $this->getEndpoint() . '?' http_build_query($data);
            
$body null;
        } else {
            
$body $this->toJSON($data);
            
$requestUrl $this->getEndpoint();
        }

        
// Might be useful to have some debug code here, PayPal especially can be
        // a bit fussy about data formats and ordering.  Perhaps hook to whatever
        // logging engine is being used.
        // echo "Data == " . json_encode($data) . "\n";

        
try {
            
$httpResponse $this->httpClient->request(
                
$this->getHttpMethod(),
                
$this->getEndpoint(),
                array(
                    
'Accept' => 'application/json',
                    
'Authorization' => 'Bearer ' $this->getToken(),
                    
'Content-type' => 'application/json',
                ),
                
$body
            
);
            
// Empty response body should be parsed also as and empty array
            
$body = (string) $httpResponse->getBody()->getContents();
            
$jsonToArrayResponse = !empty($body) ? json_decode($bodytrue) : array();
            return 
$this->response $this->createResponse($jsonToArrayResponse$httpResponse->getStatusCode());
        } catch (
\Exception $e) {
            throw new 
InvalidResponseException(
                
'Error communicating with payment gateway: ' $e->getMessage(),
                
$e->getCode()
            );
        }
    }

    
/**
     * Returns object JSON representation required by PayPal.
     * The PayPal REST API requires the use of JSON_UNESCAPED_SLASHES.
     *
     * Adapted from the official PayPal REST API PHP SDK.
     * (https://github.com/paypal/PayPal-PHP-SDK/blob/master/lib/PayPal/Common/PayPalModel.php)
     *
     * @param int $options http://php.net/manual/en/json.constants.php
     * @return string
     */
    
public function toJSON($data$options 0)
    {
        
// Because of PHP Version 5.3, we cannot use JSON_UNESCAPED_SLASHES option
        // Instead we would use the str_replace command for now.
        // TODO: Replace this code with return json_encode($this->toArray(), $options | 64); once we support PHP >= 5.4
        
if (version_compare(phpversion(), '5.4.0''>=') === true) {
            return 
json_encode($data$options 64);
        }
        return 
str_replace('\\/''/'json_encode($data$options));
    }

    protected function 
createResponse($data$statusCode)
    {
        return 
$this->response = new RestResponse($this$data$statusCode);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0043 ]--