comment
[Pman.Core] / DataObjects / Images.php
1 <?php
2 /**
3  * Table Definition for Images
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Images extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'Images';                          // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $filename;                        // string(255)  not_null
15     public $ontable;                         // string(32)  not_null multiple_key
16     public $onid;                            // int(11)  not_null
17     public $mimetype;                        // string(64)  not_null
18     public $width;                           // int(11)  not_null
19     public $height;                          // int(11)  not_null
20     public $filesize;                        // int(11)  not_null
21     public $displayorder;                    // int(11)  not_null
22     public $language;                        // string(6)  not_null
23     public $parent_image_id;                 // int(11)  not_null
24     public $created;                         // datetime(19)  not_null binary
25     public $imgtype;                         // string(32)  not_null
26     public $linkurl;                         // string(254)  not_null
27     public $descript;                        // blob(65535)  not_null blob
28     public $title;                           // string(128)  not_null
29     
30     /* the code above is auto generated do not remove the tag below */
31     ###END_AUTOCODE
32     function applyFilters($q, $au, $roo)
33     {
34         $tn = $this->tableName();
35         
36         if(!empty($q['search']['filename'])){
37             $this->whereAdd("
38                 $tn.filename LIKE '%{$this->escape($q['search']['filename'])}%' OR $tn.title LIKE '%{$this->escape($q['search']['filename'])}%'
39             ");
40         }
41
42         if(!empty($q['_to_base64']) && !empty($q['image_id'])) {
43             $i = DB_DataObject::factory("Images");
44             $i->get($q['image_id']);
45             $roo->jok($i->toBase64());
46         }
47         
48
49     }
50     
51     function checkPerm($lvl, $au)
52     {
53         // default permissons are to
54         // allow create / edit / if the user has
55         
56         if (!$au) {
57             return false;
58         }
59         
60         $o = $this->object();
61         //print_r($o);
62         if ($o &&  method_exists($o, 'checkPerm')) {
63             // edit permissions on related object needed...
64             return $o->checkPerm( $lvl == 'S' ? 'S' : 'E' , $au);
65             
66         }
67         
68         return true; //// ??? not really that safe...
69         
70     }
71     
72     function beforeInsert($q, $roo) 
73     {
74         if (isset($q['_remote_upload'])) {
75             require_once 'System.php';
76             
77             $tmpdir  = System::mktemp("-d remote_upload");
78             
79             $path = $tmpdir . '/' . basename($q['_remote_upload']);
80             
81             if(!file_exists($path)){
82                file_put_contents($path, file_get_contents($q['_remote_upload'])); 
83             }
84             
85             $imageInfo = getimagesize($path);
86             
87             require_once 'File/MimeType.php';
88             $y = new File_MimeType();
89             $ext = $y->toExt(trim((string) $imageInfo['mime'] ));
90             
91             if (!preg_match("/\." . $ext."$/", $path, $matches)) {
92                 rename($path,$path.".".$ext);
93                 $path.= ".".$ext;
94             }
95             
96             if (!$this->createFrom($path)) {
97                 $roo->jerr("erro making image" . $q['_remote_upload']);
98             }
99             
100             if(!empty($q['_return_after_create'])){
101                 return;
102             }
103             
104             $roo->addEvent("ADD", $this, $this->toEventString());
105         
106             $r = DB_DataObject::factory($this->tableName());
107             $r->id = $this->id;
108             $roo->loadMap($r);
109             $r->limit(1);
110             $r->find(true);
111             $roo->jok($r->URL(-1,'/Images') . '#attachment-'.  $r->id);
112         }
113         
114     }
115     
116      
117     /**
118      * create an email from file.
119      * these must have been set first.
120      * ontable / onid.
121      * 
122      */
123     function createFrom($file, $filename=false)
124     {
125         // copy the file into the storage area..
126         if (!file_exists($file) || !filesize($file)) {
127             $this->err = "File $file did not exist or is 0 size";
128             return false;
129         }
130         
131         $filename = empty($filename) ? $file : $filename;
132         
133         if (empty($this->mimetype)) {
134             require_once 'File/MimeType.php';
135             $y = new File_MimeType();
136             $this->mimetype = $y->fromFilename($filename);
137         }
138         
139         $this->mimetype = strtolower($this->mimetype);
140         
141         $mta = explode('/', $this->mimetype);
142         if (array_shift($mta) == 'image') { 
143         
144             $imgs = @getimagesize($file);
145             
146             if (empty($imgs) || empty($imgs[0]) || empty($imgs[1])) {
147                 // it's a file!!!!
148             } else {
149                 list($this->width , $this->height)  = $imgs;
150             }
151         }
152         
153         if($this->mimetype == 'application/pdf'){
154             $this->no_of_pages = $this->getPdfPages($file);
155         }
156         
157         $this->filesize = filesize($file);
158         $this->created = date('Y-m-d H:i:s');
159          
160         
161         if (empty($this->filename)) {
162             $this->filename = basename($filename);
163         }
164         
165         //DB_DataObject::debugLevel(1);
166         if (!$this->id) {
167             $this->insert();
168         } else {
169             $this->update();
170         }
171         
172         
173         
174         $f = $this->getStoreName();
175         $dest = dirname($f);
176         if (!file_exists($dest)) {
177             // currently this is 0775 due to problems using shared hosing (FTP)
178             // it makes all the files unaccessable..
179             // you can normally solve this by giving the storedirectory better perms
180             // if needed on a dedicated server..
181             $oldumask = umask(0);
182             mkdir($dest, 0775, true);
183             umask($oldumask);  
184         }
185         
186         copy($file,$f);
187         
188         // fill in details..
189         
190         /* thumbnails */
191         
192      
193        // $this->createThumbnail(0,50);
194         return true;
195         
196     }
197
198     /**
199      * Calculate target file name
200      *
201      * @return - target file name
202      */
203     function getStoreName() 
204     {
205         $opts = HTML_FlexyFramework::get()->Pman;
206         $fn = preg_replace('/[^a-z0-9_\.]+/i', '_', $this->filename);
207         return implode( '/', array(
208             $opts['storedir'], '_images_', date('Y/m', strtotime($this->created)), $this->id . '-'. $fn
209         ));
210           
211     }
212     
213     /**
214      * does the files exist?
215      */
216     function exists()
217     {
218         clearstatcache();
219         //var_dump($this->getStoreName());
220         $ret =  file_exists($this->getStoreName());
221         if (!$ret) {
222             return $this->canFix();
223         }
224         return $ret;
225     }
226     /**
227      * the getStorename code got changed, and some old files may not end up with the correct name anymore.
228      * this tries to fix it.
229      *
230      */
231     function canFix() {
232         // look for the image in the folder, with matching id.
233         // this is problematic..
234         $fn = $this->getStoreName();
235         if (file_exists($fn . '-really-missing')) {
236             return false;
237         }
238         if (!file_exists(dirname($fn))) {
239             return false;
240         }
241         foreach( scandir(dirname($fn)) as $n) {
242             if (empty($n) || $n[0] == '.') {
243                 continue;
244             }
245             $bits = explode('-', $n);
246             if ($bits[0] != $this->id) {
247                 continue;
248             }
249             if (preg_match('/\.[0-9]+x[0-9]]+\.jpeg$/', $n)) {
250                 continue;
251             }
252             copy(dirname($fn). '/'.  $n, $fn);
253             clearstatcache();
254             return true;
255         }
256         // fixme - flag it as bad
257         touch($fn . '-really-missing');
258     }
259     
260     
261     /**
262      * deletes all the image instances of it...
263      * 
264      * 
265      */
266     function beforeDelete($dependants_array, $roo)
267     {
268         
269         if (!empty($dependants_array)) {
270             return;
271         }
272         
273         $opts = HTML_FlexyFramework::get()->Pman;
274         $deldir = $opts['storedir']. '/_deleted_images_';
275         clearstatcache();
276         if (!file_exists( $deldir )) {
277             @mkdir($deldir, 0755); // not sure why we are erroring here.. after checking - maybe permissions?
278         }
279             
280         $fn = $this->getStoreName();
281         $b = basename($fn);
282         if (file_exists($fn)) {
283             
284             if (file_exists($deldir . '/'. $b)) {
285                 unlink($fn);
286             } else {
287                 rename($fn, $deldir .'/'. $b);
288             }
289             
290             
291         }
292         // delete thumbs..
293         
294         $d = dirname($fn);
295         if (file_exists($d)) {
296                 
297             $dh = opendir($d);
298             while (false !== ($fn = readdir($dh))) {
299                 if (substr($fn, 0, strlen($b)) == $b) {
300                     
301                     if (file_exists($deldir . '/'. $fn)) {
302                         unlink($d. '/'. $fn);
303                         continue;
304                     }
305                     rename($d. '/'. $fn, $deldir .'/'. $fn);
306                     
307                 }
308             }
309         }
310         
311     }
312     /**
313      * check mimetype against type
314      * - eg. img.is(#image#)
315      *
316      */
317     function is($type)
318     {
319         if (empty($this->mimetype)) {
320             return false;
321         }
322         return 0 === strcasecmp($type, array_shift(explode('/',$this->mimetype)));
323     }
324   
325     /**
326      * onUpload (singlely attached image to a table)
327      */
328     
329     function onUploadWithTbl($tbl,  $fld)
330     {
331         if ( $tbl->__table == 'Images') {
332             return; // not upload to self...
333         }
334         if (empty($_FILES['imageUpload']['tmp_name']) || 
335             empty($_FILES['imageUpload']['name']) || 
336             empty($_FILES['imageUpload']['type'])
337         ) {
338             return false;
339         }
340         if ($tbl->$fld) {
341             HTML_FlexyFramework::get()->page->jerr("updating images is disabled");
342             exit;
343             $image = DB_DataObject::factory('Images');
344             $image->get($tbl->$fld);
345             $image->beforeDelete();
346             $image->delete();
347         }
348         
349         $image = DB_DataObject::factory('Images');
350         $image->onid = $tbl->id;
351         $image->ontable = $tbl->__table;
352         $image->filename = $_FILES['imageUpload']['name']; 
353         $image->mimetype = $_FILES['imageUpload']['type'];
354        
355         if (!$image->createFrom($_FILES['imageUpload']['tmp_name'])) {
356             return false;
357         }
358         $old = clone($tbl);
359         $tbl->$fld = $image->id;
360         $tbl->update($old);
361          
362     }
363     
364     // direct via roo...
365     /// ctrl not used??
366     function onUpload($roo, $table = false, $file = false)
367     {
368         
369         if ($table !== false) {
370             $this->ontable = $table->tableName();
371             $this->onid = $table->pid();
372         }
373         
374         if ($file === false) {
375             $file = isset($_FILES['imageUpload']) ? $_FILES['imageUpload'] : array();
376         }
377         
378         //print_r($_FILES); echo $_FILES['imageUpload']['type'];exit;
379         if (empty($file['tmp_name']) || 
380             empty($file['name']) || 
381             empty($file['type'])
382         ) {
383             
384             $emap = array( 
385                 0=>"There is no error, the file uploaded with success", 
386                 1=>"The uploaded file exceeds the upload_max_filesize directive in php.ini", 
387                 2=>"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" ,
388                 3=>"The uploaded file was only partially uploaded",
389                 4=>"No file was uploaded",
390                 6=>"Missing a temporary folder" 
391             ); 
392             $estr = (empty($file['error']) ? '?': $emap[$file['error']]);
393             $this->err = "Missing file details : Error=". $estr;
394             return false;
395         }
396         
397         if ($this->id) {
398             HTML_FlexyFramework::get()->page->jerr("updating images is disabled");
399             exit;
400             $this->beforeDelete();
401         }
402         if ( empty($this->ontable)) {
403             $this->err = "Missing  ontable";
404             return false;
405         }
406         
407         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
408             // then its an upload 
409             $img  = DB_DataObject::factory('Images');
410             $img->onid = $this->onid;
411             $img->ontable = $this->ontable;
412             $img->imgtype = $this->imgtype;
413             
414             $img->find();
415             while ($img->fetch()) {
416                 HTML_FlexyFramework::get()->page->jerr("updating images is disabled");
417                 exit;
418                 $img->beforeDelete();
419                 $img->delete();
420             }
421             
422         }
423         
424         
425         
426         require_once 'File/MimeType.php';
427         $y = new File_MimeType();
428         $this->mimetype = $file['type'];
429         if (in_array($this->mimetype, array(
430                         'text/application',
431                         'application/octet-stream',
432                         'image/x-png',  // WTF does this?
433                         'image/pjpeg',  // WTF does this?
434                         'application/x-apple-msg-attachment', /// apple doing it's magic...
435                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
436                         'application/csv-tab-delimited-table', // windows again!!?
437                 ))) { // weird tyeps..
438             $inf = pathinfo($file['name']);
439             $this->mimetype  = $y->fromExt($inf['extension']);
440         }
441         
442         
443         $ext = $y->toExt(trim((string) $this->mimetype ));
444         
445         $this->filename = empty($this->filename) ? 
446             $file['name'] : ($this->filename .'.'. $ext); 
447         
448         
449         
450         if (!$this->createFrom($file['tmp_name'])) {
451             $this->err  =  isset($this->err)  ?  $this->err  : "createFrom Image failed";
452             return false;
453         }
454         return true;
455          
456     }
457      
458     
459     
460     /**
461      * return a list of images for an object, optionally with a mime regex.
462      * eg. '%/pdf' or 'image/%'
463      *
464      * usage:
465      *
466      * $i = DB_DataObject::factory('Images');
467      * $i->imgtype = 'LOGO';
468      * $ar = $i->gather($somedataobject, 'image/%');
469      * 
470      * @param {DB_DataObject} dataobject  = the object to gather data on.
471      * @param {String} mimelike  LIKE query to use for search
472      
473      */
474     function gather($obj, $mime_like='', $opts=array())
475     {
476         //DB_DataObject::debugLevel(1);
477         if (empty($obj->id)) {
478             return array();
479         }
480         
481         $c = clone($this);
482         $c->whereAddIn($this->tableName() . '.ontable', array( $obj->tableName(), $obj->__table) , 'string');
483         $c->onid = $obj->id;
484         $c->autoJoin();
485         if (!empty($mime_like)) {
486             $c->whereAdd("Images.mimetype LIKE '". $c->escape($mime_like) ."'");
487         }
488         $c->orderBy('created DESC');
489
490         return $c->fetchAll();
491     }
492      
493     
494     /**
495     * set or get the dataobject this image is associated with
496     * @param DB_DataObject $obj An object to associate this image with
497     *        (does not store it - you need to call update() to do that)
498     * @return DB_DataObject the dataobject this image is attached to.
499     */
500     function object($obj=false)
501     {
502         if ($obj === false) {
503             if (empty($this->ontable) || empty($this->onid)) {
504                 return false;
505             }
506             $ret = DB_DataObject::factory($this->ontable);
507             $ret->get($this->onid);
508             return $ret;
509         }
510         
511         
512         $this->ontable = $obj->tableName();
513         $this->onid = $obj->id; /// assumes our nice standard of using ids..
514         return $obj;
515     }
516     
517      
518     function toRooArray($req)
519     {
520         
521         $ret= $this->toArray();
522       
523          
524         $ff = HTML_FlexyFramework::get();
525         
526         
527         $ret['public_baseURL'] = isset($ff->Pman_Images['public_baseURL']) ?
528                     $ff->Pman_Images['public_baseURL'] : $ff->baseURL;
529         
530         if (!empty($req['query']['imagesize'])) {
531             // query/imageBaseURL ... depricated...? -- set it in config?
532             
533             $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : $ret['public_baseURL'];
534             
535             $ret['url'] = $this->URL(-1, '/Images/Download',$baseURL);
536             
537             $ret['url_view'] = $this->URL(-1, '/Images',$baseURL);    
538             
539             if (!empty($req['query']['imagesize'])) {
540                 $ret['url_thumb'] = $this->URL($req['query']['imagesize'], '/Images/Thumb',$baseURL);
541             }
542             
543             
544         }
545         $ret['shorten_name']   = $this->shorten_name();
546         
547         return $ret;
548     }
549     
550     /**
551      * URL - create  a url for the image.
552      * size - use -1 to show full size.
553      * provier = baseURL + /Images/Thumb ... use '/Images/' for full
554      * 
555      * 
556      */
557     function URL($size , $provider = '/Images/Thumb', $baseURL=false)
558     {
559         if (!$this->id) {
560             return 'about:blank';
561         }
562         if (!$this->exists()) {
563             return 'about:missing';
564         }
565         
566         $shorten_name = $this->shorten_name();
567         
568         $ff = HTML_FlexyFramework::get();
569         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
570         if (preg_match('#^http[s]*://#', $provider)) {
571             $baseURL = '';
572         }
573        
574         if ($size < 0) {
575             $provider = preg_replace('#/Thumb$#', '', $provider);
576             
577             return $baseURL . $provider . "/{$this->id}/{$shorten_name}"; // -- this breaks the rss feed #image-{$this->id}";
578         }
579         //-- max?
580         //$size = max(100, (int) $size);
581         //$size = min(1024, (int) $size);
582         // the size should 200x150 to convert
583         $sizear = preg_split('/(x|c)/', $size);
584         if(!isset($sizear[1])){
585             $sizear[1] =   0; // 0x with '0' is a box? why
586         }
587         
588         $size = implode(strpos($size,'c') > -1 ? 'c' : 'x', $sizear);
589 //        print_r($size);
590         $fc = $this->toFileConvert();
591 //        print_r($size);
592 //        exit;
593         $mt = $this->mimetype;
594         if (!preg_match('#^image/#i',$mt)) {
595             $mt = 'image/jpeg';
596         }
597         
598         $fc->convert($mt, $size);
599         
600         return $baseURL . $provider . "/$size/{$this->id}/{$shorten_name}"; // -- this breaks the rss feed #image-{$this->id}";
601     }
602     
603     function getFromHashURL($url)
604     {
605         $id = false;
606         if (preg_match('/#image-([0-9]+)$/', $url, $matches)) {
607             $id = $matches[1];
608         } else if (preg_match('#Images/Thumb/[^/]+/([0-9]+)/#', $url, $matches)) {
609             $id = $matches[1];
610         } else if (preg_match('#Images/([0-9]+)/#', $url, $matches)) {
611             $id = $matches[1];
612         }
613         
614         if ($id === false ||  $id < 1) {
615             return false;
616         }
617         
618         $img = DB_DAtaObject::Factory('images');
619         if ($img->get($id)) {
620             return $img;
621         }
622         return false;
623     }
624     
625     
626     function shorten_name()
627     {
628         if(empty($this->filename)) {
629             return;
630         }
631         
632         $filename = explode('.', $this->filename);
633         $ext = array_pop($filename);
634         $name = preg_replace("/[^A-Z0-9.]+/i", '-', implode('-', $filename)) ;
635         
636         if(strlen($name) > 32) {
637             $name = substr($name, 0, 32);
638         }
639         
640         $shorten_name = "{$name}.{$ext}";
641         
642         return $shorten_name;
643     }
644     /**
645      * size could be 123x345
646      * 
647      * 
648      */
649     function toHTML($size, $provider = '/Images/Thumb', $extra = '') 
650     {
651         
652         
653         
654         $sz = explode('x', $size);
655         $sx = $sz[0];
656         //var_dump($sz);
657         if (!$this->id || empty($this->width)) {
658             $this->height = $sx;
659             $this->width = empty($sz[1]) ? $sx : $sz[1];
660             $sy = $this->width ;
661         }
662         if (empty($sz[1])) {
663             $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
664             $sy = intval($ratio * $sx);
665         } else {
666             $sy = $sz[1];
667         }
668         // create it?
669        
670         if (strlen($this->title)) {
671             $extra = ' title="'. htmlspecialchars($this->title) . '"';
672         }
673         
674         return '<img src="' . $this->URL($size, $provider) . '"' .
675                 $extra .
676                 ' width="'. $sx . '"' .
677                 ' height="'. $sy . '">';
678         
679         
680     }
681     
682     /**
683      * 
684      * #2142 [new] CMS - image link urls
685      * 
686      * 
687      * 
688      */
689     function toLinkHTML($size, $provider = '/Images/Thumb')
690     {
691         if(empty($this->linkurl)){
692             return $this->toHTML($size, $provider = '/Images/Thumb');
693         }
694         
695         return '<a href="'.$this->linkurl.'" target="_blank">'.$this->toHTML($size, $provider = '/Images/Thumb').'</a>';
696         
697     }
698     
699     
700     /**
701      * to Fileconvert object..
702      *
703      *
704      *
705      */
706     function toFileConvert()
707     {
708         $fn = $this->getStoreName();
709         
710         require_once 'File/Convert.php';
711         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
712         return $fc;
713         
714     }
715     
716     function fileExt()
717     {
718         require_once 'File/MimeType.php';
719         
720         $y = new File_MimeType();
721         return  $y->toExt($this->mimetype);
722         
723         
724     }
725     
726     /**
727      *
728      *
729      *
730      */
731     
732     
733     function setFromRoo($ar, $roo)
734     {
735         // not sure why we do this.. 
736         
737         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
738         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
739             $this->setFrom($ar);
740             $this->limit(1);
741             if ($this->find(true)) {
742                 $roo->old = clone($this);
743             }
744         }   
745             
746         
747         if (!empty($ar['_copy_from'])) {
748             
749             if (!$this->checkPerm( 'A' , $roo->authUser))  {
750                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
751             }
752             
753             $copy = DB_DataObject::factory('Images');
754             $copy->get($ar['_copy_from']);
755             $this->setFrom($copy->toArray());
756             $this->setFrom($ar);
757             $this->createFrom($copy->getStoreName());
758             
759             $roo->addEvent("ADD", $this, $this->toEventString());
760             
761             $r = DB_DataObject::factory($this->tableName());
762             
763             $r->id = $this->id;
764             $roo->loadMap($r);
765             $r->limit(1);
766             $r->find(true);
767             $roo->jok($r->toRooArray($ar));
768             
769             
770         }
771         
772          
773         
774         // FIXME - we should be checking perms here...
775        
776         // this should be doign update
777         $this->setFrom($ar);
778          
779         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
780             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
781         }
782          
783         
784         if (!isset($_FILES['imageUpload'])) {
785             return; // standard update...
786         }
787         
788         
789 //        print_r(!$this->onUpload($this));
790         
791         if ( !$this->onUpload($this)) { 
792             $roo->jerr("File upload failed : error = ". (!empty($this->err) ? $this->err : ''));
793         }
794         
795         $this->addEvent($ar, $roo);
796         
797         $r = DB_DataObject::factory($this->tableName());
798         $r->id = $this->id;
799         $roo->loadMap($r);
800         $r->limit(1);
801         $r->find(true);
802         $roo->jok($r->toRooArray($ar));
803          
804     }
805     
806     function addEvent($ar, $roo)
807     {
808         $roo->addEvent("ADD", $this, $this->toEventString());
809     }
810     
811     function toEventString()
812     {
813         
814         //$p = DB_DataObject::factory($this->ontable);
815         //if (!is_$p) {
816         //    return "ERROR unknown table? {$this->ontable}";
817        // }
818         //$p->get($p->onid);
819         
820         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
821         //$p->toEventString();
822     }
823     
824     function onUploadFromData($data, $roo)
825     {
826         if (empty($data)) {
827             $this->err = "Missing file details";
828             return false;
829         }
830         
831         if ($this->id) {
832             HTML_FlexyFramework::get()->page->jerr("updating images is disabled");
833             exit;
834             $this->beforeDelete();
835         }
836         
837         if (empty($this->ontable)) {
838             $this->err = "Missing  ontable";
839             return false;
840         }
841         
842         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
843             // then its an upload 
844             $img  = DB_DataObject::factory('Images');
845             $img->onid = $this->onid;
846             $img->ontable = $this->ontable;
847             $img->imgtype = $this->imgtype;
848             
849             $img->find();
850             while ($img->fetch()) {
851                 HTML_FlexyFramework::get()->page->jerr("updating images is disabled");
852                 exit;
853                 $img->beforeDelete();
854                 $img->delete();
855             }
856             
857         }
858         
859         require_once 'File/MimeType.php';
860         $y = new File_MimeType();
861         
862         if (in_array($this->mimetype, array(
863                         'text/application',
864                         'application/octet-stream',
865                         'image/x-png',  // WTF does this?
866                         'image/pjpeg',  // WTF does this?
867                         'application/x-apple-msg-attachment', /// apple doing it's magic...
868                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
869                         'application/csv-tab-delimited-table', // windows again!!?
870                 ))) { // weird tyeps..
871             $inf = pathinfo($this->filename);
872             $this->mimetype  = $y->fromExt($inf['extension']);
873         }
874         
875         $ext = $y->toExt(trim((string) $this->mimetype ));
876         
877         $explode_filename = explode('.', $this->filename);
878         if(array_pop($explode_filename) != $ext){
879             $this->filename = $this->filename .'.'. $ext; 
880         }
881         
882         if (!$this->createFromData($data)) {
883             return false;
884         }
885         
886         return true;
887          
888     }
889     
890     function createFromData($data)
891     {   
892         
893         if (0 === strpos($data, "data:")) {
894             // data:image/png;base64, 
895             $data = substr($data,5);
896             $bits = explode(";", $data);
897             $this->mimetype = $bits[0];
898         }
899         static $imgid = 1;
900         if (empty($this->filename)) {
901             require_once 'File/MimeType.php';
902             $y = new File_MimeType();
903             $this->filename = 'image-'.$imgid++.'.'.$y->toExt($this->mimetype);
904         }
905         
906         
907         $this->mimetype = strtolower($this->mimetype);
908         if ($this->mimetype == 'image/jpg') {
909             $this->mimetype = 'image/jpeg';
910         }
911         
912         
913         $explode_mimetype = explode('/', $this->mimetype);
914         
915         if (array_shift($explode_mimetype) == 'image') { 
916         
917             $imgs = @getimagesize('data://'. $data);
918             
919             if (!empty($imgs) && !empty($imgs[0]) && !empty($imgs[1])) {
920                 list($this->width , $this->height)  = $imgs;
921             }
922         }
923         
924         $this->created = date('Y-m-d H:i:s');
925         
926         if (!$this->id) {
927             $this->insert();
928         } else {
929             $this->update();
930         }
931         
932         $f = $this->getStoreName();
933         $dest = dirname($f);
934         if (!file_exists($dest)) {
935             $oldumask = umask(0);
936             mkdir($dest, 0775, true);
937             umask($oldumask);  
938         }
939         
940         file_put_contents($f, file_get_contents("data://" . $data));
941         //var_dump($f);exit;
942         $o = clone($this);
943         
944         $this->filesize = filesize($f);
945         
946         if($this->mimetype == 'application/pdf'){
947             $this->no_of_pages = $this->getPdfPages($f);
948         }
949         
950         $this->update($o);
951         
952         return true;
953         
954     }
955     
956     function toBase64($rotate = false, $scaleWidth = 0, $scaleHeight = 0)
957     {
958         if(!preg_match('/^image\//', $this->mimetype)){
959             return false;
960         }
961         
962         $file = $this->getStoreName();
963
964         if(!file_exists($file)){
965             return false;
966         }
967         
968         $data = file_get_contents($file);
969         
970         if(!empty($scaleWidth) || !empty($scaleHeight)){
971             $data = $this->scale(false, $scaleWidth, $scaleHeight);
972         }
973         
974         if($rotate){
975             $data = $this->rotate($data);
976         }
977         
978         $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data);
979         
980         return $base64;
981     }
982     
983     function getPdfPages($file)
984     {
985         require_once 'System.php';
986         
987         $page = 0;
988
989         $pdfinfo = System::which('pdfinfo');
990
991         if (!file_exists($file) || empty($pdfinfo)) {
992             return $page;
993         }
994         
995         $cmd = "{$pdfinfo} {$file}";
996
997         $ret = `$cmd`;
998
999         $info = explode("\n", $ret);
1000
1001         foreach ($info as $i){
1002
1003             if(!preg_match('/^Pages:[\s]*([0-9]+)/', $i, $matches)){
1004                 continue;
1005             }
1006             
1007             $page = (empty($matches[1])) ? 0 : $matches[1];
1008         }
1009         
1010         return $page;
1011     }
1012     
1013     function rotate($imageBlob = false)
1014     {
1015         if(empty($imageBlob)){
1016             $imagick = new Imagick($this->getStoreName());
1017         } else {
1018             $imagick = new Imagick();
1019             $imagick->readImageBlob($imageBlob);
1020         }
1021         
1022         $orientation = $imagick->getImageOrientation(); 
1023         
1024         switch($orientation) { 
1025             case Imagick::ORIENTATION_BOTTOMRIGHT: 
1026                 $imagick->rotateimage(new ImagickPixel('#00000000'), 180); // rotate 180 degrees 
1027             break; 
1028
1029             case Imagick::ORIENTATION_RIGHTTOP: 
1030                 $imagick->rotateimage(new ImagickPixel('#00000000'), 90); // rotate 90 degrees CW 
1031             break; 
1032
1033             case Imagick::ORIENTATION_LEFTBOTTOM: 
1034                 $imagick->rotateimage(new ImagickPixel('#00000000'), -90); // rotate 90 degrees CCW 
1035             break; 
1036         }
1037         
1038         return $imagick->getImageBlob();
1039     }
1040     
1041     function scale($imageBlob = false, $width = 0, $height = 0)
1042     {
1043         if(empty($imageBlob)){
1044             $imagick = new Imagick($this->getStoreName());
1045         } else {
1046             $imagick = new Imagick();
1047             $imagick->readImageBlob($imageBlob);
1048         }
1049         
1050         $imagick->resizeimage($width, $height, Imagick::FILTER_LANCZOS, true, true);
1051         
1052         return $imagick->getImageBlob();
1053         
1054     }
1055     
1056  }