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