2012-10-26 21:07:29 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Cache;
|
|
|
|
|
|
|
|
class Permissions {
|
2012-11-15 03:57:30 +04:00
|
|
|
/**
|
|
|
|
* @var string $storageId
|
|
|
|
*/
|
|
|
|
private $storageId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\Storage\Storage|string $storage
|
|
|
|
*/
|
2013-02-28 20:04:34 +04:00
|
|
|
public function __construct($storage) {
|
|
|
|
if ($storage instanceof \OC\Files\Storage\Storage) {
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->storageId = $storage->getId();
|
2013-02-28 20:04:34 +04:00
|
|
|
} else {
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->storageId = $storage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-26 21:07:29 +04:00
|
|
|
/**
|
|
|
|
* get the permissions for a single file
|
|
|
|
*
|
|
|
|
* @param int $fileId
|
|
|
|
* @param string $user
|
|
|
|
* @return int (-1 if file no permissions set)
|
|
|
|
*/
|
2012-11-15 03:57:30 +04:00
|
|
|
public function get($fileId, $user) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `permissions` FROM `*PREFIX*permissions` WHERE `user` = ? AND `fileid` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($user, $fileId));
|
2012-10-26 21:07:29 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
return $row['permissions'];
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the permissions of a file
|
|
|
|
*
|
|
|
|
* @param int $fileId
|
|
|
|
* @param string $user
|
|
|
|
* @param int $permissions
|
|
|
|
*/
|
2012-11-15 03:57:30 +04:00
|
|
|
public function set($fileId, $user, $permissions) {
|
2012-10-26 21:07:29 +04:00
|
|
|
if (self::get($fileId, $user) !== -1) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'UPDATE `*PREFIX*permissions` SET `permissions` = ? WHERE `user` = ? AND `fileid` = ?';
|
2012-10-26 21:07:29 +04:00
|
|
|
} else {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'INSERT INTO `*PREFIX*permissions`(`permissions`, `user`, `fileid`) VALUES(?, ?,? )';
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|
2013-06-07 16:11:05 +04:00
|
|
|
\OC_DB::executeAudited($sql, array($permissions, $user, $fileId));
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the permissions of multiply files
|
|
|
|
*
|
|
|
|
* @param int[] $fileIds
|
|
|
|
* @param string $user
|
|
|
|
* @return int[]
|
|
|
|
*/
|
2012-11-15 03:57:30 +04:00
|
|
|
public function getMultiple($fileIds, $user) {
|
2012-10-27 14:17:35 +04:00
|
|
|
if (count($fileIds) === 0) {
|
|
|
|
return array();
|
|
|
|
}
|
2012-10-26 21:07:29 +04:00
|
|
|
$params = $fileIds;
|
|
|
|
$params[] = $user;
|
|
|
|
$inPart = implode(', ', array_fill(0, count($fileIds), '?'));
|
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid`, `permissions` FROM `*PREFIX*permissions`'
|
|
|
|
. ' WHERE `fileid` IN (' . $inPart . ') AND `user` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, $params);
|
2012-10-26 21:07:29 +04:00
|
|
|
$filePermissions = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$filePermissions[$row['fileid']] = $row['permissions'];
|
|
|
|
}
|
|
|
|
return $filePermissions;
|
|
|
|
}
|
|
|
|
|
2013-05-29 17:25:42 +04:00
|
|
|
/**
|
|
|
|
* get the permissions for all files in a folder
|
|
|
|
*
|
|
|
|
* @param int $parentId
|
2013-05-30 02:08:18 +04:00
|
|
|
* @param string $user
|
2013-05-29 17:25:42 +04:00
|
|
|
* @return int[]
|
|
|
|
*/
|
2013-05-30 02:08:18 +04:00
|
|
|
public function getDirectoryPermissions($parentId, $user) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `*PREFIX*permissions`.`fileid`, `permissions`
|
|
|
|
FROM `*PREFIX*permissions`
|
|
|
|
INNER JOIN `*PREFIX*filecache` ON `*PREFIX*permissions`.`fileid` = `*PREFIX*filecache`.`fileid`
|
|
|
|
WHERE `*PREFIX*filecache`.`parent` = ? AND `*PREFIX*permissions`.`user` = ?';
|
2013-05-29 17:25:42 +04:00
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$result = \OC_DB::executeAudited($sql, array($parentId, $user));
|
2013-05-29 17:25:42 +04:00
|
|
|
$filePermissions = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$filePermissions[$row['fileid']] = $row['permissions'];
|
|
|
|
}
|
|
|
|
return $filePermissions;
|
|
|
|
}
|
|
|
|
|
2012-10-26 21:07:29 +04:00
|
|
|
/**
|
|
|
|
* remove the permissions for a file
|
|
|
|
*
|
|
|
|
* @param int $fileId
|
|
|
|
* @param string $user
|
|
|
|
*/
|
2013-02-28 20:04:34 +04:00
|
|
|
public function remove($fileId, $user = null) {
|
|
|
|
if (is_null($user)) {
|
2013-06-07 16:11:05 +04:00
|
|
|
\OC_DB::executeAudited('DELETE FROM `*PREFIX*permissions` WHERE `fileid` = ?', array($fileId));
|
2013-02-28 20:04:34 +04:00
|
|
|
} else {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'DELETE FROM `*PREFIX*permissions` WHERE `fileid` = ? AND `user` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($fileId, $user));
|
2013-02-28 20:04:34 +04:00
|
|
|
}
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
public function removeMultiple($fileIds, $user) {
|
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*permissions` WHERE `fileid` = ? AND `user` = ?');
|
2013-02-28 20:04:34 +04:00
|
|
|
foreach ($fileIds as $fileId) {
|
2013-06-07 16:11:05 +04:00
|
|
|
\OC_DB::executeAudited($query, array($fileId, $user));
|
2012-11-15 03:57:30 +04:00
|
|
|
}
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|
2013-04-20 18:38:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the list of users which have permissions stored for a file
|
|
|
|
*
|
|
|
|
* @param int $fileId
|
|
|
|
*/
|
|
|
|
public function getUsers($fileId) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `user` FROM `*PREFIX*permissions` WHERE `fileid` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($fileId));
|
2013-04-20 18:38:03 +04:00
|
|
|
$users = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$users[] = $row['user'];
|
|
|
|
}
|
|
|
|
return $users;
|
|
|
|
}
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|