X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=DataObjects%2FImages.php;h=78f80bfc9216b3f03f855429ee2cb02aedce389a;hp=c23f56f7ddc3ba800f22a32fbcc75b32361f3330;hb=161540ea50701eba547d23049339ecb651f4a6af;hpb=2ce8484aea363c14597504cbd4ba9c1779a64357 diff --git a/DataObjects/Images.php b/DataObjects/Images.php index c23f56f7..78f80bfc 100644 --- a/DataObjects/Images.php +++ b/DataObjects/Images.php @@ -29,6 +29,18 @@ class Pman_Core_DataObjects_Images extends DB_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + function applyFilters($q, $au, $roo) + { + $tn = $this->tableName(); + + if(!empty($q['search']['filename'])){ + $this->whereAdd(" + $tn.filename LIKE '%{$this->escape($q['search']['filename'])}%' OR $tn.title LIKE '%{$this->escape($q['search']['filename'])}%' + "); + } + + + } function checkPerm($lvl, $au) { @@ -118,9 +130,10 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $this->mimetype = $y->fromFilename($filename); } - $this->mimetype= strtolower($this->mimetype); + $this->mimetype = strtolower($this->mimetype); - if (array_shift(explode('/', $this->mimetype)) == 'image') { + $mta = explode('/', $this->mimetype); + if (array_shift($mta) == 'image') { $imgs = @getimagesize($file); @@ -132,7 +145,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject } if($this->mimetype == 'application/pdf'){ - $this->no_of_pages = $this->getNumberOfPage($file); + $this->no_of_pages = $this->getPdfPages($file); } $this->filesize = filesize($file); @@ -196,21 +209,42 @@ class Pman_Core_DataObjects_Images extends DB_DataObject * * */ - function beforeDelete() + function beforeDelete($dependants_array, $roo) { + + $opts = HTML_FlexyFramework::get()->Pman; + $deldir = $opts['storedir']. '/_deleted_images_'; + if (!file_exists( $deldir )) { + mkdir($deldir, 0755); + } + $fn = $this->getStoreName(); + $b = basename($fn); if (file_exists($fn)) { - unlink($fn); + + if (file_exists($deldir . '/'. $b)) { + unlink($fn); + } else { + rename($fn, $deldir .'/'. $b); + } + + } // delete thumbs.. - $b = basename($fn); + $d = dirname($fn); if (file_exists($d)) { $dh = opendir($d); while (false !== ($fn = readdir($dh))) { if (substr($fn, 0, strlen($b)) == $b) { - unlink($d. '/'. $fn); + + if (file_exists($deldir . '/'. $fn)) { + unlink($d. '/'. $fn); + continue; + } + rename($d. '/'. $fn, $deldir .'/'. $fn); + } } } @@ -721,7 +755,8 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $ext = $y->toExt(trim((string) $this->mimetype )); - if(array_pop(explode('.', $this->filename)) != $ext){ + $explode_filename = explode('.', $this->filename); + if(array_pop($explode_filename) != $ext){ $this->filename = $this->filename .'.'. $ext; } @@ -738,7 +773,9 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $this->mimetype= strtolower($this->mimetype); - if (array_shift(explode('/', $this->mimetype)) == 'image') { + $explode_mimetype = explode('/', $this->mimetype); + + if (array_shift($explode_mimetype) == 'image') { $imgs = @getimagesize($data); @@ -769,13 +806,17 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $this->filesize = filesize($f); + if($this->mimetype == 'application/pdf'){ + $this->no_of_pages = $this->getPdfPages($f); + } + $this->update($o); return true; } - function toBase64() + function toBase64($rotate = false, $scaleWidth = 0, $scaleHeight = 0) { if(!preg_match('/^image\//', $this->mimetype)){ return false; @@ -789,9 +830,126 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $data = file_get_contents($file); +// if(!empty($scaleWidth) || !empty($scaleHeight)){ +// +// $width = $this->width; +// $height = $this->height; +// +// if(!empty($scaleWidth)){ +// $width = $scaleWidth; +// +// if(empty($scaleHeight)){ +// $height = $this->height * $scaleWidth / $this->width; +// } +// } +// +// +// +// if(!empty($scaleHeight)){ +// $height = $scaleHeight; +// +// if(empty($scaleWidth)){ +// $width = $this->width * $scaleHeight / $this->height; +// } +// } +// +// $im = imagecreatefromstring($data); +// +// if (($scaled = imagescale($im, $width, $height)) != false) { +// ob_start(); +// imagejpeg($scaled); +// $data = ob_get_contents(); +// ob_end_clean(); +// imagedestroy($im); +// imagedestroy($scaled); +// } +// +// } + + if(!empty($scaleWidth) || !empty($scaleHeight)){ + $data = $this->scale(false, $scaleWidth, $scaleHeight); + } + + if($rotate){ + $data = $this->rotate($data); + } + $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data); return $base64; } + function getPdfPages($file) + { + require_once 'System.php'; + + $page = 0; + + $pdfinfo = System::which('pdfinfo'); + + if (!file_exists($file) || empty($pdfinfo)) { + return $page; + } + + $cmd = "{$pdfinfo} {$file}"; + + $ret = `$cmd`; + + $info = explode("\n", $ret); + + foreach ($info as $i){ + + if(!preg_match('/^Pages:[\s]*([0-9]+)/', $i, $matches)){ + continue; + } + + $page = (empty($matches[1])) ? 0 : $matches[1]; + } + + return $page; + } + + function rotate($imageBlob = false) + { + if(empty($imageBlob)){ + $imagick = new Imagick($this->getStoreName()); + } else { + $imagick = new Imagick(); + $imagick->readImageBlob($imageBlob); + } + + $orientation = $imagick->getImageOrientation(); + + switch($orientation) { + case Imagick::ORIENTATION_BOTTOMRIGHT: + $imagick->rotateimage(new ImagickPixel('#00000000'), 180); // rotate 180 degrees + break; + + case Imagick::ORIENTATION_RIGHTTOP: + $imagick->rotateimage(new ImagickPixel('#00000000'), 90); // rotate 90 degrees CW + break; + + case Imagick::ORIENTATION_LEFTBOTTOM: + $imagick->rotateimage(new ImagickPixel('#00000000'), -90); // rotate 90 degrees CCW + break; + } + + return $imagick->getImageBlob(); + } + + function scale($imageBlob = false, $width = 0, $height = 0) + { + if(empty($imageBlob)){ + $imagick = new Imagick($this->getStoreName()); + } else { + $imagick = new Imagick(); + $imagick->readImageBlob($imageBlob); + } + + $imagick->resizeimage($width, $height, Imagick::FILTER_LANCZOS, true, true); + + return $imagick->getImageBlob(); + + } + }