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