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