!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)

/uploads/script/vendor/composer/composer/src/Composer/Package/Version/   drwxr-xr-x
Free 13.42 GB of 57.97 GB (23.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\Package\Version;

use 
Composer\Config;
use 
Composer\Repository\Vcs\HgDriver;
use 
Composer\IO\NullIO;
use 
Composer\Semver\VersionParser as SemverVersionParser;
use 
Composer\Util\Git as GitUtil;
use 
Composer\Util\HttpDownloader;
use 
Composer\Util\ProcessExecutor;
use 
Composer\Util\Svn as SvnUtil;

/**
 * Try to guess the current version number based on different VCS configuration.
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Samuel Roze <samuel.roze@gmail.com>
 */
class VersionGuesser
{
    
/**
     * @var Config
     */
    
private $config;

    
/**
     * @var ProcessExecutor
     */
    
private $process;

    
/**
     * @var SemverVersionParser
     */
    
private $versionParser;

    
/**
     * @param Config              $config
     * @param ProcessExecutor     $process
     * @param SemverVersionParser $versionParser
     */
    
public function __construct(Config $configProcessExecutor $processSemverVersionParser $versionParser)
    {
        
$this->config $config;
        
$this->process $process;
        
$this->versionParser $versionParser;
    }

    
/**
     * @param array  $packageConfig
     * @param string $path          Path to guess into
     *
     * @return null|array versionData, 'version', 'pretty_version' and 'commit' keys, if the version is a feature branch, 'feature_version' and 'feature_pretty_version' keys may also be returned
     */
    
public function guessVersion(array $packageConfig$path)
    {
        if (!
function_exists('proc_open')) {
            return 
null;
        }

        
$versionData $this->guessGitVersion($packageConfig$path);
        if (
null !== $versionData && null !== $versionData['version']) {
            return 
$this->postprocess($versionData);
        }

        
$versionData $this->guessHgVersion($packageConfig$path);
        if (
null !== $versionData && null !== $versionData['version']) {
            return 
$this->postprocess($versionData);
        }

        
$versionData $this->guessFossilVersion($path);
        if (
null !== $versionData && null !== $versionData['version']) {
            return 
$this->postprocess($versionData);
        }

        
$versionData $this->guessSvnVersion($packageConfig$path);
        if (
null !== $versionData && null !== $versionData['version']) {
            return 
$this->postprocess($versionData);
        }

        return 
null;
    }

    private function 
postprocess(array $versionData)
    {
        if (!empty(
$versionData['feature_version']) && $versionData['feature_version'] === $versionData['version'] && $versionData['feature_pretty_version'] === $versionData['pretty_version']) {
            unset(
$versionData['feature_version'], $versionData['feature_pretty_version']);
        }

        if (
'-dev' === substr($versionData['version'], -4) && preg_match('{\.9{7}}'$versionData['version'])) {
            
$versionData['pretty_version'] = preg_replace('{(\.9{7})+}''.x'$versionData['version']);
        }

        if (!empty(
$versionData['feature_version']) && '-dev' === substr($versionData['feature_version'], -4) && preg_match('{\.9{7}}'$versionData['feature_version'])) {
            
$versionData['feature_pretty_version'] = preg_replace('{(\.9{7})+}''.x'$versionData['feature_version']);
        }

        return 
$versionData;
    }

    private function 
guessGitVersion(array $packageConfig$path)
    {
        
GitUtil::cleanEnv();
        
$commit null;
        
$version null;
        
$prettyVersion null;
        
$featureVersion null;
        
$featurePrettyVersion null;
        
$isDetached false;

        
// try to fetch current version from git branch
        
if (=== $this->process->execute('git branch -a --no-color --no-abbrev -v'$output$path)) {
            
$branches = array();
            
$isFeatureBranch false;

            
// find current branch and collect all branch names
            
foreach ($this->process->splitLines($output) as $branch) {
                if (
$branch && preg_match('{^(?:\* ) *(\(no branch\)|\(detached from \S+\)|\(HEAD detached at \S+\)|\S+) *([a-f0-9]+) .*$}'$branch$match)) {
                    if (
                        
$match[1] === '(no branch)'
                        
|| strpos($match[1], '(detached ') === 0
                        
|| strpos($match[1], '(HEAD detached at') === 0
                    
) {
                        
$version 'dev-' $match[2];
                        
$prettyVersion $version;
                        
$isFeatureBranch true;
                        
$isDetached true;
                    } else {
                        
$version $this->versionParser->normalizeBranch($match[1]);
                        
$prettyVersion 'dev-' $match[1];
                        
$isFeatureBranch $this->isFeatureBranch($packageConfig$match[1]);
                    }

                    if (
$match[2]) {
                        
$commit $match[2];
                    }
                }

                if (
$branch && !preg_match('{^ *.+/HEAD }'$branch)) {
                    if (
preg_match('{^(?:\* )? *((?:remotes/(?:origin|upstream)/)?[^\s/]+) *([a-f0-9]+) .*$}'$branch$match)) {
                        
$branches[] = $match[1];
                    }
                }
            }

            if (
$isFeatureBranch) {
                
$featureVersion $version;
                
$featurePrettyVersion $prettyVersion;

                
// try to find the best (nearest) version branch to assume this feature's version
                
$result $this->guessFeatureVersion($packageConfig$version$branches'git rev-list %candidate%..%branch%'$path);
                
$version $result['version'];
                
$prettyVersion $result['pretty_version'];
            }
        }

        if (!
$version || $isDetached) {
            
$result $this->versionFromGitTags($path);
            if (
$result) {
                
$version $result['version'];
                
$prettyVersion $result['pretty_version'];
                
$featureVersion null;
                
$featurePrettyVersion null;
            }
        }

        if (!
$commit) {
            
$command 'git log --pretty="%H" -n1 HEAD'.GitUtil::getNoShowSignatureFlag($this->process);
            if (
=== $this->process->execute($command$output$path)) {
                
$commit trim($output) ?: null;
            }
        }

        if (
$featureVersion) {
            return array(
'version' => $version'commit' => $commit'pretty_version' => $prettyVersion'feature_version' => $featureVersion'feature_pretty_version' => $featurePrettyVersion);
        }

        return array(
'version' => $version'commit' => $commit'pretty_version' => $prettyVersion);
    }

    private function 
versionFromGitTags($path)
    {
        
// try to fetch current version from git tags
        
if (=== $this->process->execute('git describe --exact-match --tags'$output$path)) {
            try {
                
$version $this->versionParser->normalize(trim($output));

                return array(
'version' => $version'pretty_version' => trim($output));
            } catch (
\Exception $e) {
            }
        }

        return 
null;
    }

    private function 
guessHgVersion(array $packageConfig$path)
    {
        
// try to fetch current version from hg branch
        
if (=== $this->process->execute('hg branch'$output$path)) {
            
$branch trim($output);
            
$version $this->versionParser->normalizeBranch($branch);
            
$isFeatureBranch === strpos($version'dev-');

            if (
VersionParser::DEFAULT_BRANCH_ALIAS === $version) {
                return array(
'version' => $version'commit' => null'pretty_version' => 'dev-'.$branch);
            }

            if (!
$isFeatureBranch) {
                return array(
'version' => $version'commit' => null'pretty_version' => $version);
            }

            
// re-use the HgDriver to fetch branches (this properly includes bookmarks)
            
$io = new NullIO();
            
$driver = new HgDriver(array('url' => $path), $io$this->config, new HttpDownloader($io$this->config), $this->process);
            
$branches array_keys($driver->getBranches());

            
// try to find the best (nearest) version branch to assume this feature's version
            
$result $this->guessFeatureVersion($packageConfig$version$branches'hg log -r "not ancestors(\'%candidate%\') and ancestors(\'%branch%\')" --template "{node}\\n"'$path);
            
$result['commit'] = '';
            
$result['feature_version'] = $version;
            
$result['feature_pretty_version'] = $version;

            return 
$result;
        }
    }

    private function 
guessFeatureVersion(array $packageConfig$version, array $branches$scmCmdline$path)
    {
        
$prettyVersion $version;

        
// ignore feature branches if they have no branch-alias or self.version is used
        // and find the branch they came from to use as a version instead
        
if (!isset($packageConfig['extra']['branch-alias'][$version])
            || 
strpos(json_encode($packageConfig), '"self.version"')
        ) {
            
$branch preg_replace('{^dev-}'''$version);
            
$length PHP_INT_MAX;

            
// return directly, if branch is configured to be non-feature branch
            
if (!$this->isFeatureBranch($packageConfig$branch)) {
                return array(
'version' => $version'pretty_version' => $prettyVersion);
            }

            
// sort local branches first then remote ones
            // and sort numeric branches below named ones, to make sure if the branch has the same distance from main and 1.10 and 1.9 for example, main is picked
            // and sort using natural sort so that 1.10 will appear before 1.9
            
usort($branches, function ($a$b) {
                
$aRemote === strpos($a'remotes/');
                
$bRemote === strpos($b'remotes/');

                if (
$aRemote !== $bRemote) {
                    return 
$aRemote : -1;
                }

                return 
strnatcasecmp($b$a);
            });

            foreach (
$branches as $candidate) {
                
$candidateVersion preg_replace('{^remotes/\S+/}'''$candidate);

                
// do not compare against itself or other feature branches
                
if ($candidate === $branch || $this->isFeatureBranch($packageConfig$candidateVersion)) {
                    continue;
                }

                
$cmdLine str_replace(array('%candidate%''%branch%'), array($candidate$branch), $scmCmdline);
                if (
!== $this->process->execute($cmdLine$output$path)) {
                    continue;
                }

                if (
strlen($output) < $length) {
                    
$length strlen($output);
                    
$version $this->versionParser->normalizeBranch($candidateVersion);
                    
$prettyVersion 'dev-' $candidateVersion;
                    if (
$length === 0) {
                        break;
                    }
                }
            }
        }

        return array(
'version' => $version'pretty_version' => $prettyVersion);
    }

    private function 
isFeatureBranch(array $packageConfig$branchName)
    {
        
$nonFeatureBranches '';
        if (!empty(
$packageConfig['non-feature-branches'])) {
            
$nonFeatureBranches implode('|'$packageConfig['non-feature-branches']);
        }

        return !
preg_match('{^(' $nonFeatureBranches '|master|main|latest|next|current|support|tip|trunk|default|develop|\d+\..+)$}'$branchName$match);
    }

    private function 
guessFossilVersion($path)
    {
        
$version null;
        
$prettyVersion null;

        
// try to fetch current version from fossil
        
if (=== $this->process->execute('fossil branch list'$output$path)) {
            
$branch trim($output);
            
$version $this->versionParser->normalizeBranch($branch);
            
$prettyVersion 'dev-' $branch;
        }

        
// try to fetch current version from fossil tags
        
if (=== $this->process->execute('fossil tag list'$output$path)) {
            try {
                
$version $this->versionParser->normalize(trim($output));
                
$prettyVersion trim($output);
            } catch (
\Exception $e) {
            }
        }

        return array(
'version' => $version'commit' => '''pretty_version' => $prettyVersion);
    }

    private function 
guessSvnVersion(array $packageConfig$path)
    {
        
SvnUtil::cleanEnv();

        
// try to fetch current version from svn
        
if (=== $this->process->execute('svn info --xml'$output$path)) {
            
$trunkPath = isset($packageConfig['trunk-path']) ? preg_quote($packageConfig['trunk-path'], '#') : 'trunk';
            
$branchesPath = isset($packageConfig['branches-path']) ? preg_quote($packageConfig['branches-path'], '#') : 'branches';
            
$tagsPath = isset($packageConfig['tags-path']) ? preg_quote($packageConfig['tags-path'], '#') : 'tags';

            
$urlPattern '#<url>.*/(' $trunkPath '|(' $branchesPath '|' $tagsPath ')/(.*))</url>#';

            if (
preg_match($urlPattern$output$matches)) {
                if (isset(
$matches[2]) && ($branchesPath === $matches[2] || $tagsPath === $matches[2])) {
                    
// we are in a branches path
                    
$version $this->versionParser->normalizeBranch($matches[3]);
                    
$prettyVersion 'dev-' $matches[3];

                    return array(
'version' => $version'commit' => '''pretty_version' => $prettyVersion);
                }

                
$prettyVersion trim($matches[1]);
                if (
$prettyVersion === 'trunk') {
                    
$version 'dev-trunk';
                } else {
                    
$version $this->versionParser->normalize($prettyVersion);
                }

                return array(
'version' => $version'commit' => '''pretty_version' => $prettyVersion);
            }
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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