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