2013-06-10 16:04:43 +04:00
|
|
|
<?php
|
2013-07-30 11:48:30 +04:00
|
|
|
|
2013-11-26 15:47:59 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
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
|
|
|
|
2014-05-12 18:30:39 +04:00
|
|
|
$view = new OC\Files\View('/');
|
2013-07-29 19:06:05 +04:00
|
|
|
$util = new \OCA\Encryption\Util($view, \OCP\User::getUser());
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('settings');
|
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) {
|
2014-02-10 20:23:54 +04:00
|
|
|
|
|
|
|
try {
|
|
|
|
$successful = $util->decryptAll();
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
\OCP\Util::writeLog('encryption library', "Decryption finished unexpected: " . $ex->getMessage(), \OCP\Util::ERROR);
|
|
|
|
$successful = false;
|
|
|
|
}
|
|
|
|
|
2014-02-26 20:18:38 +04:00
|
|
|
$util->closeEncryptionSession();
|
|
|
|
|
2013-07-30 11:48:30 +04:00
|
|
|
if ($successful === true) {
|
2014-04-05 21:28:53 +04:00
|
|
|
\OCP\JSON::success(array('data' => array('message' => $l->t('Files decrypted successfully'))));
|
2013-07-30 11:48:30 +04:00
|
|
|
} else {
|
2014-04-05 21:28:53 +04:00
|
|
|
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t decrypt your files, please check your owncloud.log or ask your administrator'))));
|
2013-07-30 11:48:30 +04:00
|
|
|
}
|
2013-07-29 19:06:05 +04:00
|
|
|
} else {
|
2014-04-05 21:28:53 +04:00
|
|
|
\OCP\JSON::error(array('data' => array('message' => $l->t('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
|
|
|
|