webkitpdf.php
[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');
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         $cmd = "timeout 30s $xvfb --auto-servernum $webkitpdf  " .
58                 " --url " . escapeshellarg($_REQUEST['url']) . ' ' .
59                 " --pdf " . $tmpfile . ' ';
60                 
61         
62         
63         
64     }
65     
66 }