Completed
Push — latest ( 609def...dcbb7e )
by Colin
14s queued 11s
created

FootnoteRefParser   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
eloc 12
c 1
b 0
f 0
dl 0
loc 32
ccs 14
cts 14
cp 1
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getMatchDefinition() 0 3 1
A createReference() 0 6 1
A parse() 0 8 1
A setConfiguration() 0 3 1
1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 * (c) Rezo Zero / Ambroise Maupate
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
declare(strict_types=1);
14
15
namespace League\CommonMark\Extension\Footnote\Parser;
16
17
use League\CommonMark\Configuration\ConfigurationAwareInterface;
18
use League\CommonMark\Configuration\ConfigurationInterface;
19
use League\CommonMark\Extension\Footnote\Node\FootnoteRef;
20
use League\CommonMark\Parser\Inline\InlineParserInterface;
21
use League\CommonMark\Parser\Inline\InlineParserMatch;
22
use League\CommonMark\Parser\InlineParserContext;
23
use League\CommonMark\Reference\Reference;
24
25
final class FootnoteRefParser implements InlineParserInterface, ConfigurationAwareInterface
26
{
27
    /** @var ConfigurationInterface */
28
    private $config;
29
30 105
    public function getMatchDefinition(): InlineParserMatch
31
    {
32 105
        return InlineParserMatch::regex('\[\^([^\s\]]+)\]');
33
    }
34
35 75
    public function parse(InlineParserContext $inlineContext): bool
36
    {
37 75
        $inlineContext->getCursor()->advanceBy($inlineContext->getFullMatchLength());
38
39 75
        [$label] = $inlineContext->getSubMatches();
40 75
        $inlineContext->getContainer()->appendChild(new FootnoteRef($this->createReference($label)));
41
42 75
        return true;
43
    }
44
45 75
    private function createReference(string $label): Reference
46
    {
47 75
        return new Reference(
48 50
            $label,
49 75
            '#' . $this->config->get('footnote/footnote_id_prefix', 'fn:') . $label,
50 25
            $label
51
        );
52
    }
53
54 105
    public function setConfiguration(ConfigurationInterface $config): void
55
    {
56 105
        $this->config = $config;
57 105
    }
58
}
59