ConvertStyle.php
[Pman.Core] / ConvertStyle.php
1 <?php
2
3 require_once 'Pman.php';
4 require_once 'HTML/CSS/InlineStyle.php';
5
6 class Pman_Core_ConvertStyle extends Pman 
7 {
8     function getAuth()
9     {
10         if (HTML_FlexyFramework::get()->cli) {
11             return true;
12         }
13         $this->authUser = $this->getAuthUser();
14         if (!$this->authUser) {
15             return false;
16         }
17         return true;
18     }
19     
20     function relPath($base, $url)
21     {      
22         if (preg_match('/^(http|https|mailto):/',$url)) {
23             return $url;
24         }
25         $ui = parse_url($base);
26         
27         if (substr($url,0,2) == '//') {
28             return $ui['scheme'] .':' .  $url;
29         }
30         
31         
32         
33         if (substr($url,0,1) == '/') {
34             return $ui['scheme'] .'://'.$ui['host']. $url;
35         }
36         
37         if (substr($ui['path'], -1) == '/') {
38            return $ui['scheme'] .'://'.$ui['host']. $ui['path'] . $url;
39         }
40         if (!strlen($ui['path'])) {
41             return $ui['scheme'] .'://'.$ui['host']. '/' . $url;
42            
43         }
44         
45         return $ui['scheme'] .'://'.$ui['host']. $ui['path'] . '/../'. $url;
46         
47     }
48     
49     function checkHeader($url)
50     {
51         if(strpos($url, 'https') !== false)
52         {
53             $this->jerr('accept HTTP url only!');
54         }
55         $headers = get_headers($url, 1);
56         if(strpos(is_array($headers['Content-Type']) ? $headers['Content-Type'][0] : $headers['Content-Type'], 'text/html') === false)
57         {
58             $this->jerr('accept html file only!');
59         }
60         return;
61     }
62     
63     var $styleSheets = array();
64     
65     function convertStyle($url, $file, $is_url = false)
66     {
67 //        if(!empty($url))
68 //        {
69 //            $host = parse_url($url);
70 //            require_once 'System.php';
71 //            $wget = System::which('wget');
72 //            if (!$wget) {
73 //                $this->jerr("no wget");
74 //            }
75 //            $cmd =  $wget . ' -q -O -  ' . escapeshellarg($url);
76 //            
77 //            //echo $cmd; exit;
78 //            $data = `$cmd`;
79 //            
80 //            if (!trim(strlen($data))) {
81 //                $this->jerr("url returned an empty string");
82 //            }
83 //        }
84         
85         if(!$is_url){
86             $data = file_get_contents($file);
87         }
88         
89         
90         libxml_use_internal_errors (true);
91         $doc = new DOMDocument('1.0', 'UTF-8');
92         $doc->loadHTML('<?xml encoding="UTF-8">'.$data);
93         $doc->formatOutput = true;
94         
95         $xpath = new DOMXpath($doc);
96         foreach ($xpath->query('//img[@src]') as $img) {
97             $href = $img->getAttribute('src');
98             if (!preg_match("/^http(.*)$/", $href, $matches)) {
99                 if(!empty($url)){
100                     $img->setAttribute('src',  $this->relPath($url,  $href));
101                     continue;
102                 }
103                 $this->jerr('Please use the absolutely url for image src!');
104             }
105         }
106         
107         
108         foreach ($xpath->query('//a[@href]') as $a) {
109             $href = $a->getAttribute('href');
110             if (!preg_match("/^http|mailto|#(.*)$/", $href, $matches)) {
111                 if(!empty($url)){
112                     $a->setAttribute('href', $this->relPath($url,  $href));
113                     continue;
114                 }
115                 $this->jerr('Please use the absolutely url for a href!');
116             }
117         }
118         
119         foreach ($xpath->query('//link[@href]') as $l) {
120             if($l->getAttribute('rel') == 'stylesheet'){
121                 $href = $l->getAttribute('href');
122                 
123                 if (empty($url) && !preg_match("/^http(.*)$/", $href, $matches)) {
124                     // import from file , must use absolutely url
125                     $this->jerr('Please use the absolutely url for link href!');
126                 }
127                 if (!empty($url)) {
128                     // import from URL
129                     $href = $this->relPath($url,  $href);
130                 }
131                 $this->styleSheets[$href] = $this->replaceImageUrl(file_get_contents($href),$href);
132             }
133         }
134         
135         foreach ($xpath->query('//style') as $s){
136             $this->styleSheets[] = $this->replaceImageUrl($s->nodeValue, $url);
137         }
138         
139         $data = $doc->saveHTML();
140         
141         $htmldoc = new HTML_CSS_InlineStyle($data);
142         if(count($this->styleSheets) > 0){
143             foreach ($this->styleSheets as $styleSheet){
144                 $htmldoc->applyStylesheet($styleSheet);
145             }
146         }
147         $html = $htmldoc->getHTML();
148         libxml_use_internal_errors (false);
149         
150         if (!function_exists('tidy_repair_string')) {
151             return "INSTALL TIDY ON SERVER " . $html;
152         }
153         
154         $html = tidy_repair_string(
155                 $html,
156                 array(
157                   'indent' => TRUE,
158                     'output-xhtml' => TRUE,
159                     'wrap' => 120
160                 ),
161                 'UTF8'
162         );
163         
164         
165         return $html;
166         
167     }
168     
169     function replaceImageUrl($stylesheet,$href)
170     {
171         $base = explode("/", $href);
172         $s = preg_split('/url\(([\'\"]?)/', $stylesheet);
173         foreach($s as $k => $v){
174             if($k == 0){
175                 continue;
176             }
177             array_pop($base);
178             array_push($base, $v);
179             $s[$k] = implode("/", $base);
180         }
181         
182         $r = implode("url(", $s);
183         
184         $this->checkImportCss($r);
185         
186         return $r;
187     }
188     
189     function checkImportCss($r)
190     {
191         if(preg_match("/@import url/", $r, $matches)){
192             $importCss = explode("@import url", $r);
193             foreach ($importCss as $css){
194                 if(preg_match("/\.css/", $css, $matches)){
195                     $cssFileName = explode(".css", $css);
196                     $name = preg_replace("/[\(\'\"]/", '', $cssFileName[0]);
197                     $p = $name . '.css';
198                     $this->styleSheets[$p] = $this->replaceImageUrl(file_get_contents($p),$p);
199                 }
200             }
201         }
202         return;
203     }
204     
205 }