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