aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Encryption/DecryptAll.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Encryption/DecryptAll.php')
-rw-r--r--lib/private/Encryption/DecryptAll.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/private/Encryption/DecryptAll.php b/lib/private/Encryption/DecryptAll.php
index 3f6e4131d64..19bd2f81378 100644
--- a/lib/private/Encryption/DecryptAll.php
+++ b/lib/private/Encryption/DecryptAll.php
@@ -83,7 +83,6 @@ class DecryptAll {
* @throws \Exception
*/
public function decryptAll(InputInterface $input, OutputInterface $output, $user = '') {
-
$this->input = $input;
$this->output = $output;
@@ -147,12 +146,10 @@ class DecryptAll {
* @param string $user which users files should be decrypted, default = all users
*/
protected function decryptAllUsersFiles($user = '') {
-
$this->output->writeln("\n");
$userList = [];
if ($user === '') {
-
$fetchUsersProgress = new ProgressBar($this->output);
$fetchUsersProgress->setFormat(" %message% \n [%bar%]");
$fetchUsersProgress->start();
@@ -197,7 +194,6 @@ class DecryptAll {
$progress->finish();
$this->output->writeln("\n\n");
-
}
/**
@@ -208,7 +204,6 @@ class DecryptAll {
* @param string $userCount
*/
protected function decryptUsersFiles($uid, ProgressBar $progress, $userCount) {
-
$this->setupUserFS($uid);
$directories = [];
$directories[] = '/' . $uid . '/files';
@@ -217,7 +212,7 @@ class DecryptAll {
$content = $this->rootView->getDirectoryContent($root);
foreach ($content as $file) {
// only decrypt files owned by the user
- if($file->getStorage()->instanceOfStorage('OCA\Files_Sharing\SharedStorage')) {
+ if ($file->getStorage()->instanceOfStorage('OCA\Files_Sharing\SharedStorage')) {
continue;
}
$path = $root . '/' . $file['name'];
@@ -299,5 +294,4 @@ class DecryptAll {
\OC_Util::tearDownFS();
\OC_Util::setupFS($uid);
}
-
}