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