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