aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBartek Przybylski <bart.p.pl@gmail.com>2012-06-09 15:22:02 +0200
committerBartek Przybylski <bart.p.pl@gmail.com>2012-06-09 15:22:18 +0200
commit120997112c7acf490171d07ec32cdd6d091db9c2 (patch)
tree2c9c4ba591b590aebe5877b04fdd00549a4eeced /lib
parent531132d64f7eab2e5f175164b0b0c6d322145d10 (diff)
downloadnextcloud-server-120997112c7acf490171d07ec32cdd6d091db9c2.tar.gz
nextcloud-server-120997112c7acf490171d07ec32cdd6d091db9c2.zip
handle encrypted images files in oc_image
Diffstat (limited to 'lib')
-rw-r--r--lib/image.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/image.php b/lib/image.php
index 5a2e8202488..41e8c744d8c 100644
--- a/lib/image.php
+++ b/lib/image.php
@@ -407,11 +407,14 @@ class OC_Image {
break;
*/
default:
- error_log($imagepath);
- error_log(\OC_Filesystem::getInternalPath($imagepath));
- error_log(\OC_Filesystem::getLocalFile($imagepath));
+
// this is mostly file created from encrypted file
- $this->resource = imagecreatefromstring(\OC_Filesystem::file_get_contents(\OC_Filesystem::getInternalPath($imagepath)));
+ $datadir = \OCP\Config::getSystemValue('datadirectory').'/'.\OC_User::getUser().'/files';
+ $newimgpath = $imagepath;
+ if (strncmp($newimgpath, $datadir, strlen($datadir)) == 0) {
+ $newimgpath = substr($imagepath, strlen($datadir));
+ }
+ $this->resource = imagecreatefromstring(\OC_Filesystem::file_get_contents($newimgpath));
$itype = IMAGETYPE_PNG;
OC_Log::write('core','OC_Image->loadFromFile, Default', OC_Log::DEBUG);
break;