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