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