Completed
Push — latest ( 76d169...995567 )
by Colin
22s queued 10s
created

FootnoteRefParser   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Test Coverage

Coverage 93.33%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 5
eloc 13
c 1
b 0
f 0
dl 0
loc 34
ccs 14
cts 15
cp 0.9333
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getMatchDefinition() 0 3 1
A createReference() 0 6 1
A parse() 0 10 2
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(string $match, InlineParserContext $inlineContext): bool
36
    {
37 75
        if (\preg_match('#\[\^([^\s\]]+)\]#', $match, $matches) <= 0) {
38
            return false;
39
        }
40
41 75
        $inlineContext->getCursor()->advanceBy(\mb_strlen($match));
42 75
        $inlineContext->getContainer()->appendChild(new FootnoteRef($this->createReference($matches[1])));
43
44 75
        return true;
45
    }
46
47 75
    private function createReference(string $label): Reference
48
    {
49 75
        return new Reference(
50 50
            $label,
51 75
            '#' . $this->config->get('footnote/footnote_id_prefix', 'fn:') . $label,
52 25
            $label
53
        );
54
    }
55
56 105
    public function setConfiguration(ConfigurationInterface $config): void
57
    {
58 105
        $this->config = $config;
59 105
    }
60
}
61