Merge pull request #120 from beardy-unixer/master
Quick and dirty file storage module.
This commit is contained in:
commit
dcc74185d0
70
mod/filestorage.php
Normal file
70
mod/filestorage.php
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?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');
|
||||||
|
$r = q("select sum(filesize) as total from attach where uid = %d ",
|
||||||
|
intval($owner)
|
||||||
|
);
|
||||||
|
$used = $r[0]['total'];
|
||||||
|
|
||||||
|
$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: '),
|
||||||
|
));
|
||||||
|
|
||||||
|
|
||||||
|
}
|
22
view/tpl/filestorage.tpl
Normal file
22
view/tpl/filestorage.tpl
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{{if $files}}
|
||||||
|
|
||||||
|
<div class="generic-content-wrapper">
|
||||||
|
{{if $limit}}{{$limitlabel}}{{$limit}}{{/if}} {{if $used}} {{$usedlabel}}{{$used}}{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
{{foreach $files as $key => $items}}
|
||||||
|
{{foreach $items as $item}}
|
||||||
|
<div class="files-list-item">
|
||||||
|
<a href="attach/{{$item.download}}">{{$download}}</a> |
|
||||||
|
<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}
|
||||||
|
<a href="page/{{$channel}}/{{$item.title}}">{{$title}}</a> {{$item.title}} |
|
||||||
|
{{$item.size}} bytes
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{{/foreach}}
|
||||||
|
{{/foreach}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
|
||||||
|
{{/if}}
|
Reference in New Issue
Block a user