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