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