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