streams/mod/sharedwithme.php

108 lines
2.4 KiB
PHP
Raw Normal View History

<?php
require_once('include/conversation.php');
2015-01-22 03:57:59 +00:00
require_once('include/text.php');
function sharedwithme_content(&$a) {
2015-01-29 04:56:04 +00:00
if(! local_channel()) {
notice( t('Permission denied.') . EOL);
return;
}
2016-03-31 23:06:03 +00:00
$channel = App::get_channel();
2015-01-29 04:56:04 +00:00
$is_owner = (local_channel() && (local_channel() == $channel['channel_id']));
//check for updated items and remove them
require_once('include/sharedwithme.php');
apply_updates();
//drop single file - localuser
if((argc() > 2) && (argv(2) === 'drop')) {
$id = intval(argv(1));
q("DELETE FROM item WHERE id = %d AND uid = %d",
intval($id),
2015-01-29 04:56:04 +00:00
intval(local_channel())
);
2015-01-18 14:29:05 +00:00
goaway(z_root() . '/sharedwithme');
}
//drop all files - localuser
if((argc() > 1) && (argv(1) === 'dropall')) {
q("DELETE FROM item WHERE verb = '%s' AND obj_type = '%s' AND uid = %d",
dbesc(ACTIVITY_POST),
dbesc(ACTIVITY_OBJ_FILE),
2015-01-29 04:56:04 +00:00
intval(local_channel())
);
2015-01-18 14:29:05 +00:00
goaway(z_root() . '/sharedwithme');
}
//list files
2015-03-23 09:59:54 +00:00
$r = q("SELECT id, uid, object, item_unseen FROM item WHERE verb = '%s' AND obj_type = '%s' AND uid = %d AND owner_xchan != '%s'",
dbesc(ACTIVITY_POST),
dbesc(ACTIVITY_OBJ_FILE),
2015-01-29 04:56:04 +00:00
intval(local_channel()),
dbesc($channel['channel_hash'])
);
$items =array();
2015-03-23 09:59:54 +00:00
$ids = '';
if($r) {
2015-03-23 09:59:54 +00:00
foreach($r as $rr) {
$object = json_decode($rr['object'],true);
$item = array();
$item['id'] = $rr['id'];
$item['objfiletype'] = $object['filetype'];
$item['objfiletypeclass'] = getIconFromType($object['filetype']);
2015-02-06 10:34:23 +00:00
$item['objurl'] = rawurldecode(get_rel_link($object['link'],'alternate')) . '?f=&zid=' . $channel['xchan_addr'];
$item['objfilename'] = $object['filename'];
$item['objfilesize'] = userReadableSize($object['filesize']);
$item['objedited'] = $object['edited'];
2015-03-23 09:59:54 +00:00
$item['unseen'] = $rr['item_unseen'];
$items[] = $item;
2015-03-23 09:59:54 +00:00
if($item['unseen'] > 0) {
$ids .= " '" . $rr['id'] . "',";
}
}
2015-03-23 09:59:54 +00:00
}
if($ids) {
//remove trailing ,
$ids = rtrim($ids, ",");
2015-03-23 10:06:13 +00:00
q("UPDATE item SET item_unseen = 0 WHERE id IN ( $ids ) AND uid = %d",
2015-03-23 09:59:54 +00:00
intval(local_channel())
);
}
$o = profile_tabs($a, $is_owner, $channel['channel_address']);
$o .= replace_macros(get_markup_template('sharedwithme.tpl'), array(
'$header' => t('Files: shared with me'),
'$name' => t('Name'),
2015-03-23 09:59:54 +00:00
'$label_new' => t('NEW'),
'$size' => t('Size'),
'$lastmod' => t('Last Modified'),
'$dropall' => t('Remove all files'),
'$drop' => t('Remove this file'),
'$items' => $items
));
return $o;
}