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