70fb7e712d7986fa76c47eafba8625afe7a78445
[Pman.Core] / DataObjects / Images.php
1 <?php
2 /**
3  * Table Definition for Images
4  */
5 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     
33     function checkPerm($lvl, $au)
34     {
35         // default permissons are to
36         // allow create / edit / if the user has
37         
38         if (!$au) {
39             return false;
40         }
41         
42         $o = $this->object();
43         //print_r($o);
44         if (method_exists($o, 'checkPerm')) {
45             // edit permissions on related object needed...
46             return $o->checkPerm( $lvl == 'S' ? 'S' : 'E' , $au);
47             
48         }
49         
50         return true; //// ??? not really that safe...
51         
52     }
53     
54     function beforeInsert($q, $roo) 
55     {
56         if (isset($q['_remote_upload'])) {
57             require_once 'System.php';
58             
59             $tmpdir  = System::mktemp("-d remote_upload");
60             
61             $path = $tmpdir . '/' . basename($q['_remote_upload']);
62             
63             if(!file_exists($path)){
64                file_put_contents($path, file_get_contents($q['_remote_upload'])); 
65             }
66             
67             $imageInfo = getimagesize($path);
68             
69             require_once 'File/MimeType.php';
70             $y = new File_MimeType();
71             $ext = $y->toExt(trim((string) $imageInfo['mime'] ));
72             
73             if (!preg_match("/\." . $ext."$/", $path, $matches)) {
74                 rename($path,$path.".".$ext);
75                 $path.= ".".$ext;
76             }
77             
78             if (!$this->createFrom($path)) {
79                 $roo->jerr("erro making image" . $q['_remote_upload']);
80             }
81             
82             if(!empty($q['_return_after_create'])){
83                 return;
84             }
85             
86             $roo->addEvent("ADD", $this, $this->toEventString());
87         
88             $r = DB_DataObject::factory($this->tableName());
89             $r->id = $this->id;
90             $roo->loadMap($r);
91             $r->limit(1);
92             $r->find(true);
93             $roo->jok($r->URL(-1,'/Images') . '#attachment-'.  $r->id);
94         }
95         
96     }
97     
98      
99     /**
100      * create an email from file.
101      * these must have been set first.
102      * ontable / onid.
103      * 
104      */
105     function createFrom($file, $filename=false)
106     {
107         // copy the file into the storage area..
108         if (!file_exists($file) || !filesize($file)) {
109             $this->err = "File $file did not exist or is 0 size";
110             return false;
111         }
112         
113         $filename = empty($filename) ? $file : $filename;
114         
115         if (empty($this->mimetype)) {
116             require_once 'File/MimeType.php';
117             $y = new File_MimeType();
118             $this->mimetype = $y->fromFilename($filename);
119         }
120         
121         $this->mimetype= strtolower($this->mimetype);
122         
123         if (array_shift(explode('/', $this->mimetype)) == 'image') { 
124         
125             $imgs = @getimagesize($file);
126             
127             if (empty($imgs) || empty($imgs[0]) || empty($imgs[1])) {
128                 // it's a file!!!!
129             } else {
130                 list($this->width , $this->height)  = $imgs;
131             }
132         }
133         
134         $this->filesize = filesize($file);
135         $this->created = date('Y-m-d H:i:s');
136          
137         
138         if (empty($this->filename)) {
139             $this->filename = basename($filename);
140         }
141         
142         //DB_DataObject::debugLevel(1);
143         if (!$this->id) {
144             $this->insert();
145         } else {
146             $this->update();
147         }
148         
149         
150         
151         $f = $this->getStoreName();
152         $dest = dirname($f);
153         if (!file_exists($dest)) {
154             // currently this is 0775 due to problems using shared hosing (FTP)
155             // it makes all the files unaccessable..
156             // you can normally solve this by giving the storedirectory better perms
157             // if needed on a dedicated server..
158             $oldumask = umask(0);
159             mkdir($dest, 0775, true);
160             umask($oldumask);  
161         }
162         
163         copy($file,$f);
164         
165         // fill in details..
166         
167         /* thumbnails */
168         
169      
170        // $this->createThumbnail(0,50);
171         return true;
172         
173     }
174
175     /**
176      * Calculate target file name
177      *
178      * @return - target file name
179      */
180     function getStoreName() 
181     {
182         $opts = HTML_FlexyFramework::get()->Pman;
183         $fn = preg_replace('/[^a-z0-9\.]+/i', '_', $this->filename);
184         return implode( '/', array(
185             $opts['storedir'], '_images_', date('Y/m', strtotime($this->created)), $this->id . '-'. $fn
186         ));
187           
188     }
189      
190     /**
191      * deletes all the image instances of it...
192      * 
193      * 
194      */
195     function beforeDelete()
196     {
197         $fn = $this->getStoreName();
198         if (file_exists($fn)) {
199             unlink($fn);
200         }
201         // delete thumbs..
202         $b = basename($fn);
203         $d = dirname($fn);
204         if (file_exists($d)) {
205                 
206             $dh = opendir($d);
207             while (false !== ($fn = readdir($dh))) {
208                 if (substr($fn, 0, strlen($b)) == $b) {
209                     unlink($d. '/'. $fn);
210                 }
211             }
212         }
213         
214     }
215     /**
216      * check mimetype against type
217      * - eg. img.is(#image#)
218      *
219      */
220     function is($type)
221     {
222         if (empty($this->mimetype)) {
223             return false;
224         }
225         return 0 === strcasecmp($type, array_shift(explode('/',$this->mimetype)));
226     }
227   
228     /**
229      * onUpload (singlely attached image to a table)
230      */
231     
232     function onUploadWithTbl($tbl,  $fld)
233     {
234         if ( $tbl->__table == 'Images') {
235             return; // not upload to self...
236         }
237         if (empty($_FILES['imageUpload']['tmp_name']) || 
238             empty($_FILES['imageUpload']['name']) || 
239             empty($_FILES['imageUpload']['type'])
240         ) {
241             return false;
242         }
243         if ($tbl->$fld) {
244             $image = DB_DataObject::factory('Images');
245             $image->get($tbl->$fld);
246             $image->beforeDelete();
247             $image->delete();
248         }
249         
250         $image = DB_DataObject::factory('Images');
251         $image->onid = $tbl->id;
252         $image->ontable = $tbl->__table;
253         $image->filename = $_FILES['imageUpload']['name']; 
254         $image->mimetype = $_FILES['imageUpload']['type'];
255        
256         if (!$image->createFrom($_FILES['imageUpload']['tmp_name'])) {
257             return false;
258         }
259         $old = clone($tbl);
260         $tbl->$fld = $image->id;
261         $tbl->update($old);
262          
263     }
264     
265     // direct via roo...
266     /// ctrl not used??
267     function onUpload($roo)
268     {
269         //print_r($_FILES); echo $_FILES['imageUpload']['type'];exit;
270         if (empty($_FILES['imageUpload']['tmp_name']) || 
271             empty($_FILES['imageUpload']['name']) || 
272             empty($_FILES['imageUpload']['type'])
273         ) {
274             
275             $emap = array( 
276                 0=>"There is no error, the file uploaded with success", 
277                 1=>"The uploaded file exceeds the upload_max_filesize directive in php.ini", 
278                 2=>"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" ,
279                 3=>"The uploaded file was only partially uploaded",
280                 4=>"No file was uploaded",
281                 6=>"Missing a temporary folder" 
282             ); 
283             $estr = (empty($_FILES['imageUpload']['error']) ? '?': $emap[$_FILES['imageUpload']['error']]);
284             $this->err = "Missing file details : Error=". $estr;
285             return false;
286         }
287         
288         if ($this->id) {
289             $this->beforeDelete();
290         }
291         if ( empty($this->ontable)) {
292             $this->err = "Missing  ontable";
293             return false;
294         }
295         
296         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
297             // then its an upload 
298             $img  = DB_DataObject::factory('Images');
299             $img->onid = $this->onid;
300             $img->ontable = $this->ontable;
301             $img->imgtype = $this->imgtype;
302             
303             $img->find();
304             while ($img->fetch()) {
305                 $img->beforeDelete();
306                 $img->delete();
307             }
308             
309         }
310         
311         
312         
313         require_once 'File/MimeType.php';
314         $y = new File_MimeType();
315         $this->mimetype = $_FILES['imageUpload']['type'];
316         if (in_array($this->mimetype, array(
317                         'text/application',
318                         'application/octet-stream',
319                         'image/x-png',  // WTF does this?
320                         'image/pjpeg',  // WTF does this?
321                         'application/x-apple-msg-attachment', /// apple doing it's magic...
322                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
323                         'application/csv-tab-delimited-table', // windows again!!?
324                 ))) { // weird tyeps..
325             $inf = pathinfo($_FILES['imageUpload']['name']);
326             $this->mimetype  = $y->fromExt($inf['extension']);
327         }
328         
329         
330         $ext = $y->toExt(trim((string) $this->mimetype ));
331         
332         $this->filename = empty($this->filename) ? 
333             $_FILES['imageUpload']['name'] : ($this->filename .'.'. $ext); 
334         
335         
336         
337         if (!$this->createFrom($_FILES['imageUpload']['tmp_name'])) {
338             $this->err  =  isset($this->err)  ?  $this->err  : "createFrom Image failed";
339             return false;
340         }
341         return true;
342          
343     }
344      
345     
346     
347     /**
348      * return a list of images for an object, optionally with a mime regex.
349      * eg. '%/pdf' or 'image/%'
350      *
351      * usage:
352      *
353      * $i = DB_DataObject::factory('Images');
354      * $i->imgtype = 'LOGO';
355      * $ar = $i->gather($somedataobject, 'image/%');
356      * 
357      * @param {DB_DataObject} dataobject  = the object to gather data on.
358      * @param {String} mimelike  LIKE query to use for search
359      
360      */
361     function gather($obj, $mime_like='', $opts=array())
362     {
363         //DB_DataObject::debugLevel(1);
364         if (empty($obj->id)) {
365             return array();
366         }
367         
368         $c = clone($this);
369         $c->whereAddIn($this->tableName() . '.ontable', array( $obj->tableName(), $obj->__table) , 'string');
370         $c->onid = $obj->id;
371         $c->autoJoin();
372         if (!empty($mime_like)) {
373             $c->whereAdd("Images.mimetype LIKE '". $c->escape($mime_like) ."'");
374         }
375         $c->orderBy('created DESC');
376
377         return $c->fetchAll();
378     }
379      
380     
381     /**
382     * set or get the dataobject this image is associated with
383     * @param DB_DataObject $obj An object to associate this image with
384     *        (does not store it - you need to call update() to do that)
385     * @return DB_DataObject the dataobject this image is attached to.
386     */
387     function object($obj=false)
388     {
389         if ($obj === false) {
390             if (empty($this->ontable) || empty($this->onid)) {
391                 return false;
392             }
393             $ret = DB_DataObject::factory($this->ontable);
394             $ret->get($this->onid);
395             return $ret;
396         }
397         
398         
399         $this->ontable = $obj->tableName();
400         $this->onid = $obj->id; /// assumes our nice standard of using ids..
401         return $obj;
402     }
403     
404      
405     function toRooArray($req) {
406         
407         $ret= $this->toArray();
408       
409         static $ff = false;
410         if (!$ff) {
411             $ff = HTML_FlexyFramework::get();
412         }
413         
414         $ret['public_baseURL'] = isset($ff->Pman_Images['public_baseURL']) ?
415                     $ff->Pman_Images['public_baseURL'] : $ff->baseURL;
416         
417         if (!empty($req['query']['imagesize'])) {
418             // query/imageBaseURL ... depricated...? -- set it in config?
419             
420             $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : $ret['public_baseURL'];
421             
422             $ret['url'] = $this->URL(-1, '/Images/Download',$baseURL);
423             
424             $ret['url_view'] = $this->URL(-1, '/Images',$baseURL);    
425             
426             if (!empty($req['query']['imagesize'])) {
427                 $ret['url_thumb'] = $this->URL($req['query']['imagesize'], '/Images/Thumb',$baseURL);
428             }
429         }
430         
431          
432          
433         return $ret;
434     }
435     
436     /**
437      * URL - create  a url for the image.
438      * size - use -1 to show full size.
439      * provier = baseURL + /Images/Thumb ... use '/Images/' for full
440      * 
441      * 
442      */
443     function URL($size , $provider = '/Images/Thumb', $baseURL=false)
444     {
445         if (!$this->id) {
446             return 'about:blank';
447             
448         }
449
450         $ff = HTML_FlexyFramework::get();
451         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
452         if (preg_match('#^http[s]*://#', $provider)) {
453             $baseURL = '';
454         }
455        
456         if ($size < 0) {
457             $provider = preg_replace('#/Thumb$#', '', $provider);
458             
459             return $baseURL . $provider . "/{$this->id}/{$this->filename}";
460         }
461         //-- max?
462         //$size = max(100, (int) $size);
463         //$size = min(1024, (int) $size);
464         // the size should 200x150 to convert
465         $sizear = preg_split('/(x|c)/', $size);
466         if(empty($sizear[1])){
467             $sizear[1] = 0;
468         }
469         $size = implode(strpos($size,'c') > -1 ? 'c' : 'x', $sizear);
470 //        print_r($size);
471         $fc = $this->toFileConvert();
472 //        print_r($size);
473 //        exit;
474         $mt = $this->mimetype;
475         if (!preg_match('#^image/#i',$mt)) {
476             $mt = 'image/jpeg';
477         }
478         
479         $fc->convert($mt, $size);
480         
481         return $baseURL . $provider . "/$size/{$this->id}/{$this->filename}";
482     }
483     /**
484      * size could be 123x345
485      * 
486      * 
487      */
488     function toHTML($size, $provider = '/Images/Thumb') 
489     {
490         
491         
492         
493         $sz = explode('x', $size);
494         $sx = $sz[0];
495         //var_dump($sz);
496         if (!$this->id || empty($this->width)) {
497             $this->height = $sx;
498             $this->width = empty($sz[1]) ? $sx : $sz[1];
499             $sy = $this->width ;
500         }
501         if (empty($sz[1])) {
502             $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
503             $sy = $ratio * $sx;
504         } else {
505             $sy = $sz[1];
506         }
507         // create it?
508         $extra = '';
509         if (strlen($this->title)) {
510             $extra = ' title="'. htmlspecialchars($this->title) . '"';
511         }
512         
513         return '<img src="' . $this->URL($size, $provider) . '"' .
514                 $extra .
515                 ' width="'. $sx . '"' .
516                 ' height="'. $sy . '">';
517         
518         
519     }
520     
521     /**
522      * 
523      * #2142 [new] CMS - image link urls
524      * 
525      * 
526      * 
527      */
528     function toLinkHTML($size, $provider = '/Images/Thumb')
529     {
530         if(empty($this->linkurl)){
531             return $this->toHTML($size, $provider = '/Images/Thumb');
532         }
533         
534         return '<a href="'.$this->linkurl.'" target="_blank">'.$this->toHTML($size, $provider = '/Images/Thumb').'</a>';
535         
536     }
537     
538     
539     /**
540      * to Fileconvert object..
541      *
542      *
543      *
544      */
545     function toFileConvert()
546     {
547         require_once 'File/Convert.php';
548         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
549         return $fc;
550         
551     }
552     
553     function fileExt()
554     {
555         require_once 'File/MimeType.php';
556         
557         $y = new File_MimeType();
558         return  $y->toExt($this->mimetype);
559         
560         
561     }
562     
563     /**
564      *
565      *
566      *
567      */
568     
569     
570     function setFromRoo($ar, $roo)
571     {
572         // not sure why we do this.. 
573         
574         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
575         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
576             $this->setFrom($ar);
577             $this->limit(1);
578             if ($this->find(true)) {
579                 $roo->old = clone($this);
580             }
581         }   
582             
583         
584         if (!empty($ar['_copy_from'])) {
585             
586             if (!$this->checkPerm( 'A' , $roo->authUser))  {
587                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
588             }
589             
590             $copy = DB_DataObject::factory('Images');
591             $copy->get($ar['_copy_from']);
592             $this->setFrom($copy->toArray());
593             $this->setFrom($ar);
594             $this->createFrom($copy->getStoreName());
595             
596             $roo->addEvent("ADD", $this, $this->toEventString());
597             
598             $r = DB_DataObject::factory($this->tableName());
599             $r->id = $this->id;
600             $roo->loadMap($r);
601             $r->limit(1);
602             $r->find(true);
603             $roo->jok($r->toArray());
604             
605             
606         }
607         
608          
609         
610         // FIXME - we should be checking perms here...
611        
612         // this should be doign update
613         $this->setFrom($ar);
614          
615         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
616             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
617         }
618         
619         
620         
621         if (!isset($_FILES['imageUpload'])) {
622             return; // standard update...
623         }
624         
625         
626 //        print_r(!$this->onUpload($this));
627         
628         if ( !$this->onUpload($this)) { 
629             $roo->jerr("File upload failed : error = ". (!empty($this->err) ? $this->err : ''));
630         }
631         
632         $roo->addEvent("ADD", $this, $this->toEventString());
633         
634         $r = DB_DataObject::factory($this->tableName());
635         $r->id = $this->id;
636         $roo->loadMap($r);
637         $r->limit(1);
638         $r->find(true);
639         $roo->jok($r->toArray());
640          
641     }
642     
643     function toEventString()
644     {
645         
646         //$p = DB_DataObject::factory($this->ontable);
647         //if (!is_$p) {
648         //    return "ERROR unknown table? {$this->ontable}";
649        // }
650         //$p->get($p->onid);
651         
652         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
653         //$p->toEventString();
654     }
655     
656     function onUploadFromData($data, $roo)
657     {
658         if (empty($data)) {
659             $this->err = "Missing file details";
660             return false;
661         }
662         
663         if ($this->id) {
664             $this->beforeDelete();
665         }
666         
667         if (empty($this->ontable)) {
668             $this->err = "Missing  ontable";
669             return false;
670         }
671         
672         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
673             // then its an upload 
674             $img  = DB_DataObject::factory('Images');
675             $img->onid = $this->onid;
676             $img->ontable = $this->ontable;
677             $img->imgtype = $this->imgtype;
678             
679             $img->find();
680             while ($img->fetch()) {
681                 $img->beforeDelete();
682                 $img->delete();
683             }
684             
685         }
686         
687         require_once 'File/MimeType.php';
688         $y = new File_MimeType();
689         
690         if (in_array($this->mimetype, array(
691                         'text/application',
692                         'application/octet-stream',
693                         'image/x-png',  // WTF does this?
694                         'image/pjpeg',  // WTF does this?
695                         'application/x-apple-msg-attachment', /// apple doing it's magic...
696                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
697                         'application/csv-tab-delimited-table', // windows again!!?
698                 ))) { // weird tyeps..
699             $inf = pathinfo($this->filename);
700             $this->mimetype  = $y->fromExt($inf['extension']);
701         }
702         
703         $ext = $y->toExt(trim((string) $this->mimetype ));
704         
705         if(array_pop(explode('.', $this->filename)) != $ext){
706             $this->filename = $this->filename .'.'. $ext; 
707         }
708         
709         if (!$this->createFromData($data)) {
710             return false;
711         }
712         
713         return true;
714          
715     }
716     
717     function createFromData($data)
718     {   
719         
720         $this->mimetype= strtolower($this->mimetype);
721         
722         if (array_shift(explode('/', $this->mimetype)) == 'image') { 
723         
724             $imgs = @getimagesize($data);
725             
726             if (!empty($imgs) && !empty($imgs[0]) && !empty($imgs[1])) {
727                 list($this->width , $this->height)  = $imgs;
728             }
729         }
730         
731         $this->created = date('Y-m-d H:i:s');
732         
733         if (!$this->id) {
734             $this->insert();
735         } else {
736             $this->update();
737         }
738         
739         $f = $this->getStoreName();
740         $dest = dirname($f);
741         if (!file_exists($dest)) {
742             $oldumask = umask(0);
743             mkdir($dest, 0775, true);
744             umask($oldumask);  
745         }
746         
747         file_put_contents($f, file_get_contents("data://" . $data));
748         
749         $o = clone($this);
750         
751         $this->filesize = filesize($f);
752         
753         $this->update($o);
754         
755         return true;
756         
757     }
758     
759  }