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     
41     // tables that do not need authentication checks before serving.
42     var $public_image_tables = array();
43     
44     
45     function getAuth()
46     {
47         parent::getAuth(); // load company!
48         //return true;
49         $au = $this->getAuthUser();
50         
51         if (!$au) {
52             $this->authUser = false;
53             return true;//die("Access denied");
54         }
55         
56         $this->authUser = $au;
57         
58         return true;
59     }
60     var $thumb = false;
61     var $as_mimetype = false;
62     var $method = 'inline';
63     var $page = false;
64     
65     function get($s, $opts=array()) // determin what to serve!!!!
66     {
67         // for testing only.
68         //if (!empty($_GET['_post'])) {
69         //   return $this->post();
70         //}
71         
72         $this->as_mimetype = empty($_REQUEST['as']) ? '' : $_REQUEST['as'];
73         
74         $this->page = empty($_REQUEST['page']) ? false : (int) $_REQUEST['page'];
75         
76         $bits= explode('/', $s);
77         $id = 0;
78 //        var_dump($bits);die('in');
79         // without id as first part...
80         if (!empty($bits[0]) && $bits[0] == 'Thumb') {
81             $this->thumb = true;
82             $this->as_mimetype = 'image/jpeg';
83             $this->size = empty($bits[1]) ? '0x0' : $bits[1];
84             $id = empty($bits[2]) ? 0 :   $bits[2];
85             
86         } else if (!empty($bits[0]) && $bits[0] == 'Download') {
87             $this->method = 'attachment';
88             $id = empty($bits[1]) ? 0 :   $bits[1];
89             
90         } else  if (!empty($bits[1]) && $bits[1] == 'Thumb') { // with id as first part.
91             $this->thumb = true;
92             $this->as_mimetype = 'image/jpeg';
93             $this->size = empty($bits[2]) ? '0x0' : $bits[2];
94             $id = empty($bits[3]) ? 0 :   $bits[3];
95             
96         } else if (!empty($bits[0]) && $bits[0] == 'events') {
97             if (!$this->authUser) {
98                 $this->imgErr("no-authentication-events",$s);
99             }
100             $this->downloadEvent($bits);
101             $this->imgErr("unknown file",$s);
102             
103             
104         } else {
105         
106             $id = empty($bits[0]) ? 0 :  $bits[0];
107         }
108         
109         if (strpos($id,':') > 0) {  // id format  tablename:id:-imgtype
110             
111             if (!$this->authUser) {
112                 $this->imgErr("not-authenticated-using-colon-format",$s);
113                 
114             }
115             
116             $onbits = explode(':', $id);
117             if ((count($onbits) < 2)   || empty($onbits[1]) || !is_numeric($onbits[1]) || !strlen($onbits[0])) {
118                 $this->imgErr("bad-url",$s);
119                 
120             }
121             //DB_DataObject::debugLevel(1);
122             $img = DB_DataObject::factory('Images');
123             $img->ontable = $onbits[0];
124             $img->onid = $onbits[1];
125             if (empty($_REQUEST['anytype'])) {
126                 $img->whereAdd("mimetype like 'image/%'");
127             }
128             $img->orderBy('title ASC'); /// spurious ordering... (curretnly used by shipping project)
129             if (isset($onbits[2])) {
130                 $img->imgtype = $onbits[2];
131             }
132             $img->limit(1);
133             if (!$img->find(true)) {
134                 $this->imgErr("no images for that item: " . htmlspecialchars($id),$s);
135                 
136             }
137             
138             $id = $img->id;
139             
140             
141         }
142         $id = (int) $id;
143         
144         // depreciated - should use ontable:onid:type here...
145         if (!empty($_REQUEST['ontable'])) {
146             
147             if (!$this->authUser) {
148                 die("authentication required");
149             }
150             
151             //DB_DataObjecT::debugLevel(1);
152             $img = DB_DataObject::factory('Images');
153             $img->setFrom($_REQUEST);
154            
155             
156             
157             $img->limit(1);
158             if (!$img->find(true)) {
159                 $this->imgErr("No file exists",$s);
160             } 
161             $id = $img->id;
162             
163         }
164         
165         
166        
167         $img = DB_DataObjecT::factory('Images');
168          
169         if (!$id || !$img->get($id)) {
170              $this->imgErr("image has been removed or deleted.",$s);
171         }
172         
173         if (!$this->authUser && !in_array($img->ontable,$this->public_image_tables)) {
174            
175             if ($img->ontable != 'core_company') {
176                 $this->imgErr("not-authenticated {$img->ontable}",$s);
177             }
178             if ($img->imgtype != 'LOGO') {
179                 $this->imgErr("not-logo",$s);
180             }
181             $comp  = $img->object();
182             if ($comp->comptype != 'OWNER') {
183                 $this->imgErr("not-owner-company",$s);
184             }
185             return $this->serve($img);
186         
187             
188         }
189         
190         
191         if(!$this->hasPermission($img)){
192             $this->imgErr("access to this image/file has been denied.",$s);
193             
194         }
195         
196         $this->serve($img);
197         exit;
198     }
199     
200     function imgErr($reason,$path) {
201         header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
202             urlencode($reason) .'&path='.urlencode($path));
203         exit;
204     }
205     
206     function hasPermission($img) 
207     {
208         return true;
209     }
210     
211     function post($v)
212     {
213         
214         if (!$this->authUser) {
215             $this->jerr("image conversion only allowed by registered users");
216         }
217         // converts a posted string (eg.svg)
218         // into another type..
219         if (empty($_REQUEST['as'])) {
220            $this->jerr("missing target type");
221         }
222         if (empty($_REQUEST['mimetype'])) {
223             $this->jerr("missing mimetype");
224         }
225         if (empty($_REQUEST['data'])) {
226             $this->jerr("missing data");
227         }
228         
229         
230         $this->as_mimetype = $_REQUEST['as'];
231         $this->mimetype = $_REQUEST['mimetype'];
232         require_once 'File/MimeType.php';
233         $y = new File_MimeType();
234         $src_ext = $y->toExt( $this->mimetype );
235         
236         
237         $tmp = $this->tempName($src_ext);
238         file_put_contents($tmp, $_REQUEST['data']);
239         
240         require_once 'File/Convert.php';
241         $cv = new File_Convert($tmp, $this->mimetype);
242         
243         $fn = $cv->convert(
244                 $this->as_mimetype ,
245                 empty($_REQUEST['width']) ? 0 : $_REQUEST['width'],
246                 empty($_REQUEST['height']) ? 0 : $_REQUEST['height']
247         );
248         if (!empty($_REQUEST['as_data'])) {
249             $this->jok(base64_encode(file_get_contents($fn)));
250         }
251         
252         $cv->serve('attachment');
253         exit;
254         
255         
256         
257     }
258     
259     
260  
261     function serve($img)
262     {
263         $this->sessionState(0); // turn off session... - locking...
264         
265         require_once 'File/Convert.php';
266         if (!file_exists($img->getStoreName())) {
267 //            print_r($img);exit;
268             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
269                 urlencode("Original file was missing : " . $img->getStoreName()));
270     
271         }
272 //        print_r($img);exit;
273         $x = $img->toFileConvert();
274         if (empty($this->as_mimetype) || $img->mimetype == 'image/gif') {
275             $this->as_mimetype  = $img->mimetype;
276         }
277         if (!$this->thumb) {
278             $x->convert( $this->as_mimetype);
279             $x->serve($this->method);
280             exit;
281         }
282         //echo "SKALING?  $this->size";
283         // acutally if we generated the image, then we do not need to validate the size..
284         
285         // if the mimetype is not converted..
286         // then the filename should be original.{size}.jpeg
287         $fn = $img->getStoreName() . '.'. $this->size . '.jpeg'; // thumbs are currenly all jpeg.!???
288         
289         if($img->mimetype == 'image/gif'){
290             $fn = $img->getStoreName() . '.'. $this->size . '.gif';
291         }
292         
293         if (!file_exists($fn)) {
294             $fn = $img->getStoreName()  . '.'. $this->size . '.'. $img->fileExt();
295             // if it's an image, convert into the same type for thumbnail..
296             if (preg_match('#^image/#', $img->mimetype)) {
297                $this->as_mimetype = $img->mimetype;
298             }
299         }
300         
301         if (!file_exists($fn)) {    
302             $this->validateSize();
303         }
304         
305         if(!empty($this->page) && !is_nan($this->page * 1)){
306             $x->convert( $this->as_mimetype, $this->size, 0, $this->page);
307         } else {
308             $x->convert( $this->as_mimetype, $this->size);
309         }
310         
311         $x->serve();
312         exit;
313         
314         
315         
316         
317     }
318     function validateSize()
319     {
320         if (($this->authUser && !empty($this->authUser->company_id) && $this->authUser->company()->comptype=='OWNER')
321             || $_SERVER['SERVER_ADDR'] == $_SERVER['REMOTE_ADDR']) {
322             return true;
323         }
324         
325         
326         $ff = HTML_FlexyFramework::get();
327         
328         $sizes = array(
329                 '100', 
330                 '100x100', 
331                 '150', 
332                 '150x150', 
333                 '200', 
334                 '200x0',
335                 '200x200',  
336                 '400x0',
337                 '300x100',
338                 '500'
339             );
340         
341         $cfg = isset($ff->Pman_Images) ? $ff->Pman_Images :
342                 (isset($ff->Pman_Core_Images) ? $ff->Pman_Core_Images : array());
343         
344         if (!empty($cfg['sizes'])) {
345             $sizes = array_merge($sizes , $cfg['sizes']);
346         }
347         
348         $project = $ff->project;
349         
350         require_once $ff->project . '.php';
351         
352         $project = str_replace('/', '_', $project);
353          
354         $pr_obj = new $project;
355          
356        // var_dump($pr_obj->Pman_Core_Images_Size);
357         if(isset($pr_obj->Pman_Core_Images_Size)){
358             $sizes = $pr_obj->Pman_Core_Images_Size;
359             
360             
361         }
362         
363         if (!in_array($this->size, $sizes)) {
364             die("invalid scale - ".$this->size);
365         }
366     }
367     /**
368      * replace image urls
369      *
370      * The idea of this code was to replace urls for images when you have an admin
371      * and a distribution page. with different urls.
372      *
373      * it may be usefull later if things like embedded images in emails. but
374      * I think it's proably better not to use this.
375      *
376      * The key problem being how to determine if we are replacing 'our' images or some external one..
377      * 
378      *
379      */
380     
381     
382     static function replaceImageURLS($html)
383     {
384         
385         $ff = HTML_FlexyFramework::get();
386         if (!isset($ff->Pman_Images['public_baseURL'])) {
387             return $html;
388         }
389         //var_dump($ff->Pman_Images['public_baseURL']);
390         $baseURL = $ff->Pman_Images['public_baseURL'];
391         
392         preg_match_all('/<img\s+[^>]+>/i',$html, $result); 
393         //print_r($result);
394         $matches = array_unique($result[0]);
395         foreach($matches as $img) {
396             $imatch = array();
397             preg_match_all('/(width|height|src)="([^"]*)"/i',$img, $imatch);
398             // build a keymap
399             $attr =  array();
400             
401             foreach($imatch[1] as $i=>$key) {
402                 $attr[$key] = $imatch[2][$i];
403             }
404             // does it contain baseURL??? --- well what about relative paths...
405             //print_R($attr);
406             
407             if (empty($attr['src'])) {
408                 continue;
409             }
410             if (0 !== strpos($attr['src'], $baseURL)) {
411                 // it starts with our 'new' baseURL?
412                 $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
413                 continue;
414             }
415             if (false !== strpos($attr['src'], '//') && false === strpos($attr['src'], $baseURL)) {
416                 // contains an absolute path.. that is probably not us...
417                 continue;
418             }
419             // what about mailto or data... - just ignore?? for images...
420             
421             $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
422             
423         }
424         
425         
426         $result = array();
427         preg_match_all('/<a\s+[^>]+>/i',$html, $result); 
428
429         $matches = array_unique($result[0]);
430         foreach($matches as $img) {
431             $imatch = array();
432             preg_match_all('/(href)="([^"]*)"/i',$img, $imatch);
433             // build a keymap
434             $attr =  array();
435             
436             foreach($imatch[1] as $i=>$key) {
437                 $attr[$key] = $imatch[2][$i];
438             }
439             if (!isset($attr['href']) || 0 !== strpos($attr['href'], $baseURL)) { 
440                 continue;
441             }
442             $html = self::replaceImgUrl($html, $baseURL, $img, $attr, 'href' );
443         }
444         
445         return $html;
446     }
447     static function replaceImgUrl($html, $baseURL, $tag, $attr, $attr_name) 
448     {
449         
450         //print_R($attr);
451         // see if it's an image url..
452         // Images/{ID}/fullname.xxxx
453         // Images/Thumb/200/{ID}/fullname.xxxx
454         // Images/Download/{ID}/fullname.xxxx
455         
456         $attr_url = $attr[$attr_name];
457         $umatch  = false;
458         if(!preg_match('#/(Images|Images/Thumb/[a-z0-9]+|Images/Download)/([0-9]+)/(.*)$#', $attr_url, $umatch))  {
459             return $html;
460         }
461         
462         $id = $umatch[2];
463         $hash = '';
464         if (!empty($umatch[3]) && strpos($umatch[3],'#')) {
465             $hash = '#'. array_pop(explode('#',$umatch[3]));
466         }
467         
468         
469         $img = DB_DataObject::factory('Images');
470         if (!$img->get($id)) {
471             return $html;
472         }
473         $type = explode('/', $umatch[1]);
474         $thumbsize = -1;
475          
476         if (count($type) > 2 && $type[1] == 'Thumb') {
477             $thumbsize = $type[2];
478             $provider = '/Images/Thumb';
479         } else {
480             $provider = '/'.$umatch[1];
481         }
482         
483         if (!empty($attr['width']) || !empty($attr['height']) )
484         {
485             // no support for %...
486             $thumbsize =
487                 (empty($attr['width']) ? '0' : $attr['width'] * 1) .
488                 'x' .
489                 (empty($attr['height']) ? '0' : $attr['height'] * 1);
490              $provider = '/Images/Thumb';
491             
492         }
493         
494         if ($thumbsize !== -1) {
495             // change in size..
496             // need to regenerate it..
497             
498             $type = array('Images', 'Thumb', $thumbsize);
499                 
500             $fc = $img->toFileConvert();
501             // make sure it's available..
502             $fc->convert($img->mimetype, $thumbsize);
503             
504             
505         } else {
506             $provider = $provider == 'Images/Thumb' ? 'Images' : $provider; 
507         }
508         
509         
510         // finally replace the original TAG with the new version..
511         
512         $new_tag = str_replace(
513             $attr_name. '="'. $attr_url . '"',
514             $attr_name .'="'. htmlspecialchars($img->URL($thumbsize, $provider, $baseURL)) . $hash .'"',
515             $tag
516         );
517         
518         
519         return str_replace($tag, $new_tag, $html);
520          
521     }
522     
523     function downloadEvent($bits)
524     {
525         $popts = PEAR::getStaticProperty('Pman','options');
526         $ev = DB_DAtaObject::Factory('events');
527         if (!$ev->get($bits[1])) {
528             die("could not find event id");
529         }
530         // technically same user only.. -- normally www-data..
531         if (function_exists('posix_getpwuid')) {
532             $uinfo = posix_getpwuid( posix_getuid () ); 
533             $user = $uinfo['name'];
534         } else {
535             $user = getenv('USERNAME'); // windows.
536         }
537         $ff = HTML_FlexyFramework::get();
538         $file = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/',strtotime($ev->event_when)). $ev->id . ".json";
539         $filesJ = json_decode(file_get_contents($file));
540
541         //print_r($filesJ);
542
543         foreach($filesJ->FILES as $k=>$f){
544             if ($f->tmp_name != $bits[2]) {
545                 continue;
546             }
547
548             $src = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/', strtotime($ev->event_when)).  $f->tmp_name ;
549             if (!file_exists($src)) {
550                 die("file was not saved");
551             }
552             header ('Content-Type: ' . $f->type);
553
554             header("Content-Disposition: attachment; filename=\"".basename($f->name)."\";" );
555             @ob_clean();
556             flush();
557             readfile($src);
558             exit;
559         }
560     }
561     
562 }