nextcloud/settings/ajax/decryptall.php

26 lines
810 B
PHP
Raw Normal View History

2013-06-10 16:04:43 +04:00
<?php
2013-07-30 11:48:30 +04:00
2013-07-29 19:06:05 +04:00
//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) {
2013-07-30 11:48:30 +04:00
$successful = $util->decryptAll();
if ($successful === true) {
\OCP\JSON::success(array('data' => array('message' => 'Files decrypted successfully')));
} else {
\OCP\JSON::error(array('data' => array('message' => 'Couldn\'t decrypt your files, please check your owncloud.log or ask your administrator')));
}
2013-07-29 19:06:05 +04:00
} else {
2013-07-30 11:48:30 +04:00
\OCP\JSON::error(array('data' => array('message' => 'Couldn\'t decrypt your files, check your password and try again')));
2013-07-29 19:06:05 +04:00
}
2013-06-10 16:04:43 +04:00