domains/remove_print_css.js
[app.webkitpdf] / webkitpdf.php
1 <?php
2
3 // a simple service to run webkitpdf and return the PDF...
4 // note - this will only run on localhost by default...
5
6 // needs pear in the 
7 // test:  http://localhost/webkitpdf.php
8
9 // create a simple file:
10 /*
11 ini_set('include_path', 
12             dirname(__FILE__). ':' . 
13             dirname(__FILE__).'/pear:' . 
14             ini_get('include_path'));
15
16 require_once 'webkitpdf.php';
17 new WebkitPdf();
18 */
19
20
21
22 class WebkitPdf
23 {
24     
25     function WebkitPdf()
26     {
27         if (empty($_REQUEST['url'])) {
28             $this->h404("missing url");
29         }
30         
31         require_once 'System.php';
32         
33         $timeout= System::which('timeout');
34         if (empty($timeout)) {
35             $this->h404("missing timeout");
36         }
37         
38         $xvfb = System::which('xvfb-run');
39         if (empty($xvfb)) {
40             $this->h404("missing xvfb");
41         }
42         
43         $webkitpdf = System::which('webkitpdf');
44         if (empty($webkitpdf )) {
45             $this->h404("missing webkitpdf (compile it..)");
46         }
47         // max delay 20 seconds.? bit generous..
48         $delay = empty($_REQUEST['delay']) ? 1 : max(20,$_REQUEST['delay']);
49         
50         //?? allow injections?
51         // not yet..
52         
53         $outpr = tempnam(ini_get('session.save_path'), 'webkitTMP');
54         unlink($outpr);
55         $out = $outpr .'.pdf';
56         
57         // can take 2-5 minutes... 
58         
59         $cmd = "timeout 300s $xvfb --auto-servernum $webkitpdf  " .
60                 " --url " . escapeshellarg($_REQUEST['url']) . ' ' .
61                 " --pdf " . $out . ' ';
62                 
63         $res = `$cmd`;
64         
65         if (!file_exists($out)) {
66             $this->h404("Failed to create file $cmd  ==> $res");
67         }
68         
69         header('Content-type: application/octet-stream');
70         
71         header("Expires: ");
72         header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
73         header("Pragma: public");     
74         header("Last-Modified: " . gmdate("D, d M Y H:i:s",  time()) . " GMT");
75
76         //header('Content-length: '. filesize($out));
77         header('Content-Disposition: attachment; filename="' . htmlspecialchars(basename($out)).  '"');
78         ini_set('display_errors', 0);
79         
80         $fh = fopen($out, 'rb');
81         fpassthru($fh);
82         
83         fclose($fh);
84     
85     
86         unlink($out);
87         exit;
88         
89         
90     }
91     
92     function h404($msg)
93     {
94         header("HTTP/1.0 404 Not Found");
95         echo htmlspecialchars($msg);
96         exit;
97     }
98     
99 }