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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/dokan/script/vendor/composer/semver/src/Constraint/   drwxrwxrwx
Free 13.33 GB of 57.97 GB (22.99%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MultiConstraint.php (8.24 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of composer/semver.
 *
 * (c) Composer <https://github.com/composer>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Composer\Semver\Constraint;

/**
 * Defines a conjunctive or disjunctive set of constraints.
 */
class MultiConstraint implements ConstraintInterface
{
    
/** @var ConstraintInterface[] */
    
protected $constraints;

    
/** @var string|null */
    
protected $prettyString;

    
/** @var string|null */
    
protected $string;

    
/** @var bool */
    
protected $conjunctive;

    
/** @var Bound|null */
    
protected $lowerBound;

    
/** @var Bound|null */
    
protected $upperBound;

    
/**
     * @param ConstraintInterface[] $constraints A set of constraints
     * @param bool                  $conjunctive Whether the constraints should be treated as conjunctive or disjunctive
     *
     * @throws \InvalidArgumentException If less than 2 constraints are passed
     */
    
public function __construct(array $constraints$conjunctive true)
    {
        if (
\count($constraints) < 2) {
            throw new 
\InvalidArgumentException(
                
'Must provide at least two constraints for a MultiConstraint. Use '.
                
'the regular Constraint class for one constraint only or MatchAllConstraint for none. You may use '.
                
'MultiConstraint::create() which optimizes and handles those cases automatically.'
            
);
        }

        
$this->constraints $constraints;
        
$this->conjunctive $conjunctive;
    }

    
/**
     * @return ConstraintInterface[]
     */
    
public function getConstraints()
    {
        return 
$this->constraints;
    }

    
/**
     * @return bool
     */
    
public function isConjunctive()
    {
        return 
$this->conjunctive;
    }

    
/**
     * @return bool
     */
    
public function isDisjunctive()
    {
        return !
$this->conjunctive;
    }

    public function 
compile($otherOperator)
    {
        
$parts = array();
        foreach (
$this->constraints as $constraint) {
            
$code $constraint->compile($otherOperator);
            if (
$code === 'true') {
                if (!
$this->conjunctive) {
                    return 
'true';
                }
            } elseif (
$code === 'false') {
                if (
$this->conjunctive) {
                    return 
'false';
                }
            } else {
                
$parts[] = '('.$code.')';
            }
        }

        if (!
$parts) {
            return 
$this->conjunctive 'true' 'false';
        }

        return 
$this->conjunctive implode('&&'$parts) : implode('||'$parts);
    }

    
/**
     * @param ConstraintInterface $provider
     *
     * @return bool
     */
    
public function matches(ConstraintInterface $provider)
    {
        if (
false === $this->conjunctive) {
            foreach (
$this->constraints as $constraint) {
                if (
$provider->matches($constraint)) {
                    return 
true;
                }
            }

            return 
false;
        }

        foreach (
$this->constraints as $constraint) {
            if (!
$provider->matches($constraint)) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * @param string|null $prettyString
     */
    
public function setPrettyString($prettyString)
    {
        
$this->prettyString $prettyString;
    }

    
/**
     * @return string
     */
    
public function getPrettyString()
    {
        if (
$this->prettyString) {
            return 
$this->prettyString;
        }

        return (string) 
$this;
    }

    
/**
     * @return string
     */
    
public function __toString()
    {
        if (
$this->string !== null) {
            return 
$this->string;
        }

        
$constraints = array();
        foreach (
$this->constraints as $constraint) {
            
$constraints[] = (string) $constraint;
        }

        return 
$this->string '[' implode($this->conjunctive ' ' ' || '$constraints) . ']';
    }

    
/**
     * {@inheritDoc}
     */
    
public function getLowerBound()
    {
        
$this->extractBounds();

        return 
$this->lowerBound;
    }

    
/**
     * {@inheritDoc}
     */
    
public function getUpperBound()
    {
        
$this->extractBounds();

        return 
$this->upperBound;
    }

    
/**
     * Tries to optimize the constraints as much as possible, meaning
     * reducing/collapsing congruent constraints etc.
     * Does not necessarily return a MultiConstraint instance if
     * things can be reduced to a simple constraint
     *
     * @param ConstraintInterface[] $constraints A set of constraints
     * @param bool                  $conjunctive Whether the constraints should be treated as conjunctive or disjunctive
     *
     * @return ConstraintInterface
     */
    
public static function create(array $constraints$conjunctive true)
    {
        if (
=== \count($constraints)) {
            return new 
MatchAllConstraint();
        }

        if (
=== \count($constraints)) {
            return 
$constraints[0];
        }

        
$optimized self::optimizeConstraints($constraints$conjunctive);
        if (
$optimized !== null) {
            list(
$constraints$conjunctive) = $optimized;
            if (
\count($constraints) === 1) {
                return 
$constraints[0];
            }
        }

        return new 
self($constraints$conjunctive);
    }

    
/**
     * @return array|null
     */
    
private static function optimizeConstraints(array $constraints$conjunctive)
    {
        
// parse the two OR groups and if they are contiguous we collapse
        // them into one constraint
        // [>= 1 < 2] || [>= 2 < 3] || [>= 3 < 4] => [>= 1 < 4]
        
if (!$conjunctive) {
            
$left $constraints[0];
            
$mergedConstraints = array();
            
$optimized false;
            for (
$i 1$l \count($constraints); $i $l$i++) {
                
$right $constraints[$i];
                if (
                    
$left instanceof self
                    
&& $left->conjunctive
                    
&& $right instanceof self
                    
&& $right->conjunctive
                    
&& \count($left->constraints) === 2
                    
&& \count($right->constraints) === 2
                    
&& ($left0 = (string) $left->constraints[0])
                    && 
$left0[0] === '>' && $left0[1] === '='
                    
&& ($left1 = (string) $left->constraints[1])
                    && 
$left1[0] === '<'
                    
&& ($right0 = (string) $right->constraints[0])
                    && 
$right0[0] === '>' && $right0[1] === '='
                    
&& ($right1 = (string) $right->constraints[1])
                    && 
$right1[0] === '<'
                    
&& substr($left12) === substr($right03)
                ) {
                    
$optimized true;
                    
$left = new MultiConstraint(
                        array(
                            
$left->constraints[0],
                            
$right->constraints[1],
                        ),
                        
true);
                } else {
                    
$mergedConstraints[] = $left;
                    
$left $right;
                }
            }
            if (
$optimized) {
                
$mergedConstraints[] = $left;
                return array(
$mergedConstraintsfalse);
            }
        }

        
// TODO: Here's the place to put more optimizations

        
return null;
    }

    private function 
extractBounds()
    {
        if (
null !== $this->lowerBound) {
            return;
        }

        foreach (
$this->constraints as $constraint) {
            if (
null === $this->lowerBound && null === $this->upperBound) {
                
$this->lowerBound $constraint->getLowerBound();
                
$this->upperBound $constraint->getUpperBound();
                continue;
            }

            if (
$constraint->getLowerBound()->compareTo($this->lowerBound$this->isConjunctive() ? '>' '<')) {
                
$this->lowerBound $constraint->getLowerBound();
            }

            if (
$constraint->getUpperBound()->compareTo($this->upperBound$this->isConjunctive() ? '<' '>')) {
                
$this->upperBound $constraint->getUpperBound();
            }
        }
    }
}

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