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