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