Completed
Push — master ( 9753fc...bb535b )
by Tijs
03:33
created

Processor::doCleanup()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 9

Duplication

Lines 14
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 14
loc 14
rs 9.4285
cc 1
eloc 9
nc 1
nop 1
1
<?php
2
3
namespace TijsVerkoyen\CssToInlineStyles\Css;
4
5
use TijsVerkoyen\CssToInlineStyles\Css\Rule\Processor as RuleProcessor;
6
7
class Processor
8
{
9
    /**
10
     * Get the rules from a given CSS-string
11
     *
12
     * @param string $css
13
     * @param array  $existingRules
14
     * @return Rule[]
15
     */
16
    public function getRules($css, $existingRules = array())
17
    {
18
        $css = $this->doCleanup($css);
19
        $rulesProcessor = new RuleProcessor();
20
        $rules = $rulesProcessor->splitIntoSeparateRules($css);
21
22
        return $rulesProcessor->convertArrayToObjects($rules, $existingRules);
23
    }
24
25
    /**
26
     * Get the CSS from the style-tags in the given HTML-string
27
     *
28
     * @param string $html
29
     * @return string
30
     */
31
    public function getCssFromStyleTags($html)
32
    {
33
        $css = '';
34
        $matches = array();
35
        preg_match_all('|<style(.*)>(.*)</style>|isU', $html, $matches);
36
37
        if (!empty($matches[2])) {
38
            foreach ($matches[2] as $match) {
39
                $css .= trim($match) . "\n";
40
            }
41
        }
42
43
        return $css;
44
    }
45
46
    /**
47
     * @param string $css
48
     * @return string
49
     */
50 View Code Duplication
    private function doCleanup($css)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
51
    {
52
        // remove media queries
53
        $css = preg_replace('/@media [^{]*{([^{}]|{[^{}]*})*}/', '', $css);
54
55
        $css = str_replace(array("\r", "\n"), '', $css);
56
        $css = str_replace(array("\t"), ' ', $css);
57
        $css = str_replace('"', '\'', $css);
58
        $css = preg_replace('|/\*.*?\*/|', '', $css);
59
        $css = preg_replace('/\s\s+/', ' ', $css);
60
        $css = trim($css);
61
62
        return $css;
63
    }
64
}
65