Images.php
[Pman.Core] / Images.php
1 <?php
2 /**
3  * Deal with image delivery and HTML replacement of image links in body text.
4  *
5  * $str = Pman_Core_Images::replaceImg($str); // < use with HTML
6  *
7  * or
8  *
9  * Deliver image /file etc..
10  * 
11  * Use Cases:
12  * 
13  * args: ontable request
14  *      ontable (req) tablename.
15  *      filename
16  *      (other table args)
17  *      as (serve as a type) = eg. ?as=audio/mpeg 
18  * 
19  * args: generic
20  *     as :(serve as a type) = eg. mimetype.
21  * 
22  * Images/{ID}/fullname.xxxx
23  * 
24  * (valid thumbs 200, 400)...?
25  * Images/Thumb/200/{ID}/fullname.xxxx
26  * Images/Download/{ID}/fullname.xxxx
27  *
28  *
29  *
30  * 
31  * Used to be in Base... now in core..
32  *
33  * 
34  * view permission should be required on the underlying object...
35  * 
36  */
37 require_once  'Pman.php';
38 class Pman_Core_Images extends Pman
39 {
40     function getAuth()
41     {
42         parent::getAuth(); // load company!
43         //return true;
44         $au = $this->getAuthUser();
45         //if (!$au) {
46         //    die("Access denied");
47        // }
48         $this->authUser = $au;
49         
50         return true;
51     }
52     var $thumb = false;
53     var $as_mimetype = false;
54     var $method = 'inline';
55     
56     function get($s) // determin what to serve!!!!
57     {
58         // for testing only.
59         //if (!empty($_GET['_post'])) {
60         //   return $this->post();
61         //}
62         
63         $this->as_mimetype = empty($_REQUEST['as']) ? '' : $_REQUEST['as'];
64         
65         $bits= explode('/', $s);
66         $id = 0;
67 //        var_dump($bits);die('in');
68         // without id as first part...
69         if (!empty($bits[0]) && $bits[0] == 'Thumb') {
70             $this->thumb = true;
71             $this->as_mimetype = 'image/jpeg';
72             $this->size = empty($bits[1]) ? '0x0' : $bits[1];
73             $id = empty($bits[2]) ? 0 :   $bits[2];
74             
75         } else if (!empty($bits[0]) && $bits[0] == 'Download') {
76             $this->method = 'attachment';
77             $id = empty($bits[1]) ? 0 :   $bits[1];
78             
79         } else  if (!empty($bits[1]) && $bits[1] == 'Thumb') { // with id as first part.
80             $this->thumb = true;
81             $this->as_mimetype = 'image/jpeg';
82             $this->size = empty($bits[2]) ? '0x0' : $bits[2];
83             $id = empty($bits[3]) ? 0 :   $bits[3];
84             
85         } else if (!empty($bits[0]) && $bits[0] == 'events') {
86             
87             $this->downloadEvent($bits);
88             
89             die ("unknown file?"); 
90             
91         } else {
92         
93             $id = empty($bits[0]) ? 0 :  $bits[0];
94         }
95         
96         if (strpos($id,':') > 0) {  // id format  tablename:id:-imgtype
97             $onbits = explode(':', $id);
98             if ((count($onbits) < 2)   || empty($onbits[1]) || !is_numeric($onbits[1]) || !strlen($onbits[0])) {
99                 die("Bad url");
100             }
101             //DB_DataObject::debugLevel(1);
102             $img = DB_DataObject::factory('Images');
103             $img->ontable = $onbits[0];
104             $img->onid = $onbits[1];
105             if (empty($_REQUEST['anytype'])) {
106                 $img->whereAdd("mimetype like 'image/%'");
107             }
108             
109             if (isset($onbits[2])) {
110                 $img->imgtype = $onbits[2];
111             }
112             $img->limit(1);
113             if (!$img->find(true)) {
114                 header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
115                 urlencode("no images for that item: " . htmlspecialchars($id)));
116             }
117             
118             $id = $img->id;
119             
120             
121         }
122         $id = (int) $id;
123         
124         // depreciated - should use ontable:onid:type here...
125         if (!empty($_REQUEST['ontable'])) {
126
127             //DB_DataObjecT::debugLevel(1);
128             $img = DB_DataObjecT::factory('Images');
129             $img->setFrom($_REQUEST);
130             // use imgtype now...
131            // if (!empty($_REQUEST['query']['filename'])){
132            //     $img->whereAdd("filename LIKE '". $img->escape($_REQUEST['query']['filename']).".%'");
133            // }
134             
135             
136             $img->limit(1);
137             if (!$img->find(true)) {
138                 header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason='. 
139                     urlencode("No file exists"));
140             } 
141             $id = $img->id;
142             
143         }
144         
145         
146        
147         $img = DB_DataObjecT::factory('Images');
148          
149         if (!$id || !$img->get($id)) {
150              
151             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
152                 urlencode("image has been removed or deleted."));
153             
154         }
155         
156         if(!$this->hasPermission($img)){
157             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
158                 urlencode("image has been removed or deleted."));
159         }
160         
161         $this->serve($img);
162         exit;
163     }
164     
165     function hasPermission($img) 
166     {
167         return true;
168     }
169     
170     function post()
171     {
172         
173         if (!$this->authUser) {
174             $this->jerr("image conversion only allowed by registered users");
175         }
176         // converts a posted string (eg.svg)
177         // into another type..
178         if (empty($_REQUEST['as'])) {
179            $this->jerr("missing target type");
180         }
181         if (empty($_REQUEST['mimetype'])) {
182             $this->jerr("missing mimetype");
183         }
184         if (empty($_REQUEST['data'])) {
185             $this->jerr("missing data");
186         }
187         
188         
189         $this->as_mimetype = $_REQUEST['as'];
190         $this->mimetype = $_REQUEST['mimetype'];
191         require_once 'File/MimeType.php';
192         $y = new File_MimeType();
193         $src_ext = $y->toExt( $this->mimetype );
194         
195         
196         $tmp = $this->tempName($src_ext);
197         file_put_contents($tmp, $_REQUEST['data']);
198         
199         require_once 'File/Convert.php';
200         $cv = new File_Convert($tmp, $this->mimetype);
201         
202         $fn = $cv->convert(
203                 $this->as_mimetype ,
204                 empty($_REQUEST['width']) ? 0 : $_REQUEST['width'],
205                 empty($_REQUEST['height']) ? 0 : $_REQUEST['height']
206         );
207         if (!empty($_REQUEST['as_data'])) {
208             $this->jok(base64_encode(file_get_contents($fn)));
209         }
210         
211         $cv->serve('attachment');
212         exit;
213         
214         
215         
216     }
217     
218     
219  
220     function serve($img)
221     {
222         $this->sessionState(0); // turn off session... - locking...
223         
224         require_once 'File/Convert.php';
225         if (!file_exists($img->getStoreName())) {
226 //            print_r($img);exit;
227             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
228                 urlencode("Original file was missing : " . $img->getStoreName()));
229     
230         }
231 //        print_r($img);exit;
232         $x = $img->toFileConvert();
233         if (empty($this->as_mimetype)) {
234             $this->as_mimetype  = $img->mimetype;
235         }
236         if (!$this->thumb) {
237             $x->convert( $this->as_mimetype);
238             $x->serve($this->method);
239             exit;
240         }
241         //echo "SKALING?  $this->size";
242         // acutally if we generated the image, then we do not need to validate the size..
243         
244         
245         
246         // if the mimetype is not converted..
247         // then the filename should be original.{size}.jpeg
248         $fn = $img->getStoreName() . '.'. $this->size . '.jpeg'; // thumbs are currenly all jpeg.!???
249         
250         if (!file_exists($fn)) {
251             $fn = $img->getStoreName()  . '.'. $this->size . '.'. $img->fileExt();
252             // if it's an image, convert into the same type for thumbnail..
253             if (preg_match('#^image/#', $img->mimetype)) {
254                $this->as_mimetype = $img->mimetype;
255             }
256         }
257         
258         if (!file_exists($fn)) {            
259             
260             $this->validateSize();
261         }
262         
263         $x->convert( $this->as_mimetype, $this->size);
264         $x->serve();
265         exit;
266         
267         
268         
269         
270     }
271     function validateSize()
272     {
273         if (($this->authUser && $this->authUser->company_id && $this->authUser->company()->comptype=='OWNER') || $_SERVER['SERVER_ADDR'] == $_SERVER['REMOTE_ADDR']) {
274             return true;
275         }
276         
277         // DEFAULT allowed - override with $cfg['sizes'];
278         
279         $sizes = array(
280                 '100', 
281                 '100x100', 
282                 '150', 
283                 '150x150', 
284                 '200', 
285                 '200x0',
286                 '200x200',  
287                 '400x0',
288                 '300x100', // logo on login.
289                 '500'
290             );
291         
292         // this should be configurable...
293         $ff = HTML_FlexyFramework::get();
294         $cfg = isset($ff->Pman_Images) ? $ff->Pman_Images :
295                 (isset($ff->Pman_Core_Images) ? $ff->Pman_Core_Images : array());
296         
297         
298         
299         if (!empty($cfg['sizes'])) {
300             $sizes = array_merge($sizes , $cfg['sizes']);
301         }
302         
303         
304         if (!in_array($this->size, $sizes)) {
305             die("invalid scale - ".$this->size);
306         }
307     }
308     /**
309      * replace image urls
310      *
311      * The idea of this code was to replace urls for images when you have an admin
312      * and a distribution page. with different urls.
313      *
314      * it may be usefull later if things like embedded images in emails. but
315      * I think it's proably better not to use this.
316      *
317      * The key problem being how to determine if we are replacing 'our' images or some external one..
318      * 
319      *
320      */
321     
322     
323     static function replaceImageURLS($html)
324     {
325         
326         $ff = HTML_FlexyFramework::get();
327         if (!isset($ff->Pman_Images['public_baseURL'])) {
328             return $html;
329         }
330         //var_dump($ff->Pman_Images['public_baseURL']);
331         $baseURL = $ff->Pman_Images['public_baseURL'];
332         
333         preg_match_all('/<img\s+[^>]+>/i',$html, $result); 
334         //print_r($result);
335         $matches = array_unique($result[0]);
336         foreach($matches as $img) {
337             $imatch = array();
338             preg_match_all('/(width|height|src)="([^"]*)"/i',$img, $imatch);
339             // build a keymap
340             $attr =  array();
341             
342             foreach($imatch[1] as $i=>$key) {
343                 $attr[$key] = $imatch[2][$i];
344             }
345             if (!isset($attr['src']) || 0 !== strpos($attr['src'], $baseURL)) {
346                 continue;
347             }
348             $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
349         }
350         
351         $result = array();
352         preg_match_all('/<a\s+[^>]+>/i',$html, $result); 
353
354         $matches = array_unique($result[0]);
355         foreach($matches as $img) {
356             $imatch = array();
357             preg_match_all('/(href)="([^"]*)"/i',$img, $imatch);
358             // build a keymap
359             $attr =  array();
360             
361             foreach($imatch[1] as $i=>$key) {
362                 $attr[$key] = $imatch[2][$i];
363             }
364             if (!isset($attr['href']) || 0 !== strpos($attr['href'], $baseURL)) { 
365                 continue;
366             }
367             $html = self::replaceImgUrl($html, $baseURL, $img, $attr, 'href' );
368         }
369         
370         return $html;
371     }
372     static function replaceImgUrl($html, $baseURL, $tag, $attr, $attr_name) 
373     {
374         
375         //print_R($attr);
376         // see if it's an image url..
377         // Images/{ID}/fullname.xxxx
378         // Images/Thumb/200/{ID}/fullname.xxxx
379         // Images/Download/{ID}/fullname.xxxx
380         
381         $attr_url = $attr[$attr_name];
382         $umatch  = false;
383         if(!preg_match('#/(Images|Images/Thumb/[a-z0-9]+|Images/Download)/([0-9]+)/(.*)$#', $attr_url, $umatch))  {
384             return $html;
385         }
386         $id = $umatch[2];
387         $img = DB_DataObject::factory('Images');
388         if (!$img->get($id)) {
389             return $html;
390         }
391         $type = explode('/', $umatch[1]);
392         $thumbsize = -1;
393          
394         if (count($type) > 2 && $type[1] == 'Thumb') {
395             $thumbsize = $type[2];
396             $provider = '/Images/Thumb';
397         } else {
398             $provider = '/'.$umatch[1];
399         }
400         
401         if (!empty($attr['width']) || !empty($attr['height']) )
402         {
403             // no support for %...
404             $thumbsize =
405                 (empty($attr['width']) ? '0' : $attr['width'] * 1) .
406                 'x' .
407                 (empty($attr['height']) ? '0' : $attr['height'] * 1);
408              $provider = '/Images/Thumb';
409             
410         }
411         
412         if ($thumbsize !== -1) {
413             // change in size..
414             // need to regenerate it..
415             
416             $type = array('Images', 'Thumb', $thumbsize);
417                 
418             $fc = $img->toFileConvert();
419             // make sure it's available..
420             $fc->convert($img->mimetype, $thumbsize);
421             
422             
423         } else {
424             $provider = $provider == 'Images/Thumb' ? 'Images' : $provider; 
425         }
426         
427         
428         // finally replace the original TAG with the new version..
429         
430         $new_tag = str_replace(
431             $attr_name. '="'. $attr_url . '"',
432             $attr_name .'="'. htmlspecialchars($img->URL($thumbsize, $provider, $baseURL)) . '"',
433             $tag
434         );
435         
436         
437         return str_replace($tag, $new_tag, $html);
438          
439     }
440     
441     function downloadEvent($bits)
442     {
443         $popts = PEAR::getStaticProperty('Pman','options');
444         $ev = DB_DAtaObject::Factory('events');
445         if (!$ev->get($bits[1])) {
446             die("could not find event id");
447         }
448         // technically same user only.. -- normally www-data..
449         if (function_exists('posix_getpwuid')) {
450             $uinfo = posix_getpwuid( posix_getuid () ); 
451             $user = $uinfo['name'];
452         } else {
453             $user = getenv('USERNAME'); // windows.
454         }
455         $ff = HTML_FlexyFramework::get();
456         $file = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/',strtotime($ev->event_when)). $ev->id . ".json";
457         $filesJ = json_decode(file_get_contents($file));
458
459         //print_r($filesJ);
460
461         foreach($filesJ->FILES as $k=>$f){
462             if ($f->tmp_name != $bits[2]) {
463                 continue;
464             }
465
466             $src = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/', strtotime($ev->event_when)).  $f->tmp_name ;
467             if (!file_exists($src)) {
468                 die("file was not saved");
469             }
470             header ('Content-Type: ' . $f->type);
471
472             header("Content-Disposition: attachment; filename=\"".basename($f->name)."\";" );
473             @ob_clean();
474             flush();
475             readfile($src);
476             exit;
477         }
478     }
479     
480 }