Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getitem.php « ajax « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f8d524758032af0791cb4a346e9d22491f9a214 (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
25
26
27
28
29
30
31
32
33
34
35
36
<?php
//$RUNTIME_NOAPPS = true;

 
OC_JSON::checkAppEnabled('files_sharing');
require_once(OC::$APPSROOT . '/apps/files_sharing/lib_share.php');

$userDirectory = "/".OC_User::getUser()."/files";
$source = $userDirectory.$_GET['source'];
$path = $source;
$users = array();
if ($users = OC_Share::getMySharedItem($source)) {
	for ($i = 0; $i < count($users); $i++) {
		if ($users[$i]['uid_shared_with'] == OC_Share::PUBLICLINK) {
			$users[$i]['token'] = OC_Share::getTokenFromSource($source);
		}
	}
}
$source = dirname($source);
while ($source != "" && $source != "/" && $source != "." && $source != $userDirectory) {
	if ($values = OC_Share::getMySharedItem($source)) {
		$values = array_values($values);
		$parentUsers = array();
		for ($i = 0; $i < count($values); $i++) {
			if ($values[$i]['uid_shared_with'] == OC_Share::PUBLICLINK) {
				$values[$i]['token'] = OC_Share::getTokenFromSource($source)."&path=".substr($path, strlen($source));
			}
			$parentUsers[basename($source)."-".$i] = $values[$i];
		}
		$users = array_merge($users, $parentUsers);
	}
	$source = dirname($source);
}
if (!empty($users)) {
	OC_JSON::encodedPrint($users);
}