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