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