!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/queuepro/vendor/league/commonmark/src/Extension/CommonMark/Parser/Inline/   drwxrwxr-x
Free 13.19 GB of 57.97 GB (22.76%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CloseBracketParser.php (7.21 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 *
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
 *  - (c) John MacFarlane
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace League\CommonMark\Extension\CommonMark\Parser\Inline;

use 
League\CommonMark\Environment\EnvironmentAwareInterface;
use 
League\CommonMark\Environment\EnvironmentInterface;
use 
League\CommonMark\Extension\CommonMark\Node\Inline\AbstractWebResource;
use 
League\CommonMark\Extension\CommonMark\Node\Inline\Image;
use 
League\CommonMark\Extension\CommonMark\Node\Inline\Link;
use 
League\CommonMark\Extension\Mention\Mention;
use 
League\CommonMark\Node\Inline\AdjacentTextMerger;
use 
League\CommonMark\Node\Inline\Text;
use 
League\CommonMark\Parser\Cursor;
use 
League\CommonMark\Parser\Inline\InlineParserInterface;
use 
League\CommonMark\Parser\Inline\InlineParserMatch;
use 
League\CommonMark\Parser\InlineParserContext;
use 
League\CommonMark\Reference\ReferenceInterface;
use 
League\CommonMark\Reference\ReferenceMapInterface;
use 
League\CommonMark\Util\LinkParserHelper;
use 
League\CommonMark\Util\RegexHelper;

final class 
CloseBracketParser implements InlineParserInterfaceEnvironmentAwareInterface
{
    
/** @psalm-readonly-allow-private-mutation */
    
private EnvironmentInterface $environment;

    public function 
getMatchDefinition(): InlineParserMatch
    
{
        return 
InlineParserMatch::string(']');
    }

    public function 
parse(InlineParserContext $inlineContext): bool
    
{
        
// Look through stack of delimiters for a [ or !
        
$opener $inlineContext->getDelimiterStack()->searchByCharacter(['[''!']);
        if (
$opener === null) {
            return 
false;
        }

        if (! 
$opener->isActive()) {
            
// no matched opener; remove from emphasis stack
            
$inlineContext->getDelimiterStack()->removeDelimiter($opener);

            return 
false;
        }

        
$cursor $inlineContext->getCursor();

        
$startPos      $cursor->getPosition();
        
$previousState $cursor->saveState();

        
$cursor->advanceBy(1);

        
// Check to see if we have a link/image

        // Inline link?
        
if ($result $this->tryParseInlineLinkAndTitle($cursor)) {
            
$link $result;
        } elseif (
$link $this->tryParseReference($cursor$inlineContext->getReferenceMap(), $opener->getIndex(), $startPos)) {
            
$reference $link;
            
$link      = ['url' => $link->getDestination(), 'title' => $link->getTitle()];
        } else {
            
// No match
            
$inlineContext->getDelimiterStack()->removeDelimiter($opener); // Remove this opener from stack
            
$cursor->restoreState($previousState);

            return 
false;
        }

        
$isImage $opener->getChar() === '!';

        
$inline $this->createInline($link['url'], $link['title'], $isImage$reference ?? null);
        
$opener->getInlineNode()->replaceWith($inline);
        while ((
$label $inline->next()) !== null) {
            
// Is there a Mention or Link contained within this link?
            // CommonMark does not allow nested links, so we'll restore the original text.
            
if ($label instanceof Mention) {
                
$label->replaceWith($replacement = new Text($label->getPrefix() . $label->getIdentifier()));
                
$inline->appendChild($replacement);
            } elseif (
$label instanceof Link) {
                foreach (
$label->children() as $child) {
                    
$label->insertBefore($child);
                }

                
$label->detach();
            } else {
                
$inline->appendChild($label);
            }
        }

        
// Process delimiters such as emphasis inside link/image
        
$delimiterStack $inlineContext->getDelimiterStack();
        
$stackBottom    $opener->getPrevious();
        
$delimiterStack->processDelimiters($stackBottom$this->environment->getDelimiterProcessors());
        
$delimiterStack->removeAll($stackBottom);

        
// Merge any adjacent Text nodes together
        
AdjacentTextMerger::mergeChildNodes($inline);

        
// processEmphasis will remove this and later delimiters.
        // Now, for a link, we also remove earlier link openers (no links in links)
        
if (! $isImage) {
            
$inlineContext->getDelimiterStack()->removeEarlierMatches('[');
        }

        return 
true;
    }

    public function 
setEnvironment(EnvironmentInterface $environment): void
    
{
        
$this->environment $environment;
    }

    
/**
     * @return array<string, string>|null
     */
    
private function tryParseInlineLinkAndTitle(Cursor $cursor): ?array
    {
        if (
$cursor->getCurrentCharacter() !== '(') {
            return 
null;
        }

        
$previousState $cursor->saveState();

        
$cursor->advanceBy(1);
        
$cursor->advanceToNextNonSpaceOrNewline();
        if ((
$dest LinkParserHelper::parseLinkDestination($cursor)) === null) {
            
$cursor->restoreState($previousState);

            return 
null;
        }

        
$cursor->advanceToNextNonSpaceOrNewline();
        
$previousCharacter $cursor->peek(-1);
        
// We know from previous lines that we've advanced at least one space so far, so this next call should never be null
        
\assert(\is_string($previousCharacter));

        
$title '';
        
// make sure there's a space before the title:
        
if (\preg_match(RegexHelper::REGEX_WHITESPACE_CHAR$previousCharacter)) {
            
$title LinkParserHelper::parseLinkTitle($cursor) ?? '';
        }

        
$cursor->advanceToNextNonSpaceOrNewline();

        if (
$cursor->getCurrentCharacter() !== ')') {
            
$cursor->restoreState($previousState);

            return 
null;
        }

        
$cursor->advanceBy(1);

        return [
'url' => $dest'title' => $title];
    }

    private function 
tryParseReference(Cursor $cursorReferenceMapInterface $referenceMap, ?int $openerIndexint $startPos): ?ReferenceInterface
    
{
        if (
$openerIndex === null) {
            return 
null;
        }

        
$savePos     $cursor->saveState();
        
$beforeLabel $cursor->getPosition();
        
$n           LinkParserHelper::parseLinkLabel($cursor);
        if (
$n === || $n === 2) {
            
$start  $openerIndex;
            
$length $startPos $openerIndex;
        } else {
            
$start  $beforeLabel 1;
            
$length $n 2;
        }

        
$referenceLabel $cursor->getSubstring($start$length);

        if (
$n === 0) {
            
// If shortcut reference link, rewind before spaces we skipped
            
$cursor->restoreState($savePos);
        }

        return 
$referenceMap->get($referenceLabel);
    }

    private function 
createInline(string $urlstring $titlebool $isImage, ?ReferenceInterface $reference null): AbstractWebResource
    
{
        if (
$isImage) {
            
$inline = new Image($urlnull$title);
        } else {
            
$inline = new Link($urlnull$title);
        }

        if (
$reference) {
            
$inline->data->set('reference'$reference);
        }

        return 
$inline;
    }
}

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