nextcloud/apps/files_versions/history.php

74 lines
2.0 KiB
PHP
Raw Normal View History

<?php
/**
* ownCloud - History page of the Versions App
*
* @author Frank Karlitschek
2012-05-26 21:14:24 +04:00
* @copyright 2012 Frank Karlitschek frank@owncloud.org
2012-08-29 10:42:49 +04:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
2012-08-29 10:42:49 +04:00
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
2012-08-29 10:42:49 +04:00
*
* This library 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.
2012-08-29 10:42:49 +04:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
2012-08-29 10:42:49 +04:00
*
*/
2012-05-02 00:59:38 +04:00
OCP\User::checkLoggedIn( );
2012-11-04 14:10:46 +04:00
OCP\Util::addStyle('files_versions', 'versions');
2012-05-07 01:00:36 +04:00
$tmpl = new OCP\Template( 'files_versions', 'history', 'user' );
2012-04-25 16:51:08 +04:00
if ( isset( $_GET['path'] ) ) {
$path = $_GET['path'];
$path = $path;
$tmpl->assign( 'path', $path );
$versions = new OCA_Versions\Storage();
// roll back to old version if button clicked
2012-04-25 16:51:08 +04:00
if( isset( $_GET['revert'] ) ) {
2012-08-29 10:42:49 +04:00
2012-08-29 22:34:44 +04:00
if( $versions->rollback( $path, $_GET['revert'] ) ) {
2012-08-29 10:42:49 +04:00
$tmpl->assign( 'outcome_stat', 'success' );
2012-08-29 10:42:49 +04:00
$tmpl->assign( 'outcome_msg', "File {$_GET['path']} was reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) );
2012-08-29 10:42:49 +04:00
} else {
2012-08-29 10:42:49 +04:00
$tmpl->assign( 'outcome_stat', 'failure' );
2012-08-29 10:42:49 +04:00
$tmpl->assign( 'outcome_msg', "File {$_GET['path']} could not be reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) );
2012-08-29 10:42:49 +04:00
}
2012-08-29 10:42:49 +04:00
}
// show the history only if there is something to show
if( OCA_Versions\Storage::isversioned( $path ) ) {
2012-08-29 10:42:49 +04:00
$count = 999; //show the newest revisions
$versions = OCA_Versions\Storage::getVersions( $path, $count);
$tmpl->assign( 'versions', array_reverse( $versions ) );
2012-08-29 10:42:49 +04:00
}else{
2012-08-29 10:42:49 +04:00
2012-04-25 16:51:08 +04:00
$tmpl->assign( 'message', 'No old versions available' );
2012-08-29 10:42:49 +04:00
}
}else{
2012-08-29 10:42:49 +04:00
2012-04-25 16:51:08 +04:00
$tmpl->assign( 'message', 'No path specified' );
2012-08-29 10:42:49 +04:00
}
$tmpl->printPage( );