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); 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             // query/imageBaseURL ... depricated...? -- set it in config?
407             
408             $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : $ret['public_baseURL'];
409             
410             $ret['url'] = $this->URL(-1, '/Images/Download',$baseURL);
411             
412             $ret['url_view'] = $this->URL(-1, '/Images',$baseURL);    
413             
414             if (!empty($req['query']['imagesize'])) {
415                 $ret['url_thumb'] = $this->URL($req['query']['imagesize'], '/Images/Thumb',$baseURL);
416             }
417         }
418         
419          
420          
421         return $ret;
422     }
423     
424     /**
425      * URL - create  a url for the image.
426      * size - use -1 to show full size.
427      * provier = baseURL + /Images/Thumb ... use '/Images/' for full
428      * 
429      * 
430      */
431     function URL($size , $provider = '/Images/Thumb', $baseURL=false)
432     {
433         if (!$this->id) {
434             return 'about:blank';
435             
436         }
437
438         $ff = HTML_FlexyFramework::get();
439         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
440         if (preg_match('#^http[s]*://#', $provider)) {
441             $baseURL = '';
442         }
443        
444         if ($size < 0) {
445             $provider = preg_replace('#/Thumb$#', '', $provider);
446             
447             return $baseURL . $provider . "/{$this->id}/{$this->filename}";
448         }
449         //-- max?
450         //$size = max(100, (int) $size);
451         //$size = min(1024, (int) $size);
452         // the size should 200x150 to convert
453         $sizear = preg_split('/(x|c)/', $size);
454         if(empty($sizear[1])){
455             $sizear[1] = 0;
456         }
457         $size = implode(strpos($size,'c') > -1 ? 'c' : 'x', $sizear);
458 //        print_r($size);
459         $fc = $this->toFileConvert();
460 //        print_r($size);
461 //        exit;
462         $mt = $this->mimetype;
463         if (!preg_match('#^image/#i',$mt)) {
464             $mt = 'image/jpeg';
465         }
466         
467         $fc->convert($mt, $size);
468         
469         return $baseURL . $provider . "/$size/{$this->id}/{$this->filename}";
470     }
471     /**
472      * size could be 123x345
473      * 
474      * 
475      */
476     function toHTML($size, $provider = '/Images/Thumb') 
477     {
478         
479         
480         
481         $sz = explode('x', $size);
482         $sx = $sz[0];
483         //var_dump($sz);
484         if (!$this->id || empty($this->width)) {
485             $this->height = $sx;
486             $this->width = empty($sz[1]) ? $sx : $sz[1];
487             $sy = $this->width ;
488         }
489         if (empty($sz[1])) {
490             $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
491             $sy = $ratio * $sx;
492         } else {
493             $sy = $sz[1];
494         }
495         // create it?
496         $extra = '';
497         if (strlen($this->title)) {
498             $extra = ' title="'. htmlspecialchars($this->title) . '"';
499         }
500         
501         return '<img src="' . $this->URL($size, $provider) . '"' .
502                 $extra .
503                 ' width="'. $sx . '"' .
504                 ' height="'. $sy . '">';
505         
506         
507     }
508     
509     /**
510      * 
511      * #2142 [new] CMS - image link urls
512      * 
513      * 
514      * 
515      */
516     function toLinkHTML($size, $provider = '/Images/Thumb')
517     {
518         if(empty($this->linkurl)){
519             return $this->toHTML($size, $provider = '/Images/Thumb');
520         }
521         
522         return '<a href="'.$this->linkurl.'" target="_blank">'.$this->toHTML($size, $provider = '/Images/Thumb').'</a>';
523         
524     }
525     
526     
527     /**
528      * to Fileconvert object..
529      *
530      *
531      *
532      */
533     function toFileConvert()
534     {
535         require_once 'File/Convert.php';
536         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
537         return $fc;
538         
539     }
540     
541     function fileExt()
542     {
543         require_once 'File/MimeType.php';
544         
545         $y = new File_MimeType();
546         return  $y->toExt($this->mimetype);
547         
548         
549     }
550     
551     /**
552      *
553      *
554      *
555      */
556     
557     
558     function setFromRoo($ar, $roo)
559     {
560         // not sure why we do this.. 
561         
562         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
563         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
564             $this->setFrom($ar);
565             $this->limit(1);
566             if ($this->find(true)) {
567                 $roo->old = clone($this);
568             }
569         }   
570             
571         
572         if (!empty($ar['_copy_from'])) {
573             
574             if (!$this->checkPerm( 'A' , $roo->authUser))  {
575                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
576             }
577             
578             $copy = DB_DataObject::factory('Images');
579             $copy->get($ar['_copy_from']);
580             $this->setFrom($copy->toArray());
581             $this->setFrom($ar);
582             $this->createFrom($copy->getStoreName());
583             
584             $roo->addEvent("ADD", $this, $this->toEventString());
585             
586             $r = DB_DataObject::factory($this->tableName());
587             $r->id = $this->id;
588             $roo->loadMap($r);
589             $r->limit(1);
590             $r->find(true);
591             $roo->jok($r->toArray());
592             
593             
594         }
595         
596          
597         
598         // FIXME - we should be checking perms here...
599        
600         // this should be doign update
601         $this->setFrom($ar);
602          
603         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
604             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
605         }
606         
607         
608         
609         if (!isset($_FILES['imageUpload'])) {
610             return; // standard update...
611         }
612         
613         
614 //        print_r(!$this->onUpload($this));
615         
616         if ( !$this->onUpload($this)) { 
617             $roo->jerr("File upload failed : ". (!empty($this->err) ? $this->err : ''));
618         }
619         
620         $roo->addEvent("ADD", $this, $this->toEventString());
621         
622         $r = DB_DataObject::factory($this->tableName());
623         $r->id = $this->id;
624         $roo->loadMap($r);
625         $r->limit(1);
626         $r->find(true);
627         $roo->jok($r->toArray());
628          
629     }
630     
631     function toEventString()
632     {
633         
634         //$p = DB_DataObject::factory($this->ontable);
635         //if (!is_$p) {
636         //    return "ERROR unknown table? {$this->ontable}";
637        // }
638         //$p->get($p->onid);
639         
640         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
641         //$p->toEventString();
642     }
643     
644     function onUploadFromData($data, $roo)
645     {
646         if (empty($data)) {
647             $this->err = "Missing file details";
648             return false;
649         }
650         
651         if ($this->id) {
652             $this->beforeDelete();
653         }
654         
655         if (empty($this->ontable)) {
656             $this->err = "Missing  ontable";
657             return false;
658         }
659         
660         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
661             // then its an upload 
662             $img  = DB_DataObject::factory('Images');
663             $img->onid = $this->onid;
664             $img->ontable = $this->ontable;
665             $img->imgtype = $this->imgtype;
666             
667             $img->find();
668             while ($img->fetch()) {
669                 $img->beforeDelete();
670                 $img->delete();
671             }
672             
673         }
674         
675         require_once 'File/MimeType.php';
676         $y = new File_MimeType();
677         
678         if (in_array($this->mimetype, array(
679                         'text/application',
680                         'application/octet-stream',
681                         'image/x-png',  // WTF does this?
682                         'image/pjpeg',  // WTF does this?
683                         'application/x-apple-msg-attachment', /// apple doing it's magic...
684                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
685                         'application/csv-tab-delimited-table', // windows again!!?
686                 ))) { // weird tyeps..
687             $inf = pathinfo($this->filename);
688             $this->mimetype  = $y->fromExt($inf['extension']);
689         }
690         
691         $ext = $y->toExt(trim((string) $this->mimetype ));
692         
693         if(array_pop(explode('.', $this->filename)) != $ext){
694             $this->filename = $this->filename .'.'. $ext; 
695         }
696         
697         if (!$this->createFromData($data)) {
698             return false;
699         }
700         
701         return true;
702          
703     }
704     
705     function createFromData($data)
706     {   
707         
708         $this->mimetype= strtolower($this->mimetype);
709         
710         if (array_shift(explode('/', $this->mimetype)) == 'image') { 
711         
712             $imgs = @getimagesize($data);
713             
714             if (!empty($imgs) && !empty($imgs[0]) && !empty($imgs[1])) {
715                 list($this->width , $this->height)  = $imgs;
716             }
717         }
718         
719         $this->created = date('Y-m-d H:i:s');
720         
721         if (!$this->id) {
722             $this->insert();
723         } else {
724             $this->update();
725         }
726         
727         $f = $this->getStoreName();
728         $dest = dirname($f);
729         if (!file_exists($dest)) {
730             $oldumask = umask(0);
731             mkdir($dest, 0775, true);
732             umask($oldumask);  
733         }
734         
735         file_put_contents($f, file_get_contents("data://" . $data));
736         
737         $o = clone($this);
738         
739         $this->filesize = filesize($f);
740         
741         $this->update($o);
742         
743         return true;
744         
745     }
746     
747  }