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 //        echo $_FILES['imageUpload']['type'];exit;
274         if (empty($_FILES['imageUpload']['tmp_name']) || 
275             empty($_FILES['imageUpload']['name']) || 
276             empty($_FILES['imageUpload']['type'])
277         ) {
278             $this->err = "Missing file details";
279             return false;
280         }
281         
282         if ($this->id) {
283             $this->beforeDelete();
284         }
285         if ( empty($this->ontable)) {
286             $this->err = "Missing  ontable";
287             return false;
288         }
289         
290         if (!empty($this->imgtype) && $this->imgtype[0] == '-' && !empty($this->onid)) {
291             // then its an upload 
292             $img  = DB_DataObject::factory('Images');
293             $img->onid = $this->onid;
294             $img->ontable = $this->ontable;
295             $img->imgtype = $this->imgtype;
296             
297             $img->find();
298             while ($img->fetch()) {
299                 $img->beforeDelete();
300                 $img->delete();
301             }
302             
303         }
304         
305         
306         
307         require_once 'File/MimeType.php';
308         $y = new File_MimeType();
309         $this->mimetype = $_FILES['imageUpload']['type'];
310         if (in_array($this->mimetype, array(
311                         'text/application',
312                         'application/octet-stream',
313                         'image/x-png',  // WTF does this?
314                         'image/pjpeg',  // WTF does this?
315                         'application/x-apple-msg-attachment', /// apple doing it's magic...
316                         'application/vnd.ms-excel',   /// sometimes windows reports csv as excel???
317                         'application/csv-tab-delimited-table', // windows again!!?
318                 ))) { // weird tyeps..
319             $inf = pathinfo($_FILES['imageUpload']['name']);
320             $this->mimetype  = $y->fromExt($inf['extension']);
321         }
322         
323         
324         $ext = $y->toExt(trim((string) $this->mimetype ));
325         
326         $this->filename = empty($this->filename) ? 
327             $_FILES['imageUpload']['name'] : ($this->filename .'.'. $ext); 
328         
329         
330         
331         if (!$this->createFrom($_FILES['imageUpload']['tmp_name'])) {
332             return false;
333         }
334         return true;
335          
336     }
337      
338     
339     
340     /**
341      * return a list of images for an object, optionally with a mime regex.
342      * eg. '%/pdf' or 'image/%'
343      *
344      * usage:
345      *
346      * $i = DB_DataObject::factory('Images');
347      * $i->imgtype = 'LOGO';
348      * $ar = $i->gather($somedataobject, 'image/%');
349      * 
350      * @param {DB_DataObject} dataobject  = the object to gather data on.
351      * @param {String} mimelike  LIKE query to use for search
352      
353      */
354     function gather($obj, $mime_like='', $opts=array())
355     {
356         //DB_DataObject::debugLevel(1);
357         if (empty($obj->id)) {
358             return array();
359         }
360         
361         $c = clone($this);
362         $c->whereAddIn($this->tableName() . '.ontable', array( $obj->tableName(), $obj->__table) , 'string');
363         $c->onid = $obj->id;
364         $c->autoJoin();
365         if (!empty($mime_like)) {
366             $c->whereAdd("Images.mimetype LIKE '". $c->escape($mime_like) ."'");
367         }
368
369         return $c->fetchAll();
370     }
371      
372     
373     /**
374     * set or get the dataobject this image is associated with
375     * @param DB_DataObject $obj An object to associate this image with
376     *        (does not store it - you need to call update() to do that)
377     * @return DB_DataObject the dataobject this image is attached to.
378     */
379     function object($obj=false)
380     {
381         if ($obj === false) {
382             if (empty($this->ontable) || empty($this->onid)) {
383                 return false;
384             }
385             $ret = DB_DataObject::factory($this->ontable);
386             $ret->get($this->onid);
387             return $ret;
388         }
389         
390         
391         $this->ontable = $obj->tableName();
392         $this->onid = $obj->id; /// assumes our nice standard of using ids..
393         return $obj;
394     }
395     
396      
397     function toRooArray($req = array()) {
398       //  echo '<PRE>';print_r($req);exit;
399         $ret= $this->toArray();
400       
401         static $ff = false;
402         if (!$ff) {
403             $ff = HTML_FlexyFramework::get();
404         }
405         
406         $ret['public_baseURL'] = isset($ff->Pman_Images['public_baseURL']) ?
407                     $ff->Pman_Images['public_baseURL'] : $ff->baseURL;
408         
409         if (!empty($req['query']['imagesize'])) {
410              $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : false;
411             
412             $ret['url'] = $this->URL(-1, '/Images/Download',$baseURL);
413             
414             $ret['url_view'] = $this->URL(-1, '/Images',$baseURL);    
415             
416             if (!empty($req['query']['imagesize'])) {
417                 $ret['url_thumb'] = $this->URL($req['query']['imagesize'], '/Images/Thumb',$baseURL);
418             }
419         }
420         
421          
422          
423         return $ret;
424     }
425     
426     /**
427      * URL - create  a url for the image.
428      * size - use -1 to show full size.
429      * provier = baseURL + /Images/Thumb ... use '/Images/' for full
430      * 
431      * 
432      */
433     function URL($size , $provider = '/Images/Thumb', $baseURL=false)
434     {
435         if (!$this->id) {
436             return 'about:blank';
437             
438         }
439
440         $ff = HTML_FlexyFramework::get();
441         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
442         if (preg_match('#^http[s]*://#', $provider)) {
443             $baseURL = '';
444         }
445        
446         if ($size < 0) {
447             $provider = preg_replace('#/Thumb$#', '', $provider);
448             
449             return $baseURL . $provider . "/{$this->id}/{$this->filename}";
450         }
451         //-- max?
452         //$size = max(100, (int) $size);
453         //$size = min(1024, (int) $size);
454         // the size should 200x150 to convert
455         $sizear = preg_split('/(x|c)/', $size);
456         if(empty($sizear[1])){
457             $sizear[1] = 0;
458         }
459         $size = implode(strpos($size,'c') > -1 ? 'c' : 'x', $sizear);
460 //        print_r($size);
461         $fc = $this->toFileConvert();
462 //        print_r($size);
463 //        exit;
464         $fc->convert($this->mimetype, $size);
465         
466         
467         return $baseURL . $provider . "/$size/{$this->id}/{$this->filename}";
468     }
469     /**
470      * size could be 123x345
471      * 
472      * 
473      */
474     function toHTML($size, $provider = '/Images/Thumb') 
475     {
476         
477         
478         
479         $sz = explode('x', $size);
480         $sx = $sz[0];
481         //var_dump($sz);
482         if (!$this->id || empty($this->width)) {
483             $this->height = $sx;
484             $this->width = empty($sz[1]) ? $sx : $sz[1];
485             $sy = $this->width ;
486         }
487         if (empty($sz[1])) {
488             $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
489             $sy = $ratio * $sx;
490         } else {
491             $sy = $sz[1];
492         }
493         // create it?
494         $extra = '';
495         if (strlen($this->title)) {
496             $extra = ' title="'. htmlspecialchars($this->title) . '"';
497         }
498         
499         return '<img src="' . $this->URL($size, $provider) . '"' .
500                 $extra .
501                 ' width="'. $sx . '"' .
502                 ' height="'. $sy . '">';
503         
504         
505     }
506     
507     /**
508      * 
509      * #2142 [new] CMS - image link urls
510      * 
511      * 
512      * 
513      */
514     function toLinkHTML($size, $provider = '/Images/Thumb')
515     {
516         if(empty($this->linkurl)){
517             return $this->toHTML($size, $provider = '/Images/Thumb');
518         }
519         
520         return '<a href="'.$this->linkurl.'" target="_blank">'.$this->toHTML($size, $provider = '/Images/Thumb').'</a>';
521         
522     }
523     
524     
525     /**
526      * to Fileconvert object..
527      *
528      *
529      *
530      */
531     function toFileConvert()
532     {
533         require_once 'File/Convert.php';
534         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
535         return $fc;
536         
537     }
538     
539     function fileExt()
540     {
541         require_once 'File/MimeType.php';
542         
543         $y = new File_MimeType();
544         return  $y->toExt($this->mimetype);
545         
546         
547     }
548     
549     /**
550      *
551      *
552      *
553      */
554     
555     
556     function setFromRoo($ar, $roo)
557     {
558         // not sure why we do this.. 
559         
560         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
561         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
562             $this->setFrom($ar);
563             $this->limit(1);
564             if ($this->find(true)) {
565                 $roo->old = clone($this);
566             }
567         }   
568             
569         
570         if (!empty($ar['_copy_from'])) {
571             
572             if (!$this->checkPerm( 'A' , $roo->authUser))  {
573                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
574             }
575             
576             $copy = DB_DataObject::factory('Images');
577             $copy->get($ar['_copy_from']);
578             $this->setFrom($copy->toArray());
579             $this->setFrom($ar);
580             $this->createFrom($copy->getStoreName());
581             
582             $roo->addEvent("ADD", $this, $this->toEventString());
583             
584             $r = DB_DataObject::factory($this->tableName());
585             $r->id = $this->id;
586             $roo->loadMap($r);
587             $r->limit(1);
588             $r->find(true);
589             $roo->jok($r->toArray());
590             
591             
592         }
593         
594          
595         
596         // FIXME - we should be checking perms here...
597        
598         // this should be doign update
599         $this->setFrom($ar);
600          
601         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
602             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
603         }
604         
605         
606         
607         if (!isset($_FILES['imageUpload'])) {
608             return; // standard update...
609         }
610         
611         
612 //        print_r(!$this->onUpload($this));
613         
614         if ( !$this->onUpload($this)) { 
615             $roo->jerr("File upload failed : ". (!empty($this->err) ? $this->err : ''));
616         }
617         
618         $roo->addEvent("ADD", $this, $this->toEventString());
619         
620         $r = DB_DataObject::factory($this->tableName());
621         $r->id = $this->id;
622         $roo->loadMap($r);
623         $r->limit(1);
624         $r->find(true);
625         $roo->jok($r->toArray());
626          
627     }
628     
629     function toEventString()
630     {
631         
632         //$p = DB_DataObject::factory($this->ontable);
633         //if (!is_$p) {
634         //    return "ERROR unknown table? {$this->ontable}";
635        // }
636         //$p->get($p->onid);
637         
638         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
639         //$p->toEventString();
640     }
641     
642  }