nextcloud/settings/ajax/decryptall.php

22 lines
611 B
PHP
Raw Normal View History

2013-06-10 16:04:43 +04:00
<?php
2013-07-29 19:06:05 +04:00
sleep(10);
//encryption app needs to be loaded
OC_App::loadApp('files_encryption');
2013-06-10 16:04:43 +04:00
2013-07-29 19:06:05 +04:00
// init encryption app
$params = array('uid' => \OCP\User::getUser(),
'password' => $_POST['password']);
2013-06-10 16:04:43 +04:00
2013-07-29 19:06:05 +04:00
$view = new OC_FilesystemView('/');
$util = new \OCA\Encryption\Util($view, \OCP\User::getUser());
2013-06-10 16:04:43 +04:00
2013-07-29 19:06:05 +04:00
$result = $util->initEncryption($params);
2013-06-10 16:04:43 +04:00
2013-07-29 19:06:05 +04:00
if ($result !== false) {
$util->decryptAll();
\OCP\JSON::success(array('data' => array('message' => 'Files decrypted successfully')));
} else {
\OCP\JSON::error(array('data' => array('message' => 'Couldn\'t decrypt files, check your password and try again')));
}
2013-06-10 16:04:43 +04:00