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