aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-01-08 18:06:52 -0800
committerfriendica <info@friendica.com>2014-01-08 18:06:52 -0800
commit6eda8064449d154614345e9bd867dce2faba0deb (patch)
tree6f03b6ee33145908b983ae5d7da66eddc725ac84 /include
parentc4be3450bf6112adf5de078e6c0243c89f8519b5 (diff)
downloadvolse-hubzilla-6eda8064449d154614345e9bd867dce2faba0deb.tar.gz
volse-hubzilla-6eda8064449d154614345e9bd867dce2faba0deb.tar.bz2
volse-hubzilla-6eda8064449d154614345e9bd867dce2faba0deb.zip
This should be approaching completion for file OS storage. May be a few minor bugs remaining due to some late-breaking fixes but I've been testing it as I go.
Diffstat (limited to 'include')
-rw-r--r--include/attach.php15
-rw-r--r--include/reddav.php94
2 files changed, 62 insertions, 47 deletions
diff --git a/include/attach.php b/include/attach.php
index 93c9a5424..f2f889fd7 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -679,6 +679,12 @@ function attach_change_permissions($channel_id,$resource,$allow_cid,$allow_gid,$
function attach_delete($channel_id,$resource) {
+ $c = q("select channel_address from channel where channel_id = %d limit 1",
+ intval($channel_id)
+ );
+
+ $channel_address = (($c) ? $c[0]['channel_address'] : 'notfound');
+
$r = q("select hash, flags from attach where hash = '%s' and uid = %d limit 1",
dbesc($resource),
intval($channel_id)
@@ -705,10 +711,11 @@ function attach_delete($channel_id,$resource) {
);
if($y) {
- if(is_dir($y[0]['data']))
- @rmdir($y[0]['data']);
- elseif(file_exists($y[0]['data']))
- unlink($y[0]['data']);
+ $f = 'store/' . $channel_address . '/' . $y[0]['data'];
+ if(is_dir($f))
+ @rmdir($f);
+ elseif(file_exists($f))
+ unlink($f);
}
}
diff --git a/include/reddav.php b/include/reddav.php
index 62208368c..79b5a11f7 100644
--- a/include/reddav.php
+++ b/include/reddav.php
@@ -115,17 +115,18 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
$filesize = 0;
$hash = random_string();
- $r = q("INSERT INTO attach ( aid, uid, hash, filename, folder, filetype, filesize, revision, data, created, edited, allow_cid, allow_gid, deny_cid, deny_gid )
- VALUES ( %d, %d, '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
+ $r = q("INSERT INTO attach ( aid, uid, hash, filename, folder, flags, filetype, filesize, revision, data, created, edited, allow_cid, allow_gid, deny_cid, deny_gid )
+ VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
intval($c[0]['channel_account_id']),
intval($c[0]['channel_id']),
dbesc($hash),
dbesc($name),
dbesc($this->folder_hash),
+ dbesc(ATTACH_FLAG_OS),
dbesc($mimetype),
intval($filesize),
intval(0),
- dbesc(stream_get_contents($data)),
+ dbesc($this->os_path . '/' . $hash),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($c[0]['channel_allow_cid']),
@@ -136,25 +137,22 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
);
- $r = q("update attach set filesize = length(data) where hash = '%s' and uid = %d limit 1",
- dbesc($hash),
- intval($c[0]['channel_id'])
- );
+ $f = 'store/' . $this->auth->owner_nick . '/' . (($this->os_path) ? $this->os_path . '/' : '') . $hash;
+
+ file_put_contents($f, $data);
+ $size = filesize($f);
+
- $r = q("select filesize from attach where hash = '%s' and uid = %d limit 1",
+ $r = q("update attach set filesize = '%s' where hash = '%s' and uid = %d limit 1",
+ dbesc($size),
dbesc($hash),
intval($c[0]['channel_id'])
);
- // FIXME - delete attached file resource if using OS storage
-
$maxfilesize = get_config('system','maxfilesize');
- if(($maxfilesize) && ($r[0]['filesize'] > $maxfilesize)) {
- q("delete from attach where hash = '%s' and uid = %d limit 1",
- dbesc($hash),
- intval($c[0]['channel_id'])
- );
+ if(($maxfilesize) && ($size > $maxfilesize)) {
+ attach_delete($c[0]['channel_id'],$hash);
return;
}
@@ -163,11 +161,8 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
$x = q("select sum(filesize) as total from attach where aid = %d ",
intval($c[0]['channel_account_id'])
);
- if(($x) && ($x[0]['total'] + $r[0]['filesize'] > $limit)) {
- q("delete from attach where hash = '%s' and uid = %d limit 1",
- dbesc($hash),
- intval($c[0]['channel_id'])
- );
+ if(($x) && ($x[0]['total'] + $size > $limit)) {
+ attach_delete($c[0]['channel_id'],$hash);
return;
}
}
@@ -251,6 +246,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
$channel_id = $r[0]['channel_id'];
$this->auth->owner_id = $channel_id;
+ $this->auth->owner_nick = $channel_name;
$path = '/' . $channel_name;
@@ -328,32 +324,45 @@ class RedFile extends DAV\Node implements DAV\IFile {
}
-
function put($data) {
logger('RedFile::put: ' . basename($this->name));
- $r = q("update attach set data = '%s' where hash = '%s' and uid = %d limit 1",
- dbesc(stream_get_contents($data)),
- dbesc($this->data['hash']),
- intval($this->data['uid'])
- );
- $r = q("update attach set filesize = length(data) where hash = '%s' and uid = %d limit 1",
- dbesc($this->data['hash']),
- intval($this->data['uid'])
- );
- $r = q("select filesize from attach where hash = '%s' and uid = %d limit 1",
- dbesc($this->data['hash']),
+ $r = q("select flags, data from attach where hash = '%s' and uid = %d limit 1",
+ dbesc($hash),
+ intval($c[0]['channel_id'])
+ );
+ if($r) {
+ if($r[0]['flags'] & ATTACH_FLAG_OS) {
+ @file_put_contents($r[0]['data'], $data);
+ $size = @filesize($r[0]['data']);
+ }
+ else {
+ $r = q("update attach set data = '%s' where hash = '%s' and uid = %d limit 1",
+ dbesc(stream_get_contents($data)),
+ dbesc($this->data['hash']),
+ intval($this->data['uid'])
+ );
+ $r = q("select length(data) as fsize from attach where hash = '%s' and uid = %d limit 1",
+ dbesc($this->data['hash']),
+ intval($this->data['uid'])
+ );
+ if($r)
+ $size = $r[0]['fsize'];
+ }
+ }
+
+ $r = q("update attach set filesize = '%s' where hash = '%s' and uid = %d limit 1",
+ dbesc($size),
+ dbesc($hash),
intval($c[0]['channel_id'])
);
+
$maxfilesize = get_config('system','maxfilesize');
- if(($maxfilesize) && ($r[0]['filesize'] > $maxfilesize)) {
- q("delete from attach where hash = '%s' and uid = %d limit 1",
- dbesc($this->data['hash']),
- intval($c[0]['channel_id'])
- );
+ if(($maxfilesize) && ($size > $maxfilesize)) {
+ attach_delete($c[0]['channel_id'],$hash);
return;
}
@@ -362,11 +371,8 @@ class RedFile extends DAV\Node implements DAV\IFile {
$x = q("select sum(filesize) as total from attach where aid = %d ",
intval($c[0]['channel_account_id'])
);
- if(($x) && ($x[0]['total'] + $r[0]['filesize'] > $limit)) {
- q("delete from attach where hash = '%s' and uid = %d limit 1",
- dbesc($this->data['hash']),
- intval($c[0]['channel_id'])
- );
+ if(($x) && ($x[0]['total'] + $size > $limit)) {
+ attach_delete($c[0]['channel_id'],$hash);
return;
}
}
@@ -382,7 +388,8 @@ class RedFile extends DAV\Node implements DAV\IFile {
);
if($r) {
if($r[0]['flags'] & ATTACH_FLAG_OS ) {
- return fopen($r[0]['data'],'rb');
+ $f = 'store/' . $this->auth->owner_nick . '/' . (($this->os_path) ? $this->os_path . '/' : '') . $r[0]['data'];
+ return fopen($f,'rb');
}
return $r[0]['data'];
}
@@ -690,6 +697,7 @@ class RedBasicAuth extends Sabre\DAV\Auth\Backend\AbstractBasic {
public $observer = '';
public $browser;
public $owner_id;
+ public $owner_nick = '';
protected function validateUserPass($username, $password) {
require_once('include/auth.php');