1: <?php
2:
3: namespace Northys\CSSInliner;
4:
5: use Northys\CSSInliner\Exceptions;
6: use Sabberworm\CSS;
7: use Symfony\Component\CssSelector\CssSelector;
8:
9:
10: 11: 12: 13: 14:
15: class CSSInliner
16: {
17:
18: 19: 20:
21: private $css;
22:
23: 24: 25:
26: private $dom;
27:
28: 29: 30:
31: private $finder;
32:
33:
34: 35: 36: 37: 38:
39: public function addCSS($filename)
40: {
41: if ( ! $css = @file_get_contents($filename)) {
42: throw new Exceptions\InvalidCssFilePathException('Invalid css file path provided.');
43: }
44:
45: $this->css .= $css;
46: }
47:
48:
49: 50: 51: 52: 53:
54: private function getCSS() {
55:
56: foreach ($this->dom->getElementsByTagName('style') as $style) {
57: $this->css .= $style->textContent;
58: }
59: $parser = new CSS\Parser($this->css);
60:
61: $css = $parser->parse();
62: if (!$css) {
63: throw new Exceptions\NoCssRulesException('There are no CSS rules provided.');
64: }
65: return $css;
66: }
67:
68:
69: 70: 71: 72: 73:
74: public function render($html)
75: {
76: $this->dom = new \DOMDocument;
77: $this->dom->loadHTML($html);
78: $this->finder = new \DOMXPath($this->dom);
79: $this->css = $this->getCSS();
80: foreach ($this->css->getAllRuleSets() as $ruleSet) {
81: $selector = $ruleSet->getSelector();
82: foreach ($this->finder->evaluate(CssSelector::toXPath($selector[0])) as $node) {
83: if ($node->getAttribute('style')) {
84: $node->setAttribute('style', $node->getAttribute('style') . implode(' ', $ruleSet->getRules()));
85: } else {
86: $node->setAttribute('style', implode(' ', $ruleSet->getRules()));
87: }
88: }
89: }
90:
91: return $this->dom->saveHTML();
92: }
93:
94: }
95: