f6dea332a4403c131c1888dbd1139ca6acbbe6cf
[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             static $tmpdir = false;
62             if (!$tmpdir) {
63                 $tmpdir  = System::mktemp("-d remote_upload");
64             }
65             
66             $path = $tmpdir . '/' . basename($q['_remote_upload']);
67             print_r($path);exit;
68             if(!file_exists($path)){
69                 // use HTTP_Request
70                file_put_contents($path, file_get_contents($q['_remote_upload'])); 
71             }
72             
73             $imageInfo = getimagesize($path);
74             
75             require_once 'File/MimeType.php';
76             $y = new File_MimeType();
77             $ext = $y->toExt(trim((string) $imageInfo['mime'] ));
78             
79             if (!preg_match("/\." . $ext."$/", $path, $matches)) {
80                 rename($path,$path.$ext);
81             }
82             if (!$this->createFrom($path)) {
83                 $roo->jerr("erro making image" . $q['_remote_upload']);
84             }
85             
86             $roo->addEvent("ADD", $this, $this->toEventString());
87         
88             $r = DB_DataObject::factory($this->tableName());
89             $r->id = $this->id;
90             $roo->loadMap($r);
91             $r->limit(1);
92             $r->find(true);
93             $roo->jok($r->URL(-1,'/Images') . '#attachment-'.  $r->id);
94         }
95         
96     }
97     
98     
99     /**
100      * create an email from file.
101      * these must have been set first.
102      * ontable / onid.
103      * 
104      */
105     function createFrom($file, $filename=false)
106     {
107         // copy the file into the storage area..
108         if (!file_exists($file) || !filesize($file)) {
109             return false;
110         }
111         
112         $filename = empty($filename) ? $file : $filename;
113         
114         if (empty($this->mimetype)) {
115             require_once 'File/MimeType.php';
116             $y = new File_MimeType();
117             $this->mimetype = $y->fromFilename($filename);
118         }
119         
120         $this->mimetype= strtolower($this->mimetype);
121         
122         if (array_shift(explode('/', $this->mimetype)) == 'image') { 
123         
124             $imgs = @getimagesize($file);
125             
126             if (empty($imgs) || empty($imgs[0]) || empty($imgs[1])) {
127                 // it's a file!!!!
128             } else {
129                 list($this->width , $this->height)  = $imgs;
130             }
131         }
132         
133         $this->filesize = filesize($file);
134         $this->created = date('Y-m-d H:i:s');
135          
136         
137         if (empty($this->filename)) {
138             $this->filename = basename($filename);
139         }
140         
141         //DB_DataObject::debugLevel(1);
142         if (!$this->id) {
143             $this->insert();
144         } else {
145             $this->update();
146         }
147         
148         
149         
150         $f = $this->getStoreName();
151         $dest = dirname($f);
152         if (!file_exists($dest)) {
153             // currently this is 0775 due to problems using shared hosing (FTP)
154             // it makes all the files unaccessable..
155             // you can normally solve this by giving the storedirectory better perms
156             // if needed on a dedicated server..
157             $oldumask = umask(0);
158             mkdir($dest, 0775, true);
159             umask($oldumask);  
160         }
161         
162         copy($file,$f);
163         
164         // fill in details..
165         
166         /* thumbnails */
167         
168      
169        // $this->createThumbnail(0,50);
170         return true;
171         
172     }
173
174     /**
175      * Calculate target file name
176      *
177      * @return - target file name
178      */
179     function getStoreName() 
180     {
181         $opts = HTML_FlexyFramework::get()->Pman;
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($ctrl)
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          
490         return '<img src="' . $this->URL($size, $provider) . '" width="'. $sx . '" height="'. $sy . '">';
491         
492         
493     }
494      
495     /**
496      * to Fileconvert object..
497      *
498      *
499      *
500      */
501     function toFileConvert()
502     {
503         require_once 'File/Convert.php';
504         $fc = new File_Convert($this->getStoreName(), $this->mimetype);
505         return $fc;
506         
507     }
508     
509     function fileExt()
510     {
511         require_once 'File/MimeType.php';
512         
513         $y = new File_MimeType();
514         return  $y->toExt($this->mimetype);
515         
516         
517     }
518     
519     /**
520      *
521      *
522      *
523      */
524     
525     
526     function setFromRoo($ar, $roo)
527     {
528         // not sure why we do this.. 
529         
530         
531         
532         
533         
534         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
535         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
536             $this->setFrom($ar);
537             $this->limit(1);
538             if ($this->find(true)) {
539                 $roo->old = clone($this);
540             }
541         }   
542             
543         
544         if (!empty($ar['_copy_from'])) {
545             
546             if (!$this->checkPerm( 'A' , $roo->authUser))  {
547                 $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
548             }
549             
550             $copy = DB_DataObject::factory('Images');
551             $copy->get($ar['_copy_from']);
552             $this->setFrom($copy->toArray());
553             $this->setFrom($ar);
554             $this->createFrom($copy->getStoreName());
555             
556             $roo->addEvent("ADD", $this, $this->toEventString());
557             
558             $r = DB_DataObject::factory($this->tableName());
559             $r->id = $this->id;
560             $roo->loadMap($r);
561             $r->limit(1);
562             $r->find(true);
563             $roo->jok($r->toArray());
564             
565             
566         }
567         
568          
569         
570         // FIXME - we should be checking perms here...
571        
572         // this should be doign update
573         $this->setFrom($ar);
574          
575         if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
576             $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
577         }
578         
579         
580         
581         if (!isset($_FILES['imageUpload'])) {
582             return; // standard update...
583         }
584         
585         if ( !$this->onUpload($this)) {
586             $roo->jerr("File upload failed : ". $this->err);
587         }
588         
589         $roo->addEvent("ADD", $this, $this->toEventString());
590         
591         $r = DB_DataObject::factory($this->tableName());
592         $r->id = $this->id;
593         $roo->loadMap($r);
594         $r->limit(1);
595         $r->find(true);
596         $roo->jok($r->toArray());
597          
598     }
599     
600     function toEventString()
601     {
602         
603         //$p = DB_DataObject::factory($this->ontable);
604         //if (!is_$p) {
605         //    return "ERROR unknown table? {$this->ontable}";
606        // }
607         //$p->get($p->onid);
608         
609         return $this->filename .' - on ' . $this->ontable . ':' . $this->onid;
610         //$p->toEventString();
611     }
612  }