nextcloud/settings/ajax/decryptall.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2013-06-10 16:04:43 +04:00
<?php
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' => (string)$_POST['password']);
2013-06-10 16:04:43 +04:00
$view = new OC\Files\View('/');
$util = new \OCA\Files_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;
}
$util->closeEncryptionSession();
2013-07-30 11:48:30 +04:00
if ($successful === true) {
\OCP\JSON::success(array('data' => array('message' => $l->t('Files decrypted successfully'))));
2013-07-30 11:48:30 +04:00
} else {
\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 {
\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