summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/getstatuses.php
blob: 488cab13bc9ec65f2bddadf3c896373569c714ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkLoggedIn();

$items = array();
$userDirectory = '/'.OCP\USER::getUser().'/files';
$dirLength = strlen($userDirectory);
if ($rows = OC_Share::getMySharedItems()) {
	for ($i = 0; $i < count($rows); $i++) {
		$source = $rows[$i]['source'];
		// Strip out user directory
		$item = substr($source, $dirLength);
		if ($rows[$i]['uid_shared_with'] == OC_Share::PUBLICLINK) {
			$items[$item] = true;
		} else if (!isset($items[$item])) {
			$items[$item] = false;
		}
	}
}

OCP\JSON::success(array('data' => $items));

?>