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