2013-06-10 16:04:43 +04:00
|
|
|
<?php
|
2015-02-23 13:28:53 +03:00
|
|
|
/**
|
|
|
|
* @author Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Joas Schilling <nickvergessen@gmx.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Volkan Gezer <volkangezer@gmail.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
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(),
|
2015-02-13 15:33:20 +03:00
|
|
|
'password' => (string)$_POST['password']);
|
2013-06-10 16:04:43 +04:00
|
|
|
|
2014-05-12 18:30:39 +04:00
|
|
|
$view = new OC\Files\View('/');
|
2014-12-03 18:16:09 +03:00
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|