DataObjects/Core_notify_recur.php
[Pman.Core] / DataObjects / Images.php
index 41ec3f7..07a7be6 100644 (file)
@@ -30,6 +30,37 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
     
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
+    
+    function checkPerm($perm, $au)
+    {
+        // default permissons are to
+        // allow create / edit / if the user has
+        if (!$au) {
+            
+          
+            
+            return false;
+        }
+         
+        
+        
+        $o = $this->object();
+        //print_r($o);
+        if (method_exists($o, 'hasPerm')) {
+            // edit permissions on related object needed...
+            return $o->hasPerm( $perm == 'S' ? 'S' : 'E' , $au);
+            
+        }
+        
+        return true; //// ??? not really that safe...
+        
+    }
+    
+    
+    
+    
+    
+    
     /**
      * create an email from file.
      * these must have been set first.
@@ -53,7 +84,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         $this->mimetype= strtolower($this->mimetype);
         
-        if (array_shift(explode($this->mimetype)) == 'image') { 
+        if (array_shift(explode('/', $this->mimetype)) == 'image') { 
         
             $imgs = @getimagesize($file);
             
@@ -66,12 +97,10 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         $this->filesize = filesize($file);
         $this->created = date('Y-m-d H:i:s');
-        
-        
-        
+         
         
         if (empty($this->filename)) {
-            $this->filename = basename($file);
+            $this->filename = basename($filename);
         }
         
         //DB_DataObject::debugLevel(1);
@@ -86,9 +115,12 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         $f = $this->getStoreName();
         $dest = dirname($f);
         if (!file_exists($dest)) {
-            
+            // currently this is 0775 due to problems using shared hosing (FTP)
+            // it makes all the files unaccessable..
+            // you can normally solve this by giving the storedirectory better perms
+            // if needed on a dedicated server..
             $oldumask = umask(0);
-            mkdir($dest, 0770, true);
+            mkdir($dest, 0775, true);
             umask($oldumask);  
         }
         
@@ -111,7 +143,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
      */
     function getStoreName() 
     {
-        $opts = PEAR::getStaticProperty('Pman', 'options');
+        $opts = HTML_FlexyFramework::get()->Pman;
         $fn = preg_replace('/[^a-z0-9\.]+/i', '_', $this->filename);
         return implode( '/', array(
             $opts['storedir'], '_images_', date('Y/m', strtotime($this->created)), $this->id . '-'. $fn
@@ -145,7 +177,18 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         }
         
     }
-    
+    /**
+     * check mimetype against type
+     * - eg. img.is(#image#)
+     *
+     */
+    function is($type)
+    {
+        if (empty($this->mimetype)) {
+            return false;
+        }
+        return 0 === strcasecmp($type, array_shift(explode('/',$this->mimetype)));
+    }
   
     /**
      * onUpload (singlely attached image to a table)
@@ -247,29 +290,72 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
     /**
      * return a list of images for an object, optionally with a mime regex.
      * eg. '%/pdf' or 'image/%'
+     *
+     * usage:
+     *
+     * $i = DB_DataObject::factory('Images');
+     * $i->imgtype = 'LOGO';
+     * $ar = $i->gather($somedataobject, 'image/%');
+     * 
+     * @param {DB_DataObject} dataobject  = the object to gather data on.
+     * @param {String} mimelike  LIKE query to use for search
+     
      */
-    function gather($obj, $mime_like='')
+    function gather($obj, $mime_like='', $opts=array())
     {
         //DB_DataObject::debugLevel(1);
         if (empty($obj->id)) {
             return array();
         }
+        
         $c = clone($this);
         $c->ontable = $obj->tableName();
         $c->onid = $obj->id;
+        $c->autoJoin();
         if (!empty($mime_like)) {
-            $c->whereAdd("mimetype LIKE '". $c->escape($mime_like) ."'");
+            $c->whereAdd("Images.mimetype LIKE '". $c->escape($mime_like) ."'");
         }
 
         return $c->fetchAll();
     }
+     
+    
+    /**
+    * set or get the dataobject this image is associated with
+    * @param DB_DataObject $obj An object to associate this image with
+    *        (does not store it - you need to call update() to do that)
+    * @return DB_DataObject the dataobject this image is attached to.
+    */
+    function object($obj=false)
+    {
+        if ($obj === false) {
+            if (empty($this->ontable) || empty($this->onid)) {
+                return false;
+            }
+            $ret = DB_DataObject::factory($this->ontable);
+            $ret->get($this->onid);
+            return $ret;
+        }
+        
+        
+        $this->ontable = $obj->tableName();
+        $this->onid = $obj->id; /// assumes our nice standard of using ids..
+        return $obj;
+    }
     
      
     function toRooArray($req = array()) {
       //  echo '<PRE>';print_r($req);exit;
         $ret= $this->toArray();
       
-      
+        static $ff = false;
+        if (!$ff) {
+            $ff = HTML_FlexyFramework::get();
+        }
+        
+        $ret['public_baseURL'] = isset($ff->Pman_Images['public_baseURL']) ?
+                    $ff->Pman_Images['public_baseURL'] : $ff->baseURL;
+        
         if (!empty($req['query']['imagesize'])) {
              $baseURL = isset($req['query']['imageBaseURL']) ? $req['query']['imageBaseURL'] : false;
             
@@ -303,6 +389,10 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
 
         $ff = HTML_FlexyFramework::get();
         $baseURL = $baseURL ? $baseURL : $ff->baseURL ;
+        if (preg_match('#^http[s]*://#', $provider)) {
+            $baseURL = '';
+        }
+        
         if ($size < 0) {
             return $baseURL . $provider . "/{$this->id}/{$this->filename}";
         }
@@ -326,14 +416,14 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         $sz = explode('x', $size);
         $sx = $sz[0];
         //var_dump($sz);
-        if (!$this->id) {
+        if (!$this->id || empty($this->width)) {
             $this->height = $sx;
             $this->width = empty($sz[1]) ? $sx : $sz[1];
             $sy = $this->width ;
         }
         if (empty($sz[1])) {
-            $ratio =  $this->height/ ($this->width *1.0);
-            $sy = $ration * $sx;
+            $ratio =  empty($this->width) ? 1 : $this->height/ ($this->width *1.0);
+            $sy = $ratio * $sx;
         } else {
             $sy = $sz[1];
         }
@@ -344,14 +434,35 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         
     }
-    
-    
+     
+    /**
+     * to Fileconvert object..
+     *
+     *
+     *
+     */
+    function toFileConvert()
+    {
+        require_once 'File/Convert.php';
+        $fc = new File_Convert($this->getStoreName(), $this->mimetype);
+        return $fc;
+        
+    }
+    /**
+     *
+     *
+     *
+     */
     
     
     function setFromRoo($ar, $roo)
     {
         // not sure why we do this.. 
         
+        
+        
+        
+        
         // if imgtype starts with '-' ? then we set the 'old' (probably to delete later)
         if (!empty($ar['imgtype']) && !empty($ar['ontable']) && !empty($ar['onid']) && ($ar['imgtype'][0] == '-')) {
             $this->setFrom($ar);
@@ -363,6 +474,11 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
             
         
         if (!empty($ar['_copy_from'])) {
+            
+            if (!$this->checkPerm( 'A' , $roo->authUser))  {
+                $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
+            }
+            
             $copy = DB_DataObject::factory('Images');
             $copy->get($ar['_copy_from']);
             $this->setFrom($copy->toArray());
@@ -384,19 +500,22 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
          
         
         // FIXME - we should be checking perms here...
-        //if (method_exists($x, 'checkPerm') && !$x->checkPerm('E', $this->authUser))  {
-        //    $this->jerr("PERMISSION DENIED");
-        // }
+       
         // this should be doign update
         $this->setFrom($ar);
+         
+        if (!$this->checkPerm($this->id ? 'A' : 'E', $roo->authUser))  {
+            $roo->jerr("IMAGE UPLOAD PERMISSION DENIED");
+        }
         
         if (!isset($_FILES['imageUpload'])) {
             return; // standard update...
         }
         
         if ( !$this->onUpload($this)) {
-            $this->jerr("File upload failed");
+            $roo->jerr("File upload failed : ". $this->err);
         }
+        
         $roo->addEvent("ADD", $this, $this->toEventString());
         
         $r = DB_DataObject::factory($this->tableName());
@@ -407,6 +526,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         $roo->jok($r->toArray());
          
     }
+    
     function toEventString()
     {