aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-06 17:42:53 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-06 17:42:53 -0700
commit7e43da43a1c71419ec2842db75ccfbcba57501ea (patch)
treea2036bc7e1c49776eb88df73414ee1d6bf7c1626
parent91bbfcf554d190c1956d16c652ceefb95a18735a (diff)
downloadvolse-hubzilla-7e43da43a1c71419ec2842db75ccfbcba57501ea.tar.gz
volse-hubzilla-7e43da43a1c71419ec2842db75ccfbcba57501ea.tar.bz2
volse-hubzilla-7e43da43a1c71419ec2842db75ccfbcba57501ea.zip
more file permissions inheritance work
-rw-r--r--include/attach.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/include/attach.php b/include/attach.php
index 1e8091b9d..8a9e2ec9e 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -487,9 +487,12 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) {
$darr['deny_gid'] = $channel['deny_gid'];
+ $direct = null;
+
if($pathname) {
$x = attach_mkdirp($channel, $observer_hash, $darr);
$folder_hash = (($x['success']) ? $x['data']['hash'] : '');
+ $direct = (($x['success']) ? $x['data'] : null);
if((! $str_contact_allow) && (! $str_group_allow) && (! $str_contact_deny) && (! $str_group_deny)) {
$str_contact_allow = $x['data']['allow_cid'];
$str_group_allow = $x['data']['allow_gid'];
@@ -669,7 +672,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) {
}
if($is_photo) {
- $args = array( 'source' => $source, 'visible' => 0, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis);
+ $args = array( 'source' => $source, 'visible' => 0, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis, 'directory' => $direct);
if($arr['contact_allow'])
$args['contact_allow'] = $arr['contact_allow'];
if($arr['group_allow'])
@@ -815,7 +818,7 @@ function attach_mkdir($channel, $observer_hash, $arr = null) {
// Check for duplicate name.
// Check both the filename and the hash as we will be making use of both.
- $r = q("select hash, is_dir, flags from attach where ( filename = '%s' or hash = '%s' ) and folder = '%s' and uid = %d limit 1",
+ $r = q("select id, hash, is_dir, flags from attach where ( filename = '%s' or hash = '%s' ) and folder = '%s' and uid = %d limit 1",
dbesc($arr['filename']),
dbesc($arr['hash']),
dbesc($arr['folder']),
@@ -823,9 +826,13 @@ function attach_mkdir($channel, $observer_hash, $arr = null) {
);
if($r) {
if(array_key_exists('force',$arr) && intval($arr['force'])
- && ( intval($r[0]['is_dir']) || $r[0]['flags'] & ATTACH_FLAG_DIR)) {
+ && (intval($r[0]['is_dir']))) {
$ret['success'] = true;
- $ret['data'] = $r[0];
+ $r = q("select * from attach where id = %d limit 1",
+ intval($r[0]['id'])
+ );
+ if($r)
+ $ret['data'] = $r[0];
return $ret;
}
$ret['message'] = t('duplicate filename or path');