2012-04-26 21:45:17 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2015-01-09 13:50:17 +03:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkAppEnabled('files_versions');
|
2012-07-17 13:57:38 +04:00
|
|
|
OCP\JSON::callCheck();
|
2012-04-26 21:45:17 +04:00
|
|
|
|
2015-02-13 15:33:20 +03:00
|
|
|
$file = (string)$_GET['file'];
|
2012-05-17 04:16:33 +04:00
|
|
|
$revision=(int)$_GET['revision'];
|
2012-04-26 21:45:17 +04:00
|
|
|
|
2012-09-19 22:59:57 +04:00
|
|
|
if(OCA\Files_Versions\Storage::rollback( $file, $revision )) {
|
2013-01-11 17:23:28 +04:00
|
|
|
OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file )));
|
|
|
|
}else{
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('files_versions');
|
2013-02-07 19:34:57 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) ))));
|
2012-04-26 21:45:17 +04:00
|
|
|
}
|