add deleteAllFileKeys to public interface and add "uid" as parameter for the

update call
This commit is contained in:
Bjoern Schiessle 2015-03-27 11:46:32 +01:00
parent c6be1ba8d3
commit b5fad75e57
3 changed files with 11 additions and 2 deletions

View File

@ -104,7 +104,7 @@ class Update {
foreach ($allFiles as $path) {
$usersSharing = $this->util->getSharingUsersArray($path);
$encryptionModule->update($absPath, $usersSharing);
$encryptionModule->update($absPath, $this->uid, $usersSharing);
}
}

View File

@ -84,10 +84,11 @@ interface IEncryptionModule {
* update encrypted file, e.g. give additional users access to the file
*
* @param string $path path to the file which should be updated
* @param string $uid of the user who performs the operation
* @param array $accessList who has access to the file contains the key 'users' and 'public'
* @return boolean
*/
public function update($path, $accessList);
public function update($path, $uid, $accessList);
/**
* should the file be encrypted or not

View File

@ -104,6 +104,14 @@ interface IStorage {
*/
public function deleteFileKey($path, $keyId);
/**
* delete all file keys for a given file
*
* @param string $path to the file
* @return boolean
*/
public function deleteAllFileKeys($path);
/**
* delete system-wide encryption keys not related to a specific user,
* e.g something like a key for public link shares