diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-10 13:50:52 -0800 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-11-11 21:43:52 +0100 |
commit | a68308b1644986ce477f9923f1a79557aae8f038 (patch) | |
tree | ae1d607be36c0bc7a27d3ba10033bd69b6450de8 | |
parent | f7e3d0dbf6a763557d3431c6d12a6dde1be5648b (diff) | |
download | volse-hubzilla-a68308b1644986ce477f9923f1a79557aae8f038.tar.gz volse-hubzilla-a68308b1644986ce477f9923f1a79557aae8f038.tar.bz2 volse-hubzilla-a68308b1644986ce477f9923f1a79557aae8f038.zip |
set os_syspath in DAV file put operation so that photos will scale correctly.
-rw-r--r-- | Zotlabs/Storage/File.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Zotlabs/Storage/File.php b/Zotlabs/Storage/File.php index 332bf6896..947a9fde3 100644 --- a/Zotlabs/Storage/File.php +++ b/Zotlabs/Storage/File.php @@ -127,12 +127,15 @@ class File extends DAV\Node implements DAV\IFile { $is_photo = false; $album = ''; + $os_path = ''; - $r = q("SELECT flags, folder, os_storage, filename, is_photo FROM attach WHERE hash = '%s' AND uid = %d LIMIT 1", + $r = q("SELECT flags, folder, os_storage, os_path, filename, is_photo FROM attach WHERE hash = '%s' AND uid = %d LIMIT 1", dbesc($this->data['hash']), intval($c[0]['channel_id']) ); if ($r) { + $os_path = $r[0]['os_path']; + if (intval($r[0]['os_storage'])) { $d = q("select folder, content from attach where hash = '%s' and uid = %d limit 1", dbesc($this->data['hash']), @@ -150,7 +153,7 @@ class File extends DAV\Node implements DAV\IFile { } } $fname = dbunescbin($d[0]['content']); - if(strpos($fname,'store') === false) + if(strpos($fname,'store/') === false) $f = 'store/' . $this->auth->owner_nick . '/' . $fname ; else $f = $fname; @@ -196,7 +199,7 @@ class File extends DAV\Node implements DAV\IFile { if($is_photo) { require_once('include/photos.php'); - $args = array( 'resource_id' => $this->data['hash'], 'album' => $album, 'os_path' => $f, 'filename' => $r[0]['filename'], 'getimagesize' => $gis, 'directory' => $direct ); + $args = array( 'resource_id' => $this->data['hash'], 'album' => $album, 'os_syspath' => $f, 'os_path' => $os_path, 'filename' => $r[0]['filename'], 'getimagesize' => $gis, 'directory' => $direct ); $p = photo_upload($c[0],\App::get_observer(),$args); } |