Browse Source

allow to disable encryption

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
tags/v14.0.0beta1
Bjoern Schiessle 5 years ago
parent
commit
5d0fa12e12
No account linked to committer's email address
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      lib/private/Files/Storage/Wrapper/Encryption.php

+ 6
- 2
lib/private/Files/Storage/Wrapper/Encryption.php View File

@@ -412,9 +412,13 @@ class Encryption extends Wrapper {
|| $mode === 'wb'
|| $mode === 'wb+'
) {
// don't overwrite encrypted files if encryption is not enabled
// if we update a encrypted file with a un-encrypted one we change the db flag
if ($targetIsEncrypted && $encryptionEnabled === false) {
throw new GenericEncryptionException('Tried to access encrypted file but encryption is not enabled');
$cache = $this->storage->getCache();
if ($cache) {
$entry = $cache->get($path);
$cache->update($entry->getId(), ['encrypted' => 0]);
}
}
if ($encryptionEnabled) {
// if $encryptionModuleId is empty, the default module will be used

Loading…
Cancel
Save