aboutsummaryrefslogtreecommitdiffstats
path: root/mod/filestorage.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-09-09 02:06:21 +0100
committerThomas Willingham <founder@kakste.com>2013-09-09 02:06:21 +0100
commitd2b4ba7be6adee976972091d4fe11fe08016341b (patch)
tree2e6ccdf85917c0803435fa5b440473c29bb8fed4 /mod/filestorage.php
parente60c8e91740328be75da1d7d8829325899f9b5a8 (diff)
downloadvolse-hubzilla-d2b4ba7be6adee976972091d4fe11fe08016341b.tar.gz
volse-hubzilla-d2b4ba7be6adee976972091d4fe11fe08016341b.tar.bz2
volse-hubzilla-d2b4ba7be6adee976972091d4fe11fe08016341b.zip
Quick and dirty file storage module.
Diffstat (limited to 'mod/filestorage.php')
-rw-r--r--mod/filestorage.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/mod/filestorage.php b/mod/filestorage.php
new file mode 100644
index 000000000..72112271d
--- /dev/null
+++ b/mod/filestorage.php
@@ -0,0 +1,73 @@
+<?php
+
+function filestorage_content(&$a) {
+
+ if(argc() > 1)
+ $which = argv(1);
+ else {
+ notice( t('Requested profile is not available.') . EOL );
+ $a->error = 404;
+ return;
+ }
+
+ $r = q("select channel_id from channel where channel_address = '%s'",
+ dbesc($which)
+ );
+ if($r) {
+ $owner = intval($r[0]['channel_id']);
+ }
+
+ $is_owner = (((local_user()) && ($owner == local_user())) ? true : false);
+ if (! $is_owner) {
+ info( t('Permission Denied.') . EOL );
+ return;
+ }
+ if ((argc() > 3 && argv(3) === 'delete') ? true : false);{
+ $file = argv(2);
+ $r = q("delete from attach where id = '%s' and uid = '%s' limit 1",
+ dbesc($file),
+ intval($owner)
+ );
+
+
+ }
+
+
+$r = q("select * from attach where uid = %d order by filename asc",
+ intval($owner)
+);
+
+ $files = null;
+
+ if($r) {
+ $files = array();
+ foreach($r as $rr) {
+ $files[$rr['id']][] = array('id' => $rr['id'],'download' => $rr['hash'], 'title' => $rr['filename'], 'size' => $rr['filesize']);
+ }
+ }
+
+
+ $limit = service_class_fetch ($owner,'attach_upload_limit');
+// if($limit !== false) {
+ $r = q("select sum(filesize) as total from attach where uid = %d ",
+ intval($owner)
+ );
+ $used = $r[0]['total'];
+//}
+ logger('limit: ' . print_r($limit,true));
+
+ $url = z_root() . "/filestorage/" . $which;
+ return $o . replace_macros(get_markup_template("filestorage.tpl"), array(
+ '$baseurl' => $url,
+ '$download' => t('Download'),
+ '$files' => $files,
+ '$channel' => $which,
+ '$delete' => t('Delete'),
+ '$used' => $used,
+ '$usedlabel' => t('Used: '),
+ '$limit' => $limit,
+ '$limitlabel' => t('Limit: '),
+ ));
+
+
+}