nextcloud/apps/files_versions/history.php

79 lines
2.2 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' );
2013-02-07 19:17:54 +04:00
$l = OC_L10N::get('files_versions');
2012-04-25 16:51:08 +04:00
if ( isset( $_GET['path'] ) ) {
$path = $_GET['path'];
$tmpl->assign( 'path', $path );
$versions = new OCA\Files_Versions\Storage();
// roll back to old version if button clicked
2012-12-15 02:04:42 +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
2013-02-07 19:17:54 +04:00
$tmpl->assign( 'outcome_stat', $l->t('success') );
2012-08-29 10:42:49 +04:00
2013-02-07 19:17:54 +04:00
$message = $l->t('File %s was reverted to version %s',
array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) );
$tmpl->assign( 'outcome_msg', $message);
2012-08-29 10:42:49 +04:00
} else {
2012-08-29 10:42:49 +04:00
2013-02-07 19:17:54 +04:00
$tmpl->assign( 'outcome_stat', $l->t('failure') );
$message = $l->t('File %s could not be reverted to version %s',
array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) );
2012-08-29 10:42:49 +04:00
2013-02-07 19:17:54 +04:00
$tmpl->assign( 'outcome_msg', $message);
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
$count = 999; //show the newest revisions
list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($path);
if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $count)) ) {
$tmpl->assign( 'versions', array_reverse( $versions ) );
2012-08-29 10:42:49 +04:00
}else{
2012-08-29 10:42:49 +04:00
2013-02-07 19:17:54 +04:00
$tmpl->assign( 'message', $l->t('No old versions available') );
2012-08-29 10:42:49 +04:00
}
}else{
2012-08-29 10:42:49 +04:00
2013-02-07 19:17:54 +04:00
$tmpl->assign( 'message', $l->t('No path specified') );
2012-08-29 10:42:49 +04:00
}
$tmpl->printPage( );