Passed
Push — latest ( 981bad...ca3ef7 )
by Colin
02:16 queued 10s
created

AttributesHelper::parseAttributes()   C

Complexity

Conditions 16
Paths 57

Size

Total Lines 63
Code Lines 35

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 33
CRAP Score 16.0476

Importance

Changes 0
Metric Value
eloc 35
dl 0
loc 63
ccs 33
cts 35
cp 0.9429
rs 5.5666
c 0
b 0
f 0
cc 16
nc 57
nop 1
crap 16.0476

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 * (c) 2015 Martin Hasoň <[email protected]>
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\Attributes\Util;
16
17
use League\CommonMark\Node\Node;
18
use League\CommonMark\Parser\Cursor;
19
use League\CommonMark\Util\RegexHelper;
20
21
/**
22
 * @internal
23
 */
24
final class AttributesHelper
25
{
26
    private const REGEX = '/^\s*([.#][_a-z0-9-]+|' . RegexHelper::PARTIAL_ATTRIBUTENAME . RegexHelper::PARTIAL_ATTRIBUTEVALUESPEC . ')(?<!})\s*/i';
27
28
    /**
29
     * @return array<string, mixed>
30
     */
31 111
    public static function parseAttributes(Cursor $cursor): array
32
    {
33 111
        $state = $cursor->saveState();
34 111
        $cursor->advanceToNextNonSpaceOrNewline();
35 111
        if ($cursor->getCharacter() !== '{') {
36 21
            $cursor->restoreState($state);
37
38 21
            return [];
39
        }
40
41 108
        $cursor->advanceBy(1);
42 108
        if ($cursor->getCharacter() === ':') {
43 57
            $cursor->advanceBy(1);
44
        }
45
46 108
        $attributes = [];
47 108
        while ($attribute = \trim((string) $cursor->match(self::REGEX))) {
48 102
            if ($attribute[0] === '#') {
49 54
                $attributes['id'] = \substr($attribute, 1);
50
51 54
                continue;
52
            }
53
54 63
            if ($attribute[0] === '.') {
55 30
                $attributes['class'][] = \substr($attribute, 1);
56
57 30
                continue;
58
            }
59
60 45
            [$name, $value] = \explode('=', $attribute, 2);
61
62 45
            $first = $value[0];
63 45
            $last  = \substr($value, -1);
64 45
            if (($first === '"' && $last === '"') || ($first === "'" && $last === "'") && \strlen($value) > 1) {
65 45
                $value = \substr($value, 1, -1);
66
            }
67
68 45
            if (\strtolower(\trim($name)) === 'class') {
69
                foreach (\array_filter(\explode(' ', \trim($value))) as $class) {
70
                    $attributes['class'][] = $class;
71
                }
72
            } else {
73 45
                $attributes[\trim($name)] = \trim($value);
74
            }
75
        }
76
77 108
        if ($cursor->match('/}/') === null) {
78 6
            $cursor->restoreState($state);
79
80 6
            return [];
81
        }
82
83 105
        if ($attributes === []) {
84 9
            $cursor->restoreState($state);
85
86 9
            return [];
87
        }
88
89 99
        if (isset($attributes['class'])) {
90 30
            $attributes['class'] = \implode(' ', (array) $attributes['class']);
91
        }
92
93 99
        return $attributes;
94
    }
95
96
    /**
97
     * @param Node|array<string, mixed> $attributes1
98
     * @param Node|array<string, mixed> $attributes2
99
     *
100
     * @return array<string, mixed>
101
     */
102 45
    public static function mergeAttributes($attributes1, $attributes2): array
103
    {
104 45
        $attributes = [];
105 45
        foreach ([$attributes1, $attributes2] as $arg) {
106 45
            if ($arg instanceof Node) {
107 36
                $arg = $arg->data->get('attributes');
108
            }
109
110
            /** @var array<string, mixed> $arg */
111 45
            $arg = (array) $arg;
112 45
            if (isset($arg['class'])) {
113 39
                foreach (\array_filter(\explode(' ', \trim($arg['class']))) as $class) {
114 39
                    $attributes['class'][] = $class;
115
                }
116
117 39
                unset($arg['class']);
118
            }
119
120 45
            $attributes = \array_merge($attributes, $arg);
121
        }
122
123 45
        if (isset($attributes['class'])) {
124 39
            $attributes['class'] = \implode(' ', $attributes['class']);
125
        }
126
127 45
        return $attributes;
128
    }
129
}
130