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         print_R($this);exit;
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); echo $_FILES['imageUpload']['type'];exit;
269         if (empty($_FILES['imageUpload']['tmp_name']) || 
270             empty($_FILES['imageUpload']['name']) || 
271             empty($_FILES['imageUpload']['type'])
272         ) {
273             $this->err = "Missing file details";
274             return false;
275         }
276         
277         if ($this->id) {
278             $this->beforeDelete();
279         }
280         if ( empty($this->ontable)) {
281             $this->err = "Missing  ontable";
282             return false;
283         }
284         
285         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
286             // then its an upload 
287             $img  = DB_DataObject::factory('Images');
288             $img->onid = $this->onid;
289             $img->ontable = $this->ontable;
290             $img->imgtype = $this->imgtype;
291             
292             $img->find();
293             while ($img->fetch()) {
294                 $img->beforeDelete();
295                 $img->delete();
296             }
297             
298         }
299         
300         
301         
302         require_once 'File/MimeType.php';
303         $y = new File_MimeType();
304         $this->mimetype = $_FILES['imageUpload']['type'];
305         if (in_array($this->mimetype, array(
306                         'text/application',
307                         'application/octet-stream',
308                         'image/x-png',  // WTF does this?
309                         'image/pjpeg',  // WTF does this?
310                         'application/x-apple-msg-attachment', /// apple doing it's magic...
311                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
312                         'application/csv-tab-delimited-table', // windows again!!?
313                 ))) { // weird tyeps..
314             $inf = pathinfo($_FILES['imageUpload']['name']);
315             $this->mimetype  = $y->fromExt($inf['extension']);
316         }
317         
318         
319         $ext = $y->toExt(trim((string) $this->mimetype ));
320         
321         $this->filename = empty($this->filename) ? 
322             $_FILES['imageUpload']['name'] : ($this->filename .'.'. $ext); 
323         
324         
325         
326         if (!$this->createFrom($_FILES['imageUpload']['tmp_name'])) {
327             return false;
328         }
329         return true;
330          
331     }
332      
333     
334     
335     /**
336      * return a list of images for an object, optionally with a mime regex.
337      * eg. '%/pdf' or 'image/%'
338      *
339      * usage:
340      *
341      * $i = DB_DataObject::factory('Images');
342      * $i->imgtype = 'LOGO';
343      * $ar = $i->gather($somedataobject, 'image/%');
344      * 
345      * @param {DB_DataObject} dataobject  = the object to gather data on.
346      * @param {String} mimelike  LIKE query to use for search
347      
348      */
349     function gather($obj, $mime_like='', $opts=array())
350     {
351         //DB_DataObject::debugLevel(1);
352         if (empty($obj->id)) {
353             return array();
354         }
355         
356         $c = clone($this);
357         $c->whereAddIn($this->tableName() . '.ontable', array( $obj->tableName(), $obj->__table) , 'string');
358         $c->onid = $obj->id;
359         $c->autoJoin();
360         if (!empty($mime_like)) {
361             $c->whereAdd("Images.mimetype LIKE '". $c->escape($mime_like) ."'");
362         }
363         $c->orderBy('created DESC');
364
365         return $c->fetchAll();
366     }
367      
368     
369     /**
370     * set or get the dataobject this image is associated with
371     * @param DB_DataObject $obj An object to associate this image with
372     *        (does not store it - you need to call update() to do that)
373     * @return DB_DataObject the dataobject this image is attached to.
374     */
375     function object($obj=false)
376     {
377         if ($obj === false) {
378             if (empty($this->ontable) || empty($this->onid)) {
379                 return false;
380             }
381             $ret = DB_DataObject::factory($this->ontable);
382             $ret->get($this->onid);
383             return $ret;
384         }
385         
386         
387         $this->ontable = $obj->tableName();
388         $this->onid = $obj->id; /// assumes our nice standard of using ids..
389         return $obj;
390     }
391     
392      
393     function toRooArray($req = array()) {
394       //  echo '<PRE>';print_r($req);exit;
395         $ret= $this->toArray();
396       
397         static $ff = false;
398         if (!$ff) {
399             $ff = HTML_FlexyFramework::get();
400         }
401         
402         $ret['public_baseURL'] = isset($ff->Pman_Images['public_baseURL']) ?
403                     $ff->Pman_Images['public_baseURL'] : $ff->baseURL;
404         
405         if (!empty($req['query']['imagesize'])) {
406              $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : false;
407             
408             $ret['url'] = $this->URL(-1, '/Images/Download',$baseURL);
409             
410             $ret['url_view'] = $this->URL(-1, '/Images',$baseURL);    
411             
412             if (!empty($req['query']['imagesize'])) {
413                 $ret['url_thumb'] = $this->URL($req['query']['imagesize'], '/Images/Thumb',$baseURL);
414             }
415         }
416         
417          
418          
419         return $ret;
420     }
421     
422     /**
423      * URL - create  a url for the image.
424      * size - use -1 to show full size.
425      * provier = baseURL + /Images/Thumb ... use '/Images/' for full
426      * 
427      * 
428      */
429     function URL($size , $provider = '/Images/Thumb', $baseURL=false)
430     {
431         if (!$this->id) {
432             return 'about:blank';
433             
434         }
435
436         $ff = HTML_FlexyFramework::get();
437         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
438         if (preg_match('#^http[s]*://#', $provider)) {
439             $baseURL = '';
440         }
441        
442         if ($size < 0) {
443             $provider = preg_replace('#/Thumb$#', '', $provider);
444             
445             return $baseURL . $provider . "/{$this->id}/{$this->filename}";
446         }
447         //-- max?
448         //$size = max(100, (int) $size);
449         //$size = min(1024, (int) $size);
450         // the size should 200x150 to convert
451         $sizear = preg_split('/(x|c)/', $size);
452         if(empty($sizear[1])){
453             $sizear[1] = 0;
454         }
455         $size = implode(strpos($size,'c') > -1 ? 'c' : 'x', $sizear);
456 //        print_r($size);
457         $fc = $this->toFileConvert();
458 //        print_r($size);
459 //        exit;
460         $mt = $this->mimetype;
461         if (!preg_match('#^image/#i',$mt)) {
462             $mt = 'image/jpeg';
463         }
464         
465         $fc->convert($mt, $size);
466         
467         return $baseURL . $provider . "/$size/{$this->id}/{$this->filename}";
468     }
469     /**
470      * size could be 123x345
471      * 
472      * 
473      */
474     function toHTML($size, $provider = '/Images/Thumb') 
475     {
476         
477         
478         
479         $sz = explode('x', $size);
480         $sx = $sz[0];
481         //var_dump($sz);
482         if (!$this->id || empty($this->width)) {
483             $this->height = $sx;
484             $this->width = empty($sz[1]) ? $sx : $sz[1];
485             $sy = $this->width ;
486         }
487         if (empty($sz[1])) {
488             $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
489             $sy = $ratio * $sx;
490         } else {
491             $sy = $sz[1];
492         }
493         // create it?
494         $extra = '';
495         if (strlen($this->title)) {
496             $extra = ' title="'. htmlspecialchars($this->title) . '"';
497         }
498         
499         return '<img src="' . $this->URL($size, $provider) . '"' .
500                 $extra .
501                 ' width="'. $sx . '"' .
502                 ' height="'. $sy . '">';
503         
504         
505     }
506     
507     /**
508      * 
509      * #2142 [new] CMS - image link urls
510      * 
511      * 
512      * 
513      */
514     function toLinkHTML($size, $provider = '/Images/Thumb')
515     {
516         if(empty($this->linkurl)){
517             return $this->toHTML($size, $provider = '/Images/Thumb');
518         }
519         
520         return '<a href="'.$this->linkurl.'" target="_blank">'.$this->toHTML($size, $provider = '/Images/Thumb').'</a>';
521         
522     }
523     
524     
525     /**
526      * to Fileconvert object..
527      *
528      *
529      *
530      */
531     function toFileConvert()
532     {
533         require_once 'File/Convert.php';
534         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
535         return $fc;
536         
537     }
538     
539     function fileExt()
540     {
541         require_once 'File/MimeType.php';
542         
543         $y = new File_MimeType();
544         return  $y->toExt($this->mimetype);
545         
546         
547     }
548     
549     /**
550      *
551      *
552      *
553      */
554     
555     
556     function setFromRoo($ar, $roo)
557     {
558         // not sure why we do this.. 
559         
560         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
561         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
562             $this->setFrom($ar);
563             $this->limit(1);
564             if ($this->find(true)) {
565                 $roo->old = clone($this);
566             }
567         }   
568             
569         
570         if (!empty($ar['_copy_from'])) {
571             
572             if (!$this->checkPerm( 'A' , $roo->authUser))  {
573                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
574             }
575             
576             $copy = DB_DataObject::factory('Images');
577             $copy->get($ar['_copy_from']);
578             $this->setFrom($copy->toArray());
579             $this->setFrom($ar);
580             $this->createFrom($copy->getStoreName());
581             
582             $roo->addEvent("ADD", $this, $this->toEventString());
583             
584             $r = DB_DataObject::factory($this->tableName());
585             $r->id = $this->id;
586             $roo->loadMap($r);
587             $r->limit(1);
588             $r->find(true);
589             $roo->jok($r->toArray());
590             
591             
592         }
593         
594          
595         
596         // FIXME - we should be checking perms here...
597        
598         // this should be doign update
599         $this->setFrom($ar);
600          
601         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
602             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
603         }
604         
605         
606         
607         if (!isset($_FILES['imageUpload'])) {
608             return; // standard update...
609         }
610         
611         
612 //        print_r(!$this->onUpload($this));
613         
614         if ( !$this->onUpload($this)) { 
615             $roo->jerr("File upload failed : ". (!empty($this->err) ? $this->err : ''));
616         }
617         
618         $roo->addEvent("ADD", $this, $this->toEventString());
619         
620         $r = DB_DataObject::factory($this->tableName());
621         $r->id = $this->id;
622         $roo->loadMap($r);
623         $r->limit(1);
624         $r->find(true);
625         $roo->jok($r->toArray());
626          
627     }
628     
629     function toEventString()
630     {
631         
632         //$p = DB_DataObject::factory($this->ontable);
633         //if (!is_$p) {
634         //    return "ERROR unknown table? {$this->ontable}";
635        // }
636         //$p->get($p->onid);
637         
638         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
639         //$p->toEventString();
640     }
641     
642     function onUploadFromData($data, $roo)
643     {
644         if (empty($data)) {
645             $this->err = "Missing file details";
646             return false;
647         }
648         
649         if ($this->id) {
650             $this->beforeDelete();
651         }
652         
653         if (empty($this->ontable)) {
654             $this->err = "Missing  ontable";
655             return false;
656         }
657         
658         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
659             // then its an upload 
660             $img  = DB_DataObject::factory('Images');
661             $img->onid = $this->onid;
662             $img->ontable = $this->ontable;
663             $img->imgtype = $this->imgtype;
664             
665             $img->find();
666             while ($img->fetch()) {
667                 $img->beforeDelete();
668                 $img->delete();
669             }
670             
671         }
672         
673         require_once 'File/MimeType.php';
674         $y = new File_MimeType();
675         
676         if (in_array($this->mimetype, array(
677                         'text/application',
678                         'application/octet-stream',
679                         'image/x-png',  // WTF does this?
680                         'image/pjpeg',  // WTF does this?
681                         'application/x-apple-msg-attachment', /// apple doing it's magic...
682                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
683                         'application/csv-tab-delimited-table', // windows again!!?
684                 ))) { // weird tyeps..
685             $inf = pathinfo($this->filename);
686             $this->mimetype  = $y->fromExt($inf['extension']);
687         }
688         
689         $ext = $y->toExt(trim((string) $this->mimetype ));
690         
691         if(array_pop(explode('.', $this->filename)) != $ext){
692             $this->filename = $this->filename .'.'. $ext; 
693         }
694         
695         if (!$this->createFromData($data)) {
696             return false;
697         }
698         
699         return true;
700          
701     }
702     
703     function createFromData($data)
704     {   
705         
706         $this->mimetype= strtolower($this->mimetype);
707         
708         if (array_shift(explode('/', $this->mimetype)) == 'image') { 
709         
710             $imgs = @getimagesize($data);
711             
712             if (!empty($imgs) && !empty($imgs[0]) && !empty($imgs[1])) {
713                 list($this->width , $this->height)  = $imgs;
714             }
715         }
716         
717         $this->created = date('Y-m-d H:i:s');
718         
719         if (!$this->id) {
720             $this->insert();
721         } else {
722             $this->update();
723         }
724         
725         $f = $this->getStoreName();
726         $dest = dirname($f);
727         if (!file_exists($dest)) {
728             $oldumask = umask(0);
729             mkdir($dest, 0775, true);
730             umask($oldumask);  
731         }
732         
733         file_put_contents($f, file_get_contents("data://" . $data));
734         
735         $o = clone($this);
736         
737         $this->filesize = filesize($f);
738         
739         $this->update($o);
740         
741         return true;
742         
743     }
744     
745  }