aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Sharedwithme.php
blob: c986f66951552cb126a157912725d5b1efbda6bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
namespace Zotlabs\Module;
require_once('include/conversation.php');
require_once('include/text.php');


/**
 * @file Zotlabs/Module/Sharedwithme.php
 *
 */

class Sharedwithme extends \Zotlabs\Web\Controller {

	function get() {
		if(! local_channel()) {
			notice( t('Permission denied.') . EOL);
			return;
		}
		
		$channel = \App::get_channel();
	
		$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),
				intval(local_channel())
			);
	
			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),
				intval(local_channel())
			);
	
			goaway(z_root() . '/sharedwithme');
		}
	
		//list files
		$r = q("SELECT id, uid, obj, 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),
			intval(local_channel()),
			dbesc($channel['channel_hash'])
		);
	
		$items =array();
		$ids = '';
	
		if($r) {
	
			foreach($r as $rr) {
				$object = json_decode($rr['obj'],true);
	
				$item = array();
				$item['id'] = $rr['id'];
				$item['objfiletype'] = $object['filetype'];
				$item['objfiletypeclass'] = getIconFromType($object['filetype']);
				$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'];
				$item['unseen'] = $rr['item_unseen'];
	
				$items[] = $item;
	
				if($item['unseen'] > 0) {
					$ids .= " '" . $rr['id'] . "',";
				}
	
			}
	
		}
	
		if($ids) {
	
			//remove trailing ,
			$ids = rtrim($ids, ",");
	
			q("UPDATE item SET item_unseen = 0 WHERE id IN ( $ids ) AND uid = %d",
				intval(local_channel())
			);
	
		}
	
		$o = '';
	
		$o .= replace_macros(get_markup_template('sharedwithme.tpl'), array(
			'$header' => t('Files: shared with me'),
			'$name' => t('Name'),
			'$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;
	
	}
	
	
}