1<?php 2 /** 3 * dw2Pdf Plugin: Conversion from dokuwiki content to pdf. 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Luigi Micco <l.micco@tiscali.it> 7 * @author Andreas Gohr <andi@splitbrain.org> 8 */ 9 10// must be run within Dokuwiki 11if (!defined('DOKU_INC')) die(); 12if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); 13 14class action_plugin_dw2pdf extends DokuWiki_Action_Plugin { 15 16 private $tpl; 17 18 /** 19 * Constructor. Sets the correct template 20 */ 21 function __construct(){ 22 $tpl; 23 if(isset($_REQUEST['tpl'])){ 24 $tpl = trim(preg_replace('/[^A-Za-z0-9_\-]+/','',$_REQUEST['tpl'])); 25 } 26 if(!$tpl) $tpl = $this->getConf('template'); 27 if(!$tpl) $tpl = 'default'; 28 if(!is_dir(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl)) $tpl = 'default'; 29 30 $this->tpl = $tpl; 31 } 32 33 /** 34 * Register the events 35 */ 36 function register(&$controller) { 37 $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'convert',array()); 38 } 39 40 /** 41 * Do the HTML to PDF conversion work 42 */ 43 function convert(&$event, $param) { 44 global $ACT; 45 global $REV; 46 global $ID; 47 global $conf; 48 49 // our event? 50 if (( $ACT != 'export_pdfbook' ) && ( $ACT != 'export_pdf' )) return false; 51 52 // check user's rights 53 if ( auth_quickaclcheck($ID) < AUTH_READ ) return false; 54 55 // it's ours, no one else's 56 $event->preventDefault(); 57 58 // one or multiple pages? 59 $list = array(); 60 if ( $ACT == 'export_pdf' ) { 61 $list[0] = $ID; 62 } elseif (isset($_COOKIE['list-pagelist'])) { 63 $list = explode("|", $_COOKIE['list-pagelist']); 64 } 65 66 // prepare cache 67 $cache = new cache(join(',',$list).$REV.$this->tpl,'.dw2.pdf'); 68 $depends['files'] = array_map('wikiFN',$list); 69 $depends['files'][] = __FILE__; 70 $depends['files'][] = dirname(__FILE__).'/renderer.php'; 71 $depends['files'][] = dirname(__FILE__).'/mpdf/mpdf.php'; 72 $depends['files'] = array_merge($depends['files'], getConfigFiles('main')); 73 74 // hard work only when no cache available 75 if(!$this->getConf('usecache') || !$cache->useCache($depends)){ 76 // initialize PDF library 77 require_once(dirname(__FILE__)."/DokuPDF.class.php"); 78 $mpdf = new DokuPDF(); 79 80 // let mpdf fix local links 81 $self = parse_url(DOKU_URL); 82 $url = $self['scheme'].'://'.$self['host']; 83 if($self['port']) $url .= ':'.$port; 84 $mpdf->setBasePath($url); 85 86 // Set the title 87 $title = $_GET['pdfbook_title']; 88 if(!$title) $title = p_get_first_heading($ID); 89 $mpdf->SetTitle($title); 90 91 // some default settings 92 $mpdf->mirrorMargins = 1; 93 $mpdf->useOddEven = 1; 94 $mpdf->setAutoTopMargin = 'stretch'; 95 $mpdf->setAutoBottomMargin = 'stretch'; 96 97 // load the template 98 $template = $this->load_template($title); 99 100 // prepare HTML header styles 101 $html = '<html><head>'; 102 $html .= '<style>'; 103 $html .= $this->load_css(); 104 $html .= '@page { size:auto; '.$template['page'].'}'; 105 $html .= '@page :first {'.$template['first'].'}'; 106 $html .= $template['css']; 107 $html .= '</style>'; 108 $html .= '</head><body>'; 109 $html .= $template['html']; 110 $html .= '<div class="dokuwiki">'; 111 112 // loop over all pages 113 $cnt = count($list); 114 for($n=0; $n<$cnt; $n++){ 115 $page = $list[$n]; 116 117 $html .= p_cached_output(wikiFN($page,$REV),'dw2pdf',$page); 118 $html .= $template['cite']; 119 if ($n < ($cnt - 1)){ 120 $html .= '<pagebreak />'; 121 } 122 } 123 124 $html .= '</div>'; 125 $mpdf->WriteHTML($html); 126 127 // write to cache file 128 $mpdf->Output($cache->cache, 'F'); 129 } 130 131 // deliver the file 132 header('Content-Type: application/pdf'); 133 header('Cache-Control: must-revalidate, no-transform, post-check=0, pre-check=0'); 134 header('Pragma: public'); 135 http_conditionalRequest(filemtime($cache->cache)); 136 137 if($this->getConf('output') == 'file'){ 138 header('Content-Disposition: attachment; filename="'.rawurlencode($title).'.pdf";'); 139 }else{ 140 header('Content-Disposition: inline; filename="'.rawurlencode($title).'.pdf";'); 141 } 142 143 if (http_sendfile($cache->cache)) exit; 144 145 $fp = @fopen($cache->cache,"rb"); 146 if($fp){ 147 http_rangeRequest($fp,filesize($cache->cache),'application/pdf'); 148 }else{ 149 header("HTTP/1.0 500 Internal Server Error"); 150 print "Could not read file - bad permissions?"; 151 } 152 exit(); 153 } 154 155 156 /** 157 * Load the various template files and prepare the HTML/CSS for insertion 158 */ 159 protected function load_template($title){ 160 global $ID; 161 global $REV; 162 global $conf; 163 $tpl = $this->tpl; 164 165 // this is what we'll return 166 $output = array( 167 'html' => '', 168 'css' => '', 169 'page' => '', 170 'first' => '', 171 'cite' => '', 172 ); 173 174 // prepare header/footer elements 175 $html = ''; 176 foreach(array('header','footer') as $t){ 177 foreach(array('','_odd','_even','_first') as $h){ 178 if(file_exists(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/'.$t.$h.'.html')){ 179 $html .= '<htmlpage'.$t.' name="'.$t.$h.'">'.DOKU_LF; 180 $html .= file_get_contents(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/'.$t.$h.'.html').DOKU_LF; 181 $html .= '</htmlpage'.$t.'>'.DOKU_LF; 182 183 // register the needed pseudo CSS 184 if($h == '_first'){ 185 $output['first'] .= $t.': html_'.$t.$h.';'.DOKU_LF; 186 }elseif($h == '_even'){ 187 $output['page'] .= 'even-'.$t.'-name: html_'.$t.$h.';'.DOKU_LF; 188 }elseif($h == '_odd'){ 189 $output['page'] .= 'odd-'.$t.'-name: html_'.$t.$h.';'.DOKU_LF; 190 }else{ 191 $output['page'] .= $t.': html_'.$t.$h.';'.DOKU_LF; 192 } 193 } 194 } 195 } 196 197 // generate qr code for this page using google infographics api 198 $qr_code = ''; 199 if ($conf['plugin']['dw2pdf']['useqrcodes'] == 1) { 200 $url = urlencode(wl($ID,'','&',true)); 201 $qr_code = '<img src="https://chart.googleapis.com/chart?chs='.$conf['plugin']['dw2pdf']['qrcodesize'].'&cht=qr&chl='.$url.'">'; 202 } 203 204 // prepare replacements 205 $replace = array( 206 '@ID@' => $ID, 207 '@PAGE@' => '{PAGENO}', 208 '@PAGES@' => '{nb}', 209 '@TITLE@' => hsc($title), 210 '@WIKI@' => $conf['title'], 211 '@WIKIURL@' => DOKU_URL, 212 '@UPDATE@' => dformat(filemtime(wikiFN($ID,$REV))), 213 '@PAGEURL@' => wl($ID,($REV)?array('rev'=>$REV):false, true, "&"), 214 '@DATE@' => dformat(time()), 215 '@BASE@' => DOKU_BASE, 216 '@TPLBASE@' => DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/', 217 '@QRCODE@' => $qr_code, 218 ); 219 220 // set HTML element 221 $output['html'] = str_replace(array_keys($replace), array_values($replace), $html); 222 223 // citation box 224 if(file_exists(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/citation.html')){ 225 $output['cite'] = file_get_contents(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/citation.html'); 226 $output['cite'] = str_replace(array_keys($replace), array_values($replace), $output['cite']); 227 } 228 229 // set custom styles 230 if(file_exists(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/style.css')){ 231 $output['css'] = file_get_contents(DOKU_PLUGIN.'dw2pdf/tpl/'.$tpl.'/style.css'); 232 } 233 234 return $output; 235 } 236 237 /** 238 * Load all the style sheets and apply the needed replacements 239 */ 240 protected function load_css(){ 241 //reusue the CSS dispatcher functions without triggering the main function 242 define('SIMPLE_TEST',1); 243 require_once(DOKU_INC.'lib/exe/css.php'); 244 245 // prepare CSS files 246 $files = array_merge( 247 array( 248 DOKU_INC.'lib/styles/screen.css' 249 => DOKU_BASE.'lib/styles/', 250 DOKU_INC.'lib/styles/print.css' 251 => DOKU_BASE.'lib/styles/', 252 ), 253 css_pluginstyles('all'), 254 $this->css_pluginPDFstyles(), 255 array( 256 DOKU_PLUGIN.'dw2pdf/conf/style.css' 257 => DOKU_BASE.'lib/plugins/dw2pdf/conf/', 258 DOKU_PLUGIN.'dw2pdf/tpl/'.$this->tpl.'/style.css' 259 => DOKU_BASE.'lib/plugins/dw2pdf/tpl/'.$this->tpl.'/', 260 DOKU_PLUGIN.'dw2pdf/conf/style.local.css' 261 => DOKU_BASE.'lib/plugins/dw2pdf/conf/', 262 ) 263 ); 264 $css = ''; 265 foreach($files as $file => $location){ 266 $css .= css_loadfile($file, $location); 267 } 268 269 // apply pattern replacements 270 $css = css_applystyle($css,DOKU_INC.'lib/tpl/'.$conf['template'].'/'); 271 272 return $css; 273 } 274 275 276 /** 277 * Returns a list of possible Plugin PDF Styles 278 * 279 * Checks for a pdf.css, falls back to print.css 280 * 281 * @author Andreas Gohr <andi@splitbrain.org> 282 */ 283 function css_pluginPDFstyles(){ 284 global $lang; 285 $list = array(); 286 $plugins = plugin_list(); 287 288 $usestyle = explode(',',$this->getConf('usestyles')); 289 foreach ($plugins as $p){ 290 if(in_array($p,$usestyle)){ 291 $list[DOKU_PLUGIN."$p/screen.css"] = DOKU_BASE."lib/plugins/$p/"; 292 $list[DOKU_PLUGIN."$p/style.css"] = DOKU_BASE."lib/plugins/$p/"; 293 } 294 295 if(file_exists(DOKU_PLUGIN."$p/pdf.css")){ 296 $list[DOKU_PLUGIN."$p/pdf.css"] = DOKU_BASE."lib/plugins/$p/"; 297 }else{ 298 $list[DOKU_PLUGIN."$p/print.css"] = DOKU_BASE."lib/plugins/$p/"; 299 } 300 } 301 return $list; 302 } 303 304} 305