2013-06-10 12:04:43 +00:00
|
|
|
<?php
|
2013-07-30 07:48:30 +00:00
|
|
|
|
2013-11-26 11:47:59 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
2013-07-29 15:06:05 +00:00
|
|
|
//encryption app needs to be loaded
|
|
|
|
OC_App::loadApp('files_encryption');
|
2013-06-10 12:04:43 +00:00
|
|
|
|
2013-07-29 15:06:05 +00:00
|
|
|
// init encryption app
|
|
|
|
$params = array('uid' => \OCP\User::getUser(),
|
|
|
|
'password' => $_POST['password']);
|
2013-06-10 12:04:43 +00:00
|
|
|
|
2014-05-12 14:30:39 +00:00
|
|
|
$view = new OC\Files\View('/');
|
2014-12-03 15:16:09 +00:00
|
|
|
$util = new \OCA\Files_Encryption\Util($view, \OCP\User::getUser());
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('settings');
|
2013-06-10 12:04:43 +00:00
|
|
|
|
2013-07-29 15:06:05 +00:00
|
|
|
$result = $util->initEncryption($params);
|
2013-06-10 12:04:43 +00:00
|
|
|
|
2013-07-29 15:06:05 +00:00
|
|
|
if ($result !== false) {
|
2014-02-10 16:23:54 +00: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 16:18:38 +00:00
|
|
|
$util->closeEncryptionSession();
|
|
|
|
|
2013-07-30 07:48:30 +00:00
|
|
|
if ($successful === true) {
|
2014-04-05 17:28:53 +00:00
|
|
|
\OCP\JSON::success(array('data' => array('message' => $l->t('Files decrypted successfully'))));
|
2013-07-30 07:48:30 +00:00
|
|
|
} else {
|
2014-04-05 17:28:53 +00: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 07:48:30 +00:00
|
|
|
}
|
2013-07-29 15:06:05 +00:00
|
|
|
} else {
|
2014-04-05 17:28:53 +00:00
|
|
|
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t decrypt your files, check your password and try again'))));
|
2013-07-29 15:06:05 +00:00
|
|
|
}
|
2013-06-10 12:04:43 +00:00
|
|
|
|